-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
54 lines (54 loc) · 1.01 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
module.exports = {
purge: ['./src/**/*.{js,jsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
padding: {
sm: '8px',
md: '16px',
lg: '24px',
xl: '48px',
'2xl': '95px',
'3xl': '190px',
},
screens: {
xs: '482px',
sm: '640px',
md: '768px',
mdlg: '900px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
maxWidth: {
max: '1200px',
},
width: {
'max': '1200px',
},
fontSize: {
'base-smaller': '12px',
base: '14px',
'base-larger': '16px',
},
colors: {
primary: '#5685F5',
black: '#0D1117',
gray: '#89929b',
'gray-2': '#c6cdd5',
'gray-3': '#161B22',
white: '#ECF2F8',
red: '#FA7970',
orange: '#FAA356',
green: '#7CE38B',
cyan: '#A2D2FB',
blue: '#77BDFB',
purple: '#CEA5FB',
}
}
},
variants: {
extend: {},
},
plugins: [],
}