File size: 779 Bytes
317eec4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  color-scheme: dark;
  --brand: #22d3ee; /* default teal */
  --brand-glow: rgba(34, 211, 238, 0.35);
}

/* Fancy gradient grid background helper */
.bg-grid {
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Theme brand variants (applied on <body> via ThemeProvider) */
.brand-teal {
  --brand: #22d3ee;
  --brand-glow: rgba(34, 211, 238, 0.35);
}
.brand-indigo {
  --brand: #8b5cf6; /* indigo-500 */
  --brand-glow: rgba(139, 92, 246, 0.35);
}
.brand-emerald {
  --brand: #10b981; /* emerald-500 */
  --brand-glow: rgba(16, 185, 129, 0.35);
}
.brand-sunset {
  --brand: #f97316; /* orange-500 */
  --brand-glow: rgba(249, 115, 22, 0.35);
}