File size: 880 Bytes
21a686e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import "tailwindcss";

@theme {
  --color-primary: #DC2626;
  --color-secondary: #111827;
  --color-background: #000000;
  --color-foreground: #FFFFFF;
  --color-muted: #6B7280;
  --color-accent: #DC2626;
  --color-card: #1F2937;
  --color-border: #374151;
  --color-input: #374151;
  --color-ring: #DC2626;
  --color-destructive: #EF4444;
  --color-success: #10B981;
  --color-warning: #F59E0B;
}

@layer base {
  * {
    border-color: theme(colors.border);
  }
  
  body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
  }
  
  .text-primary {
    color: #DC2626;
  }
  
  .text-secondary {
    color: #6B7280;
  }
  
  .bg-primary {
    background-color: #DC2626;
  }
  
  .bg-secondary {
    background-color: #111827;
  }
  
  .border-primary {
    border-color: #DC2626;
  }
}