tailwind.config.js 604 Bytes
/*
 * @Date: 2025-04-16 22:22:18
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2025-04-17 14:09:27
 * @FilePath: /reading-club-app/tailwind.config.js
 * @Description: 文件描述
 */
/** @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: [],
};