-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 930 Bytes
/
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 = {
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
regular: ['oslo-sans-regular'],
bold: ['oslo-sans-bold']
},
colors: {
blue: '#CEECF7',
yellow: '#EAC46A',
green: '#B9D19C',
choral: '#E18072',
white: '#fff',
black: '#000'
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
inset: {
'1/10': '10%',
'1/6': '16.6%',
'1/5': '20%',
'1/4': '25%',
'1/3': '33.3%',
'1/2': '50%',
'3/5': '60%',
'2/3': '66.6%',
'3/4': '75%',
'4/5': '80%'
},
extend: {
width: {
'mobile': '375px',
'tablet': '50%',
},
height: {
100: '100vh'
}
},
},
variants: {
extend: {},
},
plugins: [],
}