Files
cyh-tk-admin/tailwind.config.js
zhxiao1124 a4a1891a7e refactor(api): 统一将函数声明改为箭头函数形式
将所有api模块中的普通函数声明替换为const箭头函数形式,保持代码风格统一
2026-07-02 15:18:39 +08:00

36 lines
723 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
important: true,
corePlugins: {
preflight: false,
},
theme: {
extend: {
colors: {
ink: '#1d2129',
muted: '#86909c',
line: '#e5e6eb',
canvas: '#f2f3f5',
panel: '#fbfcfd',
brand: '#165dff',
},
fontFamily: {
sans: [
'Inter',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'sans-serif',
],
},
boxShadow: {
login: '0 18px 48px rgba(15, 23, 42, 0.08)',
},
},
},
plugins: [],
};