-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
66 lines (65 loc) · 1.7 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
module.exports = {
purge: {
enabled: true,
content: ['./public/*.html'],
},
darkMode: false, // or 'media' or 'class'
theme: {
boxShadow: {
'img-shadow': '0 10px 36px -16px #000',
'card-shadow': '0 42px 0 -30px #67c58a, 0 10px 36px -16px #000',
},
backgroundSize: {
auto: 'auto',
cover: 'cover',
contain: 'contain',
'75%': '75%',
16: '4rem',
},
extend: {
inset: {
'-30%': '-30%',
},
colors: {
primary: '#67C58A',
secondary: {
100: '#E2E2D5',
200: '#888883',
},
'custom-white-title': '#d9e1e8',
'custom-white-text': '#a8afc4',
'card-background': '#363c52',
'related-work-orange': '#EB5027',
'related-work-white': '#fff',
'related-work-dark': '#505050',
'related-work-green': '#66b366',
'related-work-darkBlue': '#1d364a',
'related-work-gray': '#56636d',
'related-work-yellow': '#f1cf43',
'related-work-purple': '#925FDA',
'related-work-teal': '#00b5ad',
'custom-dark': '#2B2E3E',
},
fontFamily: {
raleway: ['Raleway', 'Helvetica', 'Arial', 'sans-serif'],
operatormono: ['Operator Mono', 'Helvetica', 'Arial', 'sans-serif'],
thailand: ['Gloss And Bloom', 'Helvetica', 'Arial', 'sans-serif'],
},
backgroundImage: (theme) => ({
aboutMeImage: "url('Images/about-me-font.png')",
}),
animation: {
slideIn: 'slideIn 500ms ease forwards',
},
keyframes: {
slideIn: {
'100%': { transform: 'translateY(0)' },
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};