axp-ui/tailwind.config.ts

37 lines
604 B
TypeScript
Raw Normal View History

2023-07-11 10:38:21 +03:00
import type { Config } from 'tailwindcss'
const config: Config = {
content: ['./src/components/**/*.vue'],
2023-08-24 12:42:14 +03:00
darkMode: 'class',
2023-07-11 10:38:21 +03:00
theme: {
extend: {
colors: {
primary: '#3c87a4',
2023-07-26 14:07:17 +03:00
accent: '#ab6dfd',
2023-07-11 10:38:21 +03:00
dark: '#363636',
2023-07-26 14:07:17 +03:00
light: '#f1f1f1',
info: '#2196f3',
warning: '#ff9800',
success: '#2dd633',
error: '#f00000'
2023-07-11 10:38:21 +03:00
},
container: {
center: true,
padding: '1rem'
},
fontSize: {
sm: ['.8rem', '1'],
base: ['1rem', '1'],
lg: ['1.3rem', '1'],
xl: ['1.8rem', '1'],
'2xl': ['2.2rem', '1']
}
}
},
plugins: []
}
export default config