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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--secondary-dark: rgb(37, 37, 38);
--vsc-background: rgb(30, 30, 30);
--button-color: rgb(113, 28, 59);
--button-color-hover: rgba(113, 28, 59, 0.667);
--def-border-radius: 5px;
/* --vscode-editor-background: rgb(30, 30, 30);
--vscode-editor-foreground: rgb(197, 200, 198);
--vscode-textBlockQuote-background: rgba(255, 255, 255, 0.05); */
}
html,
body,
#root {
height: 100%;
background-color: var(--vscode-editor-background);
font-family: "Lexend", sans-serif;
}
body {
padding: 0;
color: var(--vscode-editor-foreground);
padding: 0px;
margin: 0px;
height: 100%;
}
.press-start-2p {
font-family: "Press Start 2P", "Lexend", sans-serif;
}
|