A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
1@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5/* Definition of the design system. All colors, gradients, fonts, etc should be defined here.
6All colors MUST be HSL.
7*/
8
9@layer base {
10 :root {
11 --background: 0 0% 100%;
12 --foreground: 222.2 84% 4.9%;
13
14 --card: 0 0% 100%;
15 --card-foreground: 222.2 84% 4.9%;
16
17 --popover: 0 0% 100%;
18 --popover-foreground: 222.2 84% 4.9%;
19
20 --primary: 222.2 47.4% 11.2%;
21 --primary-foreground: 210 40% 98%;
22
23 --secondary: 210 40% 96.1%;
24 --secondary-foreground: 222.2 47.4% 11.2%;
25
26 --muted: 210 40% 96.1%;
27 --muted-foreground: 215.4 16.3% 46.9%;
28
29 --accent: 210 40% 96.1%;
30 --accent-foreground: 222.2 47.4% 11.2%;
31
32 --destructive: 0 84.2% 60.2%;
33 --destructive-foreground: 210 40% 98%;
34
35 --border: 214.3 31.8% 91.4%;
36 --input: 214.3 31.8% 91.4%;
37 --ring: 222.2 84% 4.9%;
38
39 --radius: 0.5rem;
40
41 --sidebar-background: 0 0% 98%;
42
43 --sidebar-foreground: 240 5.3% 26.1%;
44
45 --sidebar-primary: 240 5.9% 10%;
46
47 --sidebar-primary-foreground: 0 0% 98%;
48
49 --sidebar-accent: 240 4.8% 95.9%;
50
51 --sidebar-accent-foreground: 240 5.9% 10%;
52
53 --sidebar-border: 220 13% 91%;
54
55 --sidebar-ring: 217.2 91.2% 59.8%;
56 }
57
58 .dark {
59 --background: 222.2 84% 4.9%;
60 --foreground: 210 40% 98%;
61
62 --card: 222.2 84% 4.9%;
63 --card-foreground: 210 40% 98%;
64
65 --popover: 222.2 84% 4.9%;
66 --popover-foreground: 210 40% 98%;
67
68 --primary: 210 40% 98%;
69 --primary-foreground: 222.2 47.4% 11.2%;
70
71 --secondary: 217.2 32.6% 17.5%;
72 --secondary-foreground: 210 40% 98%;
73
74 --muted: 217.2 32.6% 17.5%;
75 --muted-foreground: 215 20.2% 65.1%;
76
77 --accent: 217.2 32.6% 17.5%;
78 --accent-foreground: 210 40% 98%;
79
80 --destructive: 0 62.8% 30.6%;
81 --destructive-foreground: 210 40% 98%;
82
83 --border: 217.2 32.6% 17.5%;
84 --input: 217.2 32.6% 17.5%;
85 --ring: 212.7 26.8% 83.9%;
86 --sidebar-background: 240 5.9% 10%;
87 --sidebar-foreground: 240 4.8% 95.9%;
88 --sidebar-primary: 224.3 76.3% 48%;
89 --sidebar-primary-foreground: 0 0% 100%;
90 --sidebar-accent: 240 3.7% 15.9%;
91 --sidebar-accent-foreground: 240 4.8% 95.9%;
92 --sidebar-border: 240 3.7% 15.9%;
93 --sidebar-ring: 217.2 91.2% 59.8%;
94 }
95}
96
97@layer base {
98 * {
99 @apply border-border;
100 }
101
102 body {
103 @apply bg-background text-foreground;
104 }
105}