-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (59 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'src/pages/**/*.{js,ts,jsx,tsx}',
'src/components/**/*.{js,ts,jsx,tsx}',
'src/templates/**/*.{js,ts,jsx,tsx}',
],
theme: {
colors: {
primary: '#C00000',
secondary: '#F5730A',
dark: '#1E2D2F',
light: '#FFFFFF',
neutral: '#C4BBAF',
},
fontFamily: {
poppins: ['"Poppins", sans-serif'],
lora: ['"Lora", serif'],
},
extend: {
borderRadius: {
round: '50%',
},
backgroundImage: {
image: "url('../../public/images/layered-peaks-haikei.svg')",
},
boxShadow: {
button:
'1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px',
},
keyframes: {
horizontalShaking: {
'0%': {
transform: 'translateX(0)',
},
'6.5%': {
transform: 'translateX(-6px) rotateY(-9deg)',
},
'18.5%': {
transform: 'translateX(5px) rotateY(7deg)',
},
'31.5%': {
transform: 'translateX(-3px) rotateY(-5deg)',
},
'43.5%': {
transform: 'translateX(2px) rotateY(3deg)',
},
'50%': {
transform: 'translateX(0px)',
},
},
},
animation: {
horizontalShaking: 'horizontalShaking 2s infinite',
},
},
},
plugins: [],
};