-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark_theme.scss
More file actions
37 lines (32 loc) · 1.03 KB
/
dark_theme.scss
File metadata and controls
37 lines (32 loc) · 1.03 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
/*-- scss:defaults --*/
/* useful resource on customizing Quarto sites */
/* https://ucsb-meds.github.io/customizing-quarto-websites/#/title-slide */
// Colors
$dark-purple: #352245;
$mauve: #D7B3F1;
$blue: #99C0FA;
$pink-lavender: #E6B9D4;
$african-violet: #917CB8;
$ivory: #FCFBED;
/* generally useful other colors */
$cream: #F4F3EE;
$gray-0: #d6d6d6;
$gray-1: #BCB8B1;
$gray-2: #8A817C;
$gray-3: #222823;
$gray-4: #191919;
$black: #08090A;
// Fonts
$font-size: 25px;
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&family=Open+Sans:wght@400&display=swap');
// Base document colors
$navbar-bg: $african-violet; // navbar
$navbar-fg: $dark-purple; // navbar foreground elements
$navbar-hl: $mauve; // highlight color when on a page
$body-bg: $dark-purple; // page background
$body-color: $cream; // page text
$link-color: $blue; // hyperlinks
// Code text
$code-bg: $african-violet; // inline code background color
$code-block-bg: $african-violet; // code block background color
$code-color: $ivory; // inline code text color