File size: 887 Bytes
c990683
 
 
 
 
e73771b
 
 
c990683
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary: #811b06;
  --secondary: #491802;
  --accent: #b03e27;
  --light: #f3e5f5;
  --dark: #1a1a1a;
  --text: #333333;
  --background: #ffffff;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--text);
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.app.dark {
  --primary: #bb86fc;
  --secondary: #3700b3;
  --accent: #03dac6;
  --light: #2d2d2d;
  --dark: #121212;
  --text: #e0e0e0;
  --background: #121212;
}

.app.dark body {
  background-color: var(--dark);
  color: var(--text);
}