]> git.ipfire.org Git - ipfire.org.git/blob - src/scss/_variables.scss
CSS: Make code elements dark
[ipfire.org.git] / src / scss / _variables.scss
1 /*
2 Colours
3 */
4 $black: #000000;
5 $white: #ffffff;
6
7 // Grays
8 $gray-400: #ede8e8;
9 $gray-800: #31353c;
10
11 $red: #ee2e31;
12 $yellow: #e7e247;
13 $cyan: #2ee8c8;
14
15 // Lightning Wire Labs colour
16 $lwl: #4b0082;
17
18 // Theme
19 $primary: $red;
20 $secondary: #757575;
21 $light: $gray-400;
22 $dark: $gray-800;
23
24 $theme-colors: (
25 "lwl" : $lwl,
26 );
27
28 $body-bg: $dark;
29 $body-color: $white;
30 $code-color: $white;
31 $pre-color: $white;
32
33 // Breakpoints
34 $grid-breakpoints: (
35 xs: 0,
36 sm: 600px,
37 md: 768px,
38 lg: 1024px,
39 xl: 1280px
40 );
41
42 $grid-gutter-width: 24px;
43
44 $border-radius: 5px;
45 $border-radius-lg: 5px;
46
47 // Fonts
48 $font-family-sans-serif: "Mukta", sans-serif;
49
50 $font-weight-light: 200;
51 $font-weight-normal: 400;
52 $font-weight-bold: 700;
53
54 // Typo
55 $font-size-base: 1.125rem;
56 $lead-font-size: 1.5rem;
57 $small-font-size: 87.5%;
58
59 $line-height-base: 1.5;
60
61 // Headings
62 $headings-font-weight: 500;
63 $headings-line-height: 1.15;
64 $headings-margin-bottom: 1.25rem;
65
66 $h1-font-size: 3rem;
67 $h2-font-size: 2.5rem;
68 $h3-font-size: 2.25rem;
69 $h4-font-size: 2rem;
70 $h5-font-size: 1.5rem;
71 $h6-font-size: 1.25rem;
72
73 $display1-size: 4rem;
74
75 // Links
76 $link-color: $primary;
77
78 // Navbar
79 $navbar-brand-font-size: 3rem;
80 $navbar-brand-height: 5rem;
81 $navbar-brand-padding-y: 1rem;
82 $navbar-height: $navbar-brand-height + ($navbar-brand-padding-y * 2);
83
84 $navbar-nav-link-padding-x: 1rem;
85
86 // Buttons
87 $btn-border-width: 3px;
88 $btn-padding-x: 1.5rem;
89 $btn-padding-y: .5rem;
90
91 // Progress
92 $progress-height: 1rem * $line-height-base;
93
94 // Breadcrumbs
95 $breadcrumb-bg: white;