-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.scss
55 lines (30 loc) · 1.33 KB
/
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
40
41
42
43
44
45
46
47
48
/*-- scss:defaults --*/
// Sass variables for websites, books, manuscripts, revealjs presentations
// Fonts
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
// POSIT THEME VARIABLES
$body-bg: #17212B;
$body-color: #ffffff;
$code-color: #72994E;
$font-family-sans-serif: 'Open Sans', sans-serif !default;
$font-family-monospace: 'Source Code Pro', monospace !default;
$link-color: #447099;
$code-block-bg: #213D4F;
$code-block-border-color: #305775;
$code-block-font-size: 24px;
// Dark colors
$dark-bg-text-color: #fff !default;
$dark-bg-link-color: #A2B8CB !default;
$dark-bg-code-color: #72994E !default;
// Presentation variables for, um, presentations.
$presentation-heading-font-weight: 300;
$presentation-h1-font-size: 2.4em;
/*-- scss:rules --*/
// css for websites, books, manuscripts, revealjs presentations
.reveal .quarto-title-authors {
opacity: .6;
}
.quarto-dark .code-with-filename .code-with-filename-file, .quarto-dark .code-with-filename .code-with-filename-file pre {
background-color: #305775;
}