Initial commit: 智能项目定价模型
This commit is contained in:
41
前端应用/tailwind.config.js
Normal file
41
前端应用/tailwind.config.js
Normal file
@@ -0,0 +1,41 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./index.html',
|
||||
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
// 主色调(与 Element Plus 协调)
|
||||
primary: {
|
||||
50: '#ecf5ff',
|
||||
100: '#d9ecff',
|
||||
200: '#b3d8ff',
|
||||
300: '#8cc5ff',
|
||||
400: '#66b1ff',
|
||||
500: '#409eff', // Element Plus 主色
|
||||
600: '#3a8ee6',
|
||||
700: '#337ecc',
|
||||
800: '#2d6eb3',
|
||||
900: '#265e99',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
sans: [
|
||||
'PingFang SC',
|
||||
'Microsoft YaHei',
|
||||
'Helvetica Neue',
|
||||
'Helvetica',
|
||||
'Arial',
|
||||
'sans-serif',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
// 与 Element Plus 共存,禁用冲突的样式
|
||||
corePlugins: {
|
||||
preflight: false,
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user