-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
50 lines (50 loc) · 1.03 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
module.exports = {
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
sans: ['sofiapro'],
},
fontWeight: {
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
},
extend: {
fontSize: {
12: '12px',
14: '14px',
16: '16px',
18: '18px',
72: '72px',
},
colors: {
'near-black': '#1d2129',
'ice-blue': '#f0f4f7',
'light-orange': '#fff7e8',
primary: '#4EE69C',
'light-black': '#565a64',
},
borderRadius: {
l: '8px',
xl: '16px',
xxl: '24px',
xxxl: '36px',
xxxl2: '42px',
},
boxShadow: {
'xl-light': '0 5px 20px 0 rgba(86, 90, 100, 0.05);',
'sm-light': '0 2px 3px 0 rgba(86, 90, 100, 0.1);',
},
letterSpacing: {
'1px': '1px',
},
},
},
variants: {
extend: {},
},
plugins: [],
}