From ac83dd4a08bdbab6df270d6dae8d9e2d6d619342 Mon Sep 17 00:00:00 2001 From: Sam Nystrom Date: Wed, 6 Mar 2024 20:52:45 +0000 Subject: init --- src/index.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/index.css (limited to 'src/index.css') 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 -- cgit v1.2.3