-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.scss
54 lines (42 loc) · 1.14 KB
/
custom.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
49
50
51
52
53
54
/*-- scss:defaults --*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,[email protected],100;9..40,200;9..40,300;9..40,400&display=swap');
// The serif font family for the page.
$font-family-serif: "DM Sans", sans-serif;
// The sans-serif font family for the page.
$font-family-sans-serif: "DM Sans", sans-serif;
// The monospace font family for the page.
$font-family-monospace: "Noto Sans Mono", monospace;
//The base font size for the page.
$font-size-base: 1rem;
/*-- Define colors for later use --*/
$black: #000;
$gray: #495057;
$primary: #0f2def;
$secondary: #8934f7;
$violet: #4933b5;
$blue: #03a0f4;
$tertiary: #05d7e2;
$pastel: #e7eafe;
$white: #fff;
/*-- Define Bootstrap color variables --*/
// The page background color.
$body-bg: $white;
// The page text color.
$body-color: $black;
// Code block background.
$code-block-bg: $violet;
//Color of inline code.
$code-color: $white;
/*-- Define TOC format --*/
//TOC color
$toc-color: $secondary;
/*-- scss:rules --*/
//Header text color
h1, .h1, h2, .h2 {
color: $violet;
font-family: "DM Sans";
}
//Logo size
.navbar-logo {
max-height: 60px;
}