-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
120 lines (116 loc) · 2.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./public/**/*.html',
'./lib/**/*.{js,ts,jsx,tsx}',
'./utils/**/*.{js,ts,jsx,tsx}',
],
important: true,
theme: {
extend: {
boxShadow: {
'card': [
'0px 0px 3px 0px rgba(12, 26, 75, 0.24)',
'0px 3px 8px -1px rgba(50, 50, 71, 0.05)'
]
},
colors: {
'green-50': '#F8FBF8',
'green-100': '#D1F9EB',
'green-200': '#84E9C5',
'green-300': '#25C38B',
'green-400': '#07B071',
'green-500': '#028352',
'green-600': '#035E46',
'green-800': '#053237',
'gray-100': '#FDFDFD',
'gray-200': '#F0F0F0', // gray 250 in DS
'gray-300': '#DAD8D8',
'gray-400': '#BFC0BF',
'gray-500': '#A2A3A2',
'gray-600': '#676868',
'gray-800': '#1F2223',
},
fontFamily: {
jakarta: ['var(--font-plus-jakarta-sans)'],
},
fontSize: {
xxs: '12px',
xs: '14px',
sm: '15px',
base: '16px',
lg: '17px',
xl: '18px',
'2xl': '19px',
'3xl': '22px',
'4xl': '23px',
'5xl': '25px',
'6xl': '29px',
'7xl': '54px',
'8xl': '85px'
},
lineHeight: {
2: '14px',
3: '15px',
4: '16px',
5: '19px',
6: '20px',
7: '21px',
8: '22px',
9: '23px',
10: '24px',
11: '26px',
12: '28px',
13: '30px',
14: '32px',
15: '36px',
16: '64px',
17: '96px'
},
screens: {
lgNav: '990px',
},
spacing: {
'128': '32rem',
},
flexBasis: {
'houdbaarheid': '22.3%',
'invloed': '7%',
'overheidslaag': '40.7%',
'rladder': '29%',
},
backgroundImage: {
'about-header': 'url("/about-header.png")',
'header': 'url("/home-page/homepage_bg.png")',
// 'scoll-circles': 'url("/scrolly/centered.svg")',
},
borderRadius: {
'cl': '10px',
'clSm': '4px'
},
zIndex: {
'60': '60',
'70': '70',
'80': '80',
'90': '90',
'100': '100',
'110': '110',
'120': '120',
'130': '130'
},
},
},
// this allows the dynamic setting of animation delay in theme-sponsors.js
safelist: [
'delay-[250ms]',
'delay-[500ms]',
'delay-[750ms]',
'delay-[1000ms]',
// etc.
],
plugins: [
require('@tailwindcss/forms')
],
};