-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.26 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
module.exports = {
content: ['./components/**/*.js', './pages/**/*.js'],
presets: [require('./theme/tailwind-yousign-preset.js')],
theme: {
colors: {
black: '#111028',
white: '#FFFFFF',
grey: {
light: '#FCF8F3',
medium: '#D8D8D8',
},
turquoiseBlue: '#5DE8C1',
shamrock: '#1bc091',
purple: {
light: '#7355EC',
medium: '#090022',
dark: '#03001D',
darker: '#030019',
},
yellow: '#FFE392',
prussianBlue: '#002B44',
coral: '#F4877A',
},
fontFamily: {
sans: ['URWGeometric', 'Helvetica', 'Arial', 'sans-serif'],
},
container: {
center: true,
screens: {
sm: '480px',
md: '740px',
lg: '992px',
xl: '1200px',
},
},
extend: {
height: {
navbar: '80px',
},
minHeight: {
navbar: '60px',
},
letterSpacing: {
tighter: '-.04em',
},
lineHeight: {
tight: 1.2,
},
boxShadow: {
sm: '0 5px 10px rgba(0, 0, 0, 0.12)',
md: '0 8px 30px rgba(0, 0, 0, 0.12)',
},
},
},
variants: {
extend: {
scale: ['group-hover'],
rotate: ['group-hover'],
},
},
darkMode: 'class',
};