forked from bootwindui/vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
29 lines (28 loc) · 916 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
purge: [],
theme: {
extend: {
colors: {
theme_primary_light: 'var(--theme-primary_light)',
theme_primary: 'var(--theme-primary)',
theme_primary_dark: 'var(--theme-primary_dark)',
theme_secondary: 'var(--theme-secondary)',
primary_light: 'var(--color-primary_light)',
primary: 'var(--color-primary)',
primary_dark: 'var(--color-primary_dark)',
secondary: '#f4f5f7',
info: '#11cdef',
success: '#2dce89',
danger: '#f5365c',
warning: '#fb6340',
default: '#718096',
},
borderRadius: {
'xl': '1rem',
},
},
},
variants: {},
plugins: [],
}