-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (59 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./views/**/*.ejs'],
theme: {
screens: {
'2xl':{'max': '1536px'},
'xl': {'max': '1280px'},
'lg': {'max': '1024px'},
'md': {'max': '800px'},
'sm': {'max': '640px'},
'xs': {'max': '500px'},
},
extend: {
backgroundImage: {
'pattern': "url(/src/assets/img/background.jpg)",
},
spacing: {
'0.05': '0.2px',
'icon': '14px',
'11.75': '2.9375rem',
'18': '4.5rem',
'25': '6.25rem',
'41': '164px',
'42': '168px',
'62': '15.5rem',
'62.5': '15.625rem',
'75': '18.75rem',
'76': '19rem',
'84': '21rem',
'90': '22.5rem',
'100': '25rem',
'110': '27.5rem',
'125': '31.25rem',
'128': '32rem',
'144': '36rem',
'148': '37rem',
'160': '40rem',
'240': '60rem',
},
borderWidth: {
'-3': '-3px',
'0.5': '0.5px',
'1': '1px',
},
colors: {
'submit-button': '#263238',
'main': '#FAFFFB',
'body': '#D0E9D7',
'main-img': '#E6FEED',
'brand-title': '#75f57e',
'brand-title2': '#5cdb65',
},
fontSize: {
'xxs': '.625rem',
},
},
},
plugins: [],
}