-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlight_theme.scss
39 lines (34 loc) · 1.08 KB
/
light_theme.scss
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
38
39
/*-- scss:defaults --*/
/* useful resource on customizing Quarto sites */
/* https://ucsb-meds.github.io/customizing-quarto-websites/#/title-slide */
// Colors
$dark-purple: #49416D;
$dark-pink: #A94282;
$pale-purple: #F8EBFF;
$blue: #99C0FA;
$ivory: #FCFBED;
$pink-lavender: #E6B9D4;
$cherry-blossom: #FFB2C7;
$mimi-pink: #FFE3EA;
/* 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@300&family=Open+Sans:wght@300&display=swap');
// Base document colors
$navbar-bg: $cherry-blossom; // navbar
$navbar-fg: $dark-pink; // navbar foreground elements
$navbar-hl: $mimi-pink; // highlight color when on a page
$body-bg: $mimi-pink; // page background
$body-color: $dark-purple; // page text
$link-color: $blue; // hyperlinks
// Code text
$code-bg: $cherry-blossom; // inline code background color
$code-block-bg: $cherry-blossom; // code block background color
$code-color: $ivory; // inline code text color