-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path_variables.scss
executable file
·67 lines (51 loc) · 1.35 KB
/
_variables.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
60
61
62
63
64
65
66
67
@use "sass:map";
$custom-colors: (
klee: #008939,
klee-700: #006e2e,
tanne: #005437,
sonne: #fff17a,
sand: #f5f1e9,
grashalm: #8abd24,
himmel: #0ba1dd,
black: #000,
black-500: #201d1b,
gray: #eff2ed,
gray-500: #6b7a80,
white: #fff
);
$primary: map.get($custom-colors, "klee");
$secondary: map.get($custom-colors, "tanne");
$white: map.get($custom-colors, "white");
$black: map.get($custom-colors, "black");
$black-500: map.get($custom-colors, "black-500");
$white-90: rgba(255, 255, 255, 0.9);
$dark: #ddd;
$gray-500: map.get($custom-colors, "gray-500");
$darkgray: #333;
$lightgray: #aeb2ad;
$very-light-gray: #d6d9d6;
// $body-color is $gray-900 by default and set by BS
$body-color: #212529;
$sidebar-color: #afafaf;
$lightgreen: #e5f3eb;
$darkgreen: #002216;
$border-radius: 3px;
$border-radius-small: 1px;
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1170px) !default;
$font-size-base: 1.1875rem;
$small-font-size: 15px;
$primary-text-emphasis: $white;
$accordion-button-color: #fff;
$accordion-button-active-color: #fff;
$accordion-icon-active-color: #fff;
$accordion-icon-color: #fff;
$accordion-button-active-bg: $secondary;
$accordion-button-bg: #008939;
$accordion-border-radius: 6px;
// underline links only on hover
$link-decoration: none;
$link-hover-decoration: underline;