summaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css
new file mode 100644
index 0000000..aac86b5
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,28 @@
+/*@font-face {
+ font-family: 'Inter';
+ src: url('Inter.ttf');
+}*/
+
+:root {
+ --base: #121212;
+ --surface: #242424;
+ --overlay: #484848;
+ --text: #ffffff;
+ --primary: #1c4c87;
+
+ --data-any: #36c965;
+ --data-float: #a0a0a0;
+ --data-vector: #5e29d9;
+
+ font-family: 'Inter', Helvetica, sans-serif;
+ box-sizing: border-box;
+}
+
+body {
+ background-color: var(--base);
+ color: var(--text);
+ margin: 0;
+ width: 100vw;
+ height: 100vh;
+ overflow: hidden;
+} \ No newline at end of file