diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-09 16:59:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-09 16:59:23 +0200 |
commit | 5a0f2ed7af3bb804219c1be07969103572384ceb (patch) | |
tree | bb87a04560201d8af6e6e4ca5d84f8a06b8c3ace /styles | |
parent | 87f7bd7b20277786c39726db397caf1971abb956 (diff) |
add next.js project files
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; +} + |