2023-08-04 09:03:21 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
2024-11-09 02:32:26 +00:00
|
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
2023-08-09 09:18:48 +00:00
|
|
|
important: true,
|
2023-08-04 09:03:21 +00:00
|
|
|
theme: {
|
2023-08-08 10:25:23 +00:00
|
|
|
extend: {
|
|
|
|
|
backgroundColor: {
|
2024-11-09 02:32:26 +00:00
|
|
|
main: '#F5F5F5'
|
2024-05-09 13:35:39 +00:00
|
|
|
},
|
|
|
|
|
textColor: {
|
2024-11-09 02:32:26 +00:00
|
|
|
active: 'var(--el-color-primary)'
|
2024-05-09 13:35:39 +00:00
|
|
|
},
|
|
|
|
|
boxShadowColor: {
|
2024-11-09 02:32:26 +00:00
|
|
|
active: 'var(--el-color-primary)'
|
2024-05-09 13:35:39 +00:00
|
|
|
},
|
|
|
|
|
borderColor: {
|
2024-11-09 02:32:26 +00:00
|
|
|
'table-border': 'var(--el-border-color-lighter)'
|
2023-08-08 10:25:23 +00:00
|
|
|
}
|
2024-11-09 02:32:26 +00:00
|
|
|
}
|
2023-08-04 09:03:21 +00:00
|
|
|
},
|
2024-11-09 02:32:26 +00:00
|
|
|
darkMode: 'class',
|
2024-10-25 10:22:11 +00:00
|
|
|
plugins: []
|
2023-08-04 09:03:21 +00:00
|
|
|
}
|