-
Notifications
You must be signed in to change notification settings - Fork 2
/
theme_dark.scss
57 lines (46 loc) · 1.4 KB
/
theme_dark.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
55
56
57
/*-- scss:defaults --*/
// Colors
/* source: https://coolors.co/palettes/trending */
$brown: #562c2c;
$orange: #f2542d;
$tan: #f5dfbb;
$turq-1: #0e9594;
$turq-2: #127475;
$url-blue: #01BAEF;
$cream: #F4F3EE;
$gray-0: #d6d6d6;
$gray-1: #BCB8B1;
$gray-2: #8A817C;
$gray-3: #222823;
$gray-4: #191919;
$black: #08090A;
$font-size: 25px;
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Open+Sans:wght@300&display=swap');
// Base document colors
$navbar-bg: $orange; // navbar
$navbar-fg: $brown; // navbar foreground elements
$navbar-hl: $tan; // highlight color when on a page
$body-bg: $black; // page background
$body-color: $cream; // page text
$footer-bg: $turq-1; // footer
$link-color: $url-blue; // hyperlinks
// Inline code
$code-bg: $gray-0; // inline code background color
$code-color: $turq-1; // inline code text color
// Code blocks
$code-block-bg: $gray-3; // code block background color
/*-- scss:rules --*/
// Code chunk ouput
pre code:not(.sourceCode) { background-color: #FFF; }
// Active tabset panel (tab then tab content)
.nav-tabs .nav-link.active {
background-color: #FFF;
color: $black;
}
.tab-content { background-color: #FFF; }
// Navbar dropdown elements
.dropdown-menu{
--bs-dropdown-link-hover-color: #F4F3EE;
--bs-dropdown-link-hover-bg: #0e9594;
}