-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
76 lines (76 loc) · 1.71 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
65
66
67
68
69
70
71
72
73
74
75
76
module.exports = {
purge: ['./components/**/*.js', './pages/**/*.js'],
theme: {
darkSelector: '.dark-mode',
extend: {
colors: {
'accent-1': '#FAFAFA',
'accent-2': '#EAEAEA',
'accent-7': '#333',
success: '#0070f3',
cyan: '#79FFE1',
primary: {
lighter: '#4FD1C5',
default: '#38B2AC',
darker: '#319795',
},
secondary: {
lighter: '#63B3ED',
default: '#4299E1',
darker: '#3182CE',
},
gray: {
'100': '#f5f5f5',
'200': '#eeeeee',
'300': '#e0e0e0',
'400': '#bdbdbd',
'500': '#9e9e9e',
'600': '#757575',
'700': '#616161',
'800': '#424242',
'900': '#212121',
}
},
fontFamily: {
'sans': ['Roboto Condensed', 'Arial', 'sans-serif']
},
spacing: {
14: '3.5rem',
7: '1.75rem',
},
letterSpacing: {
tighter: '-.04em',
},
lineHeight: {
tight: 1.2,
},
fontSize: {
'5xl': '2.5rem',
'6xl': '2.75rem',
'7xl': '4.5rem',
'8xl': '6.25rem',
},
boxShadow: {
small: '0 5px 10px rgba(0, 0, 0, 0.12)',
medium: '0 8px 30px rgba(0, 0, 0, 0.12)',
},
},
},
variants: {
backgroundColor: ['dark', 'responsive', 'hover', 'focus'],
borderColor: [
'dark',
'dark-focus-within',
'responsive',
'hover',
'focus',
'focus-within',
],
borderWidth: ['dark', 'responsive'],
textColor: ['dark', 'responsive', 'hover', 'focus'],
},
corePlugins: {},
plugins: [
require('tailwindcss-dark-mode')()
],
}