-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
75 lines (71 loc) · 1.93 KB
/
tailwind.config.ts
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
70
71
72
73
74
75
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"pearl-white": "#F0F0F0",
"neon-cyan": "#00FFFF",
"neon-magenta": "#FF00FF",
"neon-green": "#00FF00",
"dark-gray": "#1A1A1A",
"pure-black": "#000000",
"vivid-blue": "#0F52BA",
"lawn-green": "#7CFC00",
"gold": "#FFD700",
"orange-red": "#FF4500",
"neon-green-500": "#39ff14",
"neon-pink": "#ff007f",
"neon-magenta-500": "#ff00ff",
},
keyframes: {
fadeIn:{
'0%': {opacity: '0'},
'100%': {opacity: '1'}
},
fadeOut:{
'0%': {opacity: '1'},
'100%': {opacity: '0'}
},
slideIn:{
'0%': {transform: 'translateX(-100%)'},
'100%': {transform: 'translateX(0)'}
},
slideOut:{
'0%': {transform: 'translateX(0)'},
'100%': {transform: 'translateX(-100%)'}
},
},
animation: {
'fadeIn': 'fadeIn 1s ease-in-out',
'fadeOut': 'fadeOut 2s ease-in-out',
'slideIn': 'slideIn 2s ease-in-out',
'slideOut': 'slideOut 2s ease-in-out'
},
},
},
plugins: [daisyui],
daisyui:{
themes: [
{
'mytheme': {
'primary': '#00FFFF', // Neon Cyan
'secondary': '#FF00FF', // Neon Magenta
'accent': '#00FF00', // Neon Green
'neutral': '#1A1A1A', // Dark Gray/Almost Black
'base-100': '#000000', // Pure Black
'info': '#0F52BA', // Vivid Blue
'success': '#7CFC00', // Lawn Green
'warning': '#FFD700', // Gold
'error': '#FF4500', // Orange Red
},
},
]
}
};
export default config;