forked from experimental-design/bofire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme-dark.scss
More file actions
40 lines (32 loc) · 756 Bytes
/
theme-dark.scss
File metadata and controls
40 lines (32 loc) · 756 Bytes
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
/*-- scss:defaults --*/
// Dark color palette
$primary: #4fa3d1;
$secondary: #5ecbd6;
$success: #5fc76d;
$info: #8cc5e3;
$warning: #fec768;
$danger: #f16f59;
// Typography
$font-family-sans-serif: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
$font-family-monospace: "Source Code Pro", Consolas, Monaco, monospace;
// Code
$code-bg: #2d2d2d;
$code-color: #ff79c6;
/*-- scss:rules --*/
.navbar {
font-weight: 500;
}
code {
background-color: $code-bg;
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 0.9em;
}
pre code {
background-color: transparent;
padding: 0;
}
.sidebar nav[role="doc-toc"] ul > li > a.active {
border-left: 2px solid $primary;
font-weight: 600;
}