-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 955 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
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
primary: 'Inter',
secondary: 'Open Sans',
},
container: {
padding: {
DEFAULT: '0',
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1038px',
},
extend: {
colors: {
primary: {
100: '#a5ffce',
200: '#4ae290',
300: '25c870',
},
neutral: {
100: '#ffffff',
200: '#dedee3',
300: '#9797a1',
400: '#595962',
500: '#131316',
},
page: '#fcfcff',
},
backgroundImage: {
banner: "url('/src/assets/img/banner/bg.png')",
faq: "url('/src/assets/img/faq/bg.svg')",
},
backgroundSize: {
auto: 'auto',
cover: 'cover',
contain: 'contain',
custom: '95%',
},
},
},
plugins: [],
};