From ee824f566add80998e2530f7bec54ff4d7a1471d Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Wed, 14 Apr 2021 20:29:54 +0530 Subject: Played around with forms --- src/styles/global.css | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'src/styles/global.css') diff --git a/src/styles/global.css b/src/styles/global.css index 3049801..198f1e1 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,10 +1,25 @@ @import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap"); /* Experimental color scheme */ +/* light theme */ +/* +$defBG: #FFFFFF; +$altBG: lightgray; +$defFG: #000000; +$altFG: #232627; +$defLink: brown; +$altLink: brown; + +$defShadow: 0px 0px 4px #232627; +*/ +/* Inspired by Dracula */ * { font-family: "Quicksand", sans-serif; } body { - background-color: #FFFFFF; - color: #000000; - padding: 0; + background-color: #282A36; + color: #F2F2F2; margin: 0; } + +.root-content { + width: 90%; + margin: auto; } -- cgit v1.2.3