-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
51 lines (50 loc) · 1.54 KB
/
Copy pathtailwind.config.ts
File metadata and controls
51 lines (50 loc) · 1.54 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
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
'squid-dark': '#000000',
'squid-darker': '#037a76',
'squid-pink': '#ed1b76',
'squid-pink-light': '#f44786',
'squid-accent': '#249f9c',
'squid-accent-dark': '#037a76',
'squid-light': '#ffffff',
'squid-hot': '#ff0096',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'noise': "url('/noise.png')",
'grid': "url('/grid.svg')",
},
boxShadow: {
'neon': '0 0 15px rgba(237, 27, 118, 0.5)',
'neon-cyan': '0 0 15px rgba(36, 159, 156, 0.5)',
'neon-hot': '0 0 15px rgba(255, 0, 150, 0.5)',
},
animation: {
'glow': 'glow 2s ease-in-out infinite alternate',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
glow: {
'0%': { textShadow: '0 0 10px rgba(237, 27, 118, 0.5)' },
'100%': { textShadow: '0 0 20px rgba(237, 27, 118, 0.8), 0 0 30px rgba(237, 27, 118, 0.6)' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
} satisfies Config;