File size: 1,097 Bytes
d53c2af
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 237 28% 15%;
    --foreground: 237 10% 98%;
    --card: 237 25% 18%;
    --card-foreground: 237 10% 98%;
    --popover: 237 28% 15%;
    --popover-foreground: 237 10% 98%;
    --primary: 231 50% 62%;
    --primary-foreground: 0 0% 100%;
    --secondary: 237 20% 25%;
    --secondary-foreground: 237 10% 98%;
    --muted: 237 20% 25%;
    --muted-foreground: 237 10% 70%;
    --accent: 199 89% 63%;
    --accent-foreground: 237 28% 10%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 237 20% 25%;
    --input: 237 20% 25%;
    --ring: 199 89% 63%;
    --radius: 0.75rem;
    --chart-1: 199 89% 63%;
    --chart-2: 231 50% 62%;
    --chart-3: 160 60% 45%;
    --chart-4: 30 80% 55%;
    --chart-5: 280 65% 60%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground font-body;
  }
}

.chart-gradient-cpu {
  stop-color: hsl(var(--chart-1));
}

.chart-gradient-mem {
  stop-color: hsl(var(--chart-2));
}