aboutsummaryrefslogtreecommitdiff
path: root/src/styles/global.css
blob: 198f1e19790a2f6f4ecff7682d78feea5931e95b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: #282A36;
  color: #F2F2F2;
  margin: 0; }

.root-content {
  width: 90%;
  margin: auto; }