-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
44 lines (40 loc) · 1009 Bytes
/
globals.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: 0 0% 3.9%;
--foreground: 0 0% 98%;
--card: 0 0% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 0 0% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 162 100% 50%;
--primary-foreground: 0 0% 98%;
--secondary: 0 0% 14.9%;
--secondary-foreground: 0 0% 98%;
--muted: 0 0% 14.9%;
--muted-foreground: 0 0% 63.9%;
--accent: 0 0% 14.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 0 0% 14.9%;
--input: 0 0% 14.9%;
--ring: 162 100% 50%;
}
body {
background-color: black;
color: white;
}
@keyframes neon-pulse {
0%,
100% {
text-shadow: 0 0 5px rgba(0, 229, 153, 0.8), 0 0 10px rgba(0, 229, 153, 0.5), 0 0 15px rgba(0, 229, 153, 0.3);
}
50% {
text-shadow: 0 0 10px rgba(0, 229, 153, 1), 0 0 20px rgba(0, 229, 153, 0.8), 0 0 30px rgba(0, 229, 153, 0.5);
}
}
.animate-pulse {
animation: neon-pulse 2s infinite;
}