forked from advplyr/audiobookshelf-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (63 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
safelist: [
'bg-success',
'bg-info',
'text-info'
]
},
darkMode: false,
theme: {
extend: {
screens: {
'short': { 'raw': '(max-height: 500px)' }
},
colors: {
bg: '#373838',
secondary: '#2F3030',
yellowgreen: 'yellowgreen',
primary: '#232323',
accent: '#1ad691',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
successDark: '#3b8a3e',
warning: '#FB8C00'
},
cursor: {
none: 'none'
},
fontFamily: {
sans: ['Source Sans Pro', ...defaultTheme.fontFamily.sans],
mono: ['Ubuntu Mono', ...defaultTheme.fontFamily.mono]
},
fontSize: {
xxs: '0.625rem'
},
spacing: {
'18': '4.5rem'
},
height: {
'18': '4.5rem'
},
maxWidth: {
'24': '6rem'
},
minWidth: {
'4': '1rem',
'8': '2rem',
'10': '2.5rem',
'12': '3rem',
'16': '4rem'
},
minHeight: {
'12': '3rem'
}
}
},
variants: {
extend: {},
},
plugins: [],
}