-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
43 lines (43 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'./src/**/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
misterpixel: ['misterpixel', 'serif'],
minecraft: ['minecraft', 'serif'],
ft88: ['ft88-reg', 'serif'],
ft88b: ['ft88-bold', 'serif'],
O4b: ['O4b', 'serif'],
},
colors: {
'text-primary': '#FFFFFF', //"#FFFFFF" add this when we don't have a white background
'text-secondary': '#965340',
},
backgroundImage: {
sponsor_background:
"url('/src/assets/images/SponsorPage/Background.svg')",
},
keyframes: {
wiggle: {
'0%': { transform: 'scale(1.0)' },
'50%': { transform: 'scale(1.2) rotate(-7deg)' },
'100%': { transform: 'scale(1.0)' },
'50%': { transform: 'rotate(-5deg) scale(1.2)' },
'20%, 75%': { transform: 'rotate(5deg) scale(1.2)' },
},
},
animation: {
wiggle: 'wiggle ease-out 0.3s',
},
},
listStyleImage: {
goldKey: 'url("/src/assets/images/SponsorPage/PerksAssets/GoldKey.svg")',
},
},
plugins: [],
};