-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
68 lines (66 loc) · 1.99 KB
/
Copy pathtailwind.config.ts
File metadata and controls
68 lines (66 loc) · 1.99 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
66
67
68
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
'aurora-green': {
DEFAULT: 'var(--aurora-green)',
opacity: 'rgba(124, 252, 208, var(--tw-bg-opacity))'
},
'nordic-blue': {
DEFAULT: 'var(--nordic-blue)',
opacity: 'rgba(30, 61, 89, var(--tw-bg-opacity))'
},
'midnight-purple': {
DEFAULT: 'var(--midnight-purple)',
opacity: 'rgba(66, 38, 128, var(--tw-bg-opacity))'
},
'snow-white': {
DEFAULT: 'var(--snow-white)',
opacity: 'rgba(247, 249, 252, var(--tw-bg-opacity))'
},
'twilight-blue': {
DEFAULT: 'var(--twilight-blue)',
opacity: 'rgba(44, 82, 130, var(--tw-bg-opacity))'
},
'frost-blue': {
DEFAULT: 'var(--frost-blue)',
opacity: 'rgba(226, 232, 240, var(--tw-bg-opacity))'
},
'northern-pink': {
DEFAULT: 'var(--northern-pink)',
opacity: 'rgba(255, 97, 166, var(--tw-bg-opacity))'
},
},
animation: {
'float-up': 'floatUp 0.8s ease-out forwards',
'glow': 'glowPulse 2s infinite',
'aurora': 'aurora 15s ease-in-out infinite',
'twinkle': 'twinkle 4s ease-in-out infinite',
'aurora-delayed': 'aurora 20s ease-in-out infinite',
'aurora-delayed-2': 'aurora 25s ease-in-out infinite',
},
keyframes: {
twinkle: {
'0%, 100%': { opacity: '0' },
'50%': { opacity: '1' },
},
aurora: {
'0%, 100%': {
transform: 'translateY(-50%) translateX(-25%) rotate(-5deg)',
},
'50%': {
transform: 'translateY(-50%) translateX(25%) rotate(5deg)',
},
},
},
},
},
plugins: [],
}
export default config