This commit is contained in:
2024-09-05 18:01:00 +02:00
parent b76e3cb1b8
commit 480d47de01
14 changed files with 1900 additions and 184 deletions

33
src/styles/index.css Normal file
View File

@@ -0,0 +1,33 @@
body {
margin: 0;
font-family: Avenir, -apple-system, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
background-color: #14181c;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
:root {
--background: #fff;
--foreground: #2c3e50;
--primary: #1caff2;
--secondary: #000;
--tertiary: rgba(64, 188, 244, 0.5);
--white: #fff;
--off-white: #ebebeb;
--black: #000;
}
.dark {
--background: #14181d;
--foreground: #76a0ca;
--secondary: #fff;
--tertiary: #526e89;
}