forked from junkpunkie/bibliotheca-webite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (58 loc) · 1.15 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
module.exports = {
purge: {
content: [
'./components/**/*.vue',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./validators/*.js',
'./slices/**/*.vue',
],
},
theme: {
inset: {
0: 0,
10: '10px',
50: '50px',
'1/2': '50%',
},
extend: {
fontFamily: {
display: ['EB Garamond', 'serif'],
body: ['Inconsolata', 'monospace'],
},
colors: {
gray: {
100: '#edece9',
200: '#eeeeee',
300: '#e0e0e0',
400: '#bdbdbd',
500: '#9e9e9e',
600: '#757575',
700: '#616161',
800: '#424242',
900: '#161619',
1000: '#0e0e0e',
},
minHeight: {
0: '0',
'1/4': '25vh',
'1/2': '50vh',
'3/4': '75vh',
full: '100vh',
},
},
fill: {
none: 'none',
},
},
},
variants: {
extend: {
backgroundColor: ['checked', 'even'],
borderColor: ['checked'],
},
opacity: ({ after }) => after(['disabled']),
borderStyle: ['last', 'first'],
borderWidth: ['first'],
},
}