-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (65 loc) · 1.61 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
kurisu: {
primary: '#e11d48',
accent: '#ffe4e6',
dark: '#881337',
},
mayuri: {
primary: '#0ea5e9',
accent: '#e0f2fe',
dark: '#0369a1',
},
faris: {
primary: '#ec4899',
accent: '#fce7f3',
dark: '#9d174d',
},
suzuha: {
primary: '#10b981',
accent: '#d1fae5',
dark: '#047857',
},
ruka: {
primary: '#8b5cf6',
accent: '#ede9fe',
dark: '#5b21b6',
},
maho: {
primary: '#84cc16',
accent: '#ecfccb',
dark: '#3f6212',
},
moeka: {
primary: '#64748b',
accent: '#f1f5f9',
dark: '#334155',
},
divergence: '#ff6b00',
},
keyframes: {
breathe: {
'0%, 100%': { transform: 'translateY(0px) scale(1)' },
'50%': { transform: 'translateY(-3px) scale(1.015, 0.985)' },
},
popIn: {
'0%': { transform: 'scale(0.8) translateY(8px)', opacity: '0' },
'80%': { transform: 'scale(1.05) translateY(-2px)', opacity: '1' },
'100%': { transform: 'scale(1) translateY(0)', opacity: '1' },
},
},
animation: {
breathe: 'breathe 2.6s ease-in-out infinite',
popIn: 'popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards',
},
},
},
plugins: [],
}