-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (50 loc) · 1.62 KB
/
Copy pathtailwind.config.js
File metadata and controls
53 lines (50 loc) · 1.62 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
mono: ['"Roboto Mono"', 'monospace'],
},
colors: {
// Volcanic (Night)
basalt: 'var(--color-basalt)',
'magma-vent': 'var(--color-magma-vent)',
'magma-crust': 'var(--color-magma-crust)',
'canarian-pine': 'var(--color-canarian-pine)',
// Dunes (Day)
'dune-gold': 'var(--color-dune-gold)',
'dune-shadow': 'var(--color-dune-shadow)',
'calima-haze': 'var(--color-calima-haze)',
'atlantic-blue': 'var(--color-atlantic-blue)',
// Yumbo (Psychedelic)
'neon-pride': 'var(--color-neon-pride)',
'bio-cyan': 'var(--color-bio-cyan)',
'mojo-lime': 'var(--color-mojo-lime)',
},
animation: {
'magma-breath': 'magmaBreath 6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite',
'alisios-wind': 'alisiosWind 40s linear infinite',
'shimmer': 'shimmer 1.5s ease-in-out infinite',
},
keyframes: {
magmaBreath: {
'0%, 100%': { transform: 'scale(1)', boxShadow: '0 0 10px var(--color-magma-crust)' },
'50%': { transform: 'scale(1.03)', boxShadow: '0 0 30px var(--color-magma-vent)' },
},
alisiosWind: {
'0%': { backgroundPosition: '0% 0%' },
'100%': { backgroundPosition: '100% 20%' },
},
shimmer: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
}
}
},
},
plugins: [],
}