diff options
Diffstat (limited to 'styles')
-rw-r--r-- | styles/colors.css | 20 | ||||
-rw-r--r-- | styles/globals.css | 10 |
2 files changed, 30 insertions, 0 deletions
diff --git a/styles/colors.css b/styles/colors.css new file mode 100644 index 0000000..7051835 --- /dev/null +++ b/styles/colors.css @@ -0,0 +1,20 @@ +:root { + --error: #EE6183; + --piss: #C482ED; + --blue: #454DFE; + --mint: #A8EEEE; + --gruble: #5DE9AE; + + --c900: #EBEEF9; + --c800: #AEB7DA; + --c700: #707BA6; + --c400: #2D344F; + --c300: #171D33; + --c200: #07071C; + --c100: #01010D; + + --bg: var(--c200); + --fg: var(--c900); + background-color: var(--bg); +} + diff --git a/styles/globals.css b/styles/globals.css new file mode 100644 index 0000000..fc41e88 --- /dev/null +++ b/styles/globals.css @@ -0,0 +1,10 @@ +html, body { + padding: 0; + margin: 0; + + background-color: var(--bg); + color: var(--fg); + + font-family: "Inter", sans-serif; +} + |