-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme-dark.scss
59 lines (46 loc) · 1.22 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
58
59
/*-- scss:defaults --*/
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';
$font-family: "Atkinson Hyperlegible", sans-serif;
// Base document colors
$body-bg: #282a36;
$body-color: #f8f8f2;
$link-color: #8be9fd;
$light: #f8f8f2;
// Navigation element colors
$footer-bg: #44475a;
$navbar-bg: #44475a;
$sidebar-bg: #44475a;
// Code blocks
$code-block-bg-alpha: -.8;
$code-bg: #44475a;
$code-color: #8be9fd;
// Bootstrap popovers
$popover-bg: #bd93f9;
// Bootstrap inputs
$input-bg: #6272a4;
/*-- scss:rules --*/
.layout-example {
background: $gray-600;
}
.render-commit-push {
padding: 0.5em 0.5em 0em 3em;
margin-top: 5px;
margin-bottom: 5px;
background: #282a36 5px center/3em no-repeat;
border-top: 1px solid #adadad;
border-bottom: 1px solid #adadad;
background-image: url("images/render-commit-push.png");
background-size: 2em;
background-position: 0.5em 0.5em;
}
.pull {
padding: 0.5em 0.5em 0em 3em;
margin-top: 5px;
margin-bottom: 5px;
background: #282a36 5px center/3em no-repeat;
border-top: 1px solid #adadad;
border-bottom: 1px solid #adadad;
background-image: url("images/pull.png");
background-size: 2em;
background-position: 0.5em 0.5em;
}