-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
136 lines (131 loc) · 3.07 KB
/
Copy pathtailwind.config.js
File metadata and controls
136 lines (131 loc) · 3.07 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
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)'
],
'cl1': [
'0px 0px 1px 0px rgba(12, 26, 75, 0.24)',
'0px 3px 8px -1px rgba(50, 50, 71, 0.05)'
]
},
colors: {
'green-100': '#F8FBF8',
'green-200': '#D1F9EB',
'green-300': '#84E9C5',
'green-400': '#25C38B',
'green-500': '#028352',
'orange-100': '#F7E3C3',
'orange-200': '#E9A63B',
'orange-300': '#D75B1D',
'cl-grey': '#A2A3A2',
'cl-dark-grey': '#676868',
'cl-black': '#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'
},
keyframes: {
'infinite-scroll': {'0%': { transform: 'translateX(0)'}, '100%': {transform: 'translateX(calc(-50% - 12px))'}}
},
animation: {
'infinite-scroll': 'infinite-scroll 40s linear infinite'
},
},
},
// this allows the dynamic setting of animation delay in theme-sponsors.js
safelist: [
'delay-[250ms]',
'delay-[500ms]',
'delay-[750ms]',
'delay-[1000ms]',
],
plugins: [
require('@tailwindcss/forms'),
function ({ addUtilities }) {
addUtilities({
'.paused': {
'animation-play-state': 'paused',
},
'.running': {
'animation-play-state': 'running',
},
});
},
],
};