lxf
2025-07-10 1b892c1f989315551f624cd6948c2e36f9abc972
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: '#ffffff', // 主色(文字等)
        gray: '#333333', // 文字颜色
        'btn-gray': '#F1F3F9', // 背景灰
        'bd-gray': '#C3C4CD', // 下单border
        up: '#3a7ff6',  // 升
        down: '#de5d56' // 降
      }
    },
  },
  variants: {
    extend: {},
  },
  plugins: [
 
  ],
}