管理后台初始化,登录,团队管理,报价单管理 完成
This commit is contained in:
37
tailwind.config.js
Normal file
37
tailwind.config.js
Normal file
@@ -0,0 +1,37 @@
|
||||
/** @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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user