-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.24 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
module.exports = {
theme: {
extend: {
container: {
center: true,
padding: '2rem'
},
boxShadow: {
light: '0 2px 4px 0 rgba(255, 255, 255, 0.05)',
'light-md':
'0 4px 6px -1px rgba(255, 255, 255, .1), 0 2px 4px -1px rgba(255, 255, 255, .06)',
'light-lg':
'0 10px 15px -3px rgba(255, 255, 255, .1), 0 4px 6px -2px rgba(255, 255, 255, .05)',
'light-xl':
'0 20px 25px -5px rgba(255, 255, 255, .1), 0 10px 10px -5px rgba(0, 0, 0, .04)'
},
fontFamily: {
base: [
'Merriweather',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'"Helvetica Neue"',
'Arial',
'serif'
],
headings: ['Montserrat', 'sans-serif'],
code: [
'Hasklig',
'Consolas',
'Menlo',
'Monaco',
'"Liberation Mono"',
'"Courier New"',
'monospace'
]
},
colors: {
'code-comment': '#20ff7d',
body: {
first: '#0d1016',
second: '#0b0e15'
}
},
backgroundColor: {
code: '#011627'
}
}
},
purge: false,
variants: {},
plugins: []
}