-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (63 loc) · 1.63 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
67
68
69
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
rotate: {
'10': '-10deg',
'5': '-5deg',
'20': '-20deg',
},
colors: {
'green-card': '#4CAB2A',
'red-card': '#B72B4F',
'blue-card': '#0078A3',
'black-card': '#1E1E1E',
'yellow-card': '#E89E00',
'orange-card': '#FE7413',
'purple-card': '#CC348D',
'white-card': '#F8F9FA',
},
backgroundImage: {
'img-card': "url('/imgs/back.svg')"
},
animation: {
glowLvl34: 'glow34 7s ease-in-out infinite',
glowLvl56: 'glow56 5s ease-in-out infinite',
glowLvl7: 'glow7 2s ease-in-out infinite'
},
keyframes: {
glow34: {
'0%, 100%': {
boxShadow: '0 0 0px rgba(233, 180, 21, 0.4)',
},
'50%': {
boxShadow: '0 0 20px rgba(233, 180, 21, 0.6)',
},
},
glow56: {
'0%, 100%': {
boxShadow: '0 0 10px rgba(233, 180, 21, 0.4)',
},
'50%': {
boxShadow: '0 0 20px rgba(233, 180, 21, 0.8)',
},
},
glow7: {
'0%, 100%': {
boxShadow: '0 0 20px rgba(233, 180, 21, 1)',
},
'50%': {
boxShadow: '0 0 20px rgba(233, 180, 21, 1)',
},
},
},
},
},
plugins: [],
});