• This project
    • Loading...
  • Sign in

Hooke / mlaj

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • mlaj
  • tailwind.config.js
  • hookehuyr's avatar
    style(tailwind.config.js): 添加自定义颜色配置以增强主题一致性 · 66098eba ...
    66098eba Browse Files
    ```
    
    这个提交消息简洁地描述了在 `tailwind.config.js` 文件中添加了自定义颜色配置,目的是为了增强主题的一致性。使用了 `style` 类型,因为这是一个不影响功能但提升代码可读性和维护性的更改。
    hookehuyr authored 2025-03-21 09:53:27 +0800
tailwind.config.js 413 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/** @type {import('tailwindcss').Config} */
export default {
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {
      colors: {
        primary: '#4caf50',
        secondary: '#2196f3',
        'background-start': '#f0f9ef',
        'background-end': '#e6f4ff',
        'text-base': '#333333',
        'text-light': '#6e6e6e'
      }
    },
  },
  plugins: [],
}