37 lines
692 B
JavaScript
37 lines
692 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#1677ff',
|
|
dark: '#0958d9',
|
|
},
|
|
success: {
|
|
DEFAULT: '#52c41a',
|
|
dark: '#389e0d',
|
|
},
|
|
warning: {
|
|
DEFAULT: '#faad14',
|
|
dark: '#d48806',
|
|
},
|
|
error: {
|
|
DEFAULT: '#ff4d4f',
|
|
dark: '#d9363e',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Poppins', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
} |