mat/frontend-h5/tailwind.config.js

22 lines
643 B
JavaScript

export default {
content: ['./index.html', './src/**/*.{vue,js}'],
theme: {
extend: {
colors: {
brand: { DEFAULT: '#2F4F3F', dark: '#233C2F', light: '#6B8878' },
surface: { DEFAULT: '#FFFFFF', alt: '#FAFAFA', warm: '#F5F4F2' },
danger: '#D2584A',
info: '#5A7FB8',
muted: '#8A8A8A',
line: '#EEEEEE',
},
borderRadius: { card: '18px' },
boxShadow: { card: '0 1px 2px rgba(0,0,0,0.04)' },
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', '"PingFang SC"', '"Microsoft YaHei"', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}