axp-ui/tailwind.config.ts

37 lines
625 B
TypeScript
Raw Normal View History

2023-07-11 10:38:21 +03:00
import type { Config } from 'tailwindcss'
const config: Config = {
2023-10-11 10:17:11 +03:00
content: ['./src/app/App.vue', './src/components/**/*.vue'],
2023-08-24 12:42:14 +03:00
darkMode: 'class',
2023-07-11 10:38:21 +03:00
theme: {
extend: {
colors: {
2023-10-05 14:19:28 +03:00
primary: '#6d6bff',
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',
2023-09-20 14:09:22 +03:00
info: '#00b8ff',
2023-07-26 14:07:17 +03:00
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