-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 1019 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
"src/*.rs"
],
safelist: [
"bg-thomas",
"bg-david",
"bg-matthias",
],
theme: {
extend: {
backgroundImage: {
'landing-page': "url('/landing_page_background.jpg')",
'thomas': "url('/thomas.png')",
'david': "url('/david.png')",
'matthias': "url('/matthias.png')",
},
colors: {
grey: '#353535',
turquoise: '#34aca1',
darkGreen: '#2d978d',
lightGrey: '#e3e3e3',
darkGrey: '#757575',
hover: '#eeeeee',
red: '#ff0000',
green: 'rgb(0, 128, 0)',
black26: 'rgba(0, 0, 0, 0.26)',
black12: 'rgba(0, 0, 0, 0.12)'
},
fontFamily: {
sans: ['"Helvetica Neue"', "Helvetica", "Arial"],
header: ["Comfortaa"],
handWritten: ['Courgette, cursive']
},
scale: {
'200': '1.75'
},
blur: {
xs: '2px'
},
}
}
}