-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
79 lines (78 loc) · 1.87 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module.exports = {
// mode: 'jit',
// // These paths are just examples, customize them to match your project structure
// purge: ['./public/**/*.html', './src/**/*.{js,jsx,ts,tsx}'],
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
sm: { max: '1000px' },
md: { min: '1001px', max: '1649px' },
lg: { min: '1650px' },
},
colors: {
dark: 'black',
light: 'white',
primary: '#01559A',
accent: '#D25C78',
red: '#D25C78',
},
fontFamily: {
body: ['"Assistant"', 'sans-serif'],
display: ['"Assistant"', 'sans-serif'],
sans: ['"Assistant"', 'sans-serif'],
serif: ['"Assistant"', 'sans-serif'],
mono: ['"Assistant"', 'sans-serif'],
},
extend: {
colors: {
'header-blue': '#4E47F9',
'contact-bg': '#F4F3FD',
'icon-bg': '#4E47F9',
success: '#7AD17C',
red: '#D25C78',
blue: '#4E47F9',
'brown-bg': '#E5E5E5',
azure: '#E2F7F9',
},
text: {
medium: 'md:text-xl',
large: 'lg:text-2xl',
},
boxShadow: {
'4xl': '0px 0px 4px rgba(0,0,0,0.25)',
},
height: { header: '95px' },
minHeight: {
'screen-50': '50vh',
},
gridTemplateColumns: {
'auto-1fr': 'auto 1fr',
'auto-1fr-auto': 'auto 1fr auto',
'auto-auto-1fr': 'auto auto 1fr',
'2-auto': 'auto auto',
'4-auto': 'auto auto auto auto',
'4-auto-1fr': 'auto auto auto auto 1fr',
},
gridTemplateRows: {
'1fr': '1fr',
'auto-1fr': 'auto 1fr',
},
zIndex: {
bg: '-1',
},
},
fontSize: {
xs: '16px',
s: '18px',
medium: '22px',
lg: '28px',
xl: '42px',
'2xl': '52px',
'3xl': '82px',
},
},
plugins: [],
}