1
李凌
2025-10-21 1383f2e83f0830ed8120ac136d74c307f69b9671
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** @type {import('tailwindcss').Config} */
 
module.exports = {
  darkMode: 'class', // or 'media' or 'class'
  purge: [
    "./index.html",
    "./src/**/*.vue",
    "./src/**/*.js",
  ],
  theme: {
    extend: {
      colors: {
        primary: '#1F2025', // 主色(文字等)
        gray: '#878A96', // 文字颜色
        'btn-gray': '#F1F3F9', // 背景灰
        'bd-gray': '#C3C4CD', // 下单border
        up: '#06CDA5',  // 升
        down: '#F43368' // 降
      }
    },
  },
  variants: {
    extend: {},
  },
  plugins: [
    
  ],
}