blob: ce54f61b791ae8c53f862297fd91f7bc8f926e48 [file] [log] [blame]
Skyler Grey7177bbd2023-06-01 03:26:31 +02001/* Write your global styles here, in PostCSS syntax */
2@tailwind base;
3@tailwind components;
4@tailwind utilities;
5
6@layer base {
7 :root {
8 --background: 224 71% 4%;
9 --foreground: 213 31% 91%;
10
11 --muted: 223 47% 11%;
12 --muted-foreground: 215.4 16.3% 56.9%;
13
14 --popover: 224 71% 4%;
15 --popover-foreground: 215 20.2% 65.1%;
16
17 --card: 224 71% 4%;
18 --card-foreground: 213 31% 91%;
19
20 --border: 216 34% 17%;
21 --input: 216 34% 17%;
22
23 --primary: 210 40% 98%;
24 --primary-foreground: 222.2 47.4% 1.2%;
25
26 --secondary: 222.2 47.4% 11.2%;
27 --secondary-foreground: 210 40% 98%;
28
29 --accent: 216 34% 17%;
30 --accent-foreground: 210 40% 98%;
31
32 --destructive: 359 51% 48%;
33 --destructive-foreground: 210 40% 98%;
34
35 --ring: 216 34% 17%;
36
37 --radius: 0.5rem;
38 }
39}
40
41@layer base {
42 * {
43 @apply border-border;
44 }
45 body {
46 @apply bg-background text-foreground;
47 font-feature-settings: 'rlig' 1, 'calt' 1;
48 }
49}
Skyler Grey22205e62023-08-06 15:20:25 +000050
51.gradient-text {
52 background-clip: text;
53 -webkit-text-fill-color: transparent;
54 @apply bg-gradient-to-r font-bold;
55}
56
57p:not(.reset):not(:last-child) {
58 @apply pb-5;
59}
60
61a:not(.reset) {
62 @apply gradient-text text-cyan-300 from-cyan-200 to-cyan-300 underline decoration-cyan-300/30 transition-colors;
63}
64
65a:hover:not(.reset) {
66 @apply gradient-text text-cyan-500 from-cyan-400 to-cyan-500 decoration-cyan-500;
67}
68
69ul li:not(.reset)::before {
70 content: "- ";
71}
72
73.dim {
74 @apply text-gray-400;
75}
76
77a.dim:not(.reset) {
78 @apply gradient-text text-cyan-600 from-cyan-600 to-cyan-700;
79}
80
81a.dim:hover:not(.reset) {
82 @apply gradient-text text-cyan-400 from-cyan-300 to-cyan-400 underline decoration-cyan-400;
83}
84
85h2:not(.reset) {
86 @apply inline-block;
87}