• 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
    feat(router): 添加历史足迹页面路由和视图组件 · c002aba5 ...
    c002aba5
    添加新的历史足迹页面路由'/recall',并创建对应的视图组件Index.vue
    组件包含用户头像、欢迎语、加入时间统计等信息
    移除vite配置中未使用的postcss插件配置
    hookehuyr authored 2025-12-19 16:12:17 +0800
tailwind.config.js 434 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 21
/** @type {import('tailwindcss').Config} */
export default {
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
    // Force refresh
  ],
  theme: {
    extend: {
      colors: {
        primary: '#4caf50',
        secondary: '#2196f3',
        'background-start': '#f0f9ef',
        'background-end': '#e6f4ff',
        'text-base': '#333333',
        'text-light': '#6e6e6e'
      }
    },
  },
  plugins: [],
}