From 5a0f2ed7af3bb804219c1be07969103572384ceb Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 9 May 2021 16:59:23 +0200 Subject: add next.js project files --- styles/colors.css | 20 ++++++++++++++++++++ styles/globals.css | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 styles/colors.css create mode 100644 styles/globals.css (limited to 'styles') 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; +} + -- cgit v1.2.3