]> git.ipfire.org Git - ipfire.org.git/blob - src/scss/_variables.scss
CSS: Use rounded corners for buttons, etc.
[ipfire.org.git] / src / scss / _variables.scss
1 /*
2 Colours
3 */
4 $black: #000000;
5 $white: #ffffff;
6
7 // Grays
8 $gray-400: #6a788b;
9 $gray-800: #31353c;
10
11 $red: #ee2e31;
12 $yellow: #e7e247;
13 $cyan: #32ffdc;
14
15 // Lightning Wire Labs colour
16 $lwl: #4b0082;
17
18 // Theme
19 $primary: $red;
20 $secondary: $gray-400;
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
31 // Breakpoints
32 $grid-breakpoints: (
33 xs: 0,
34 sm: 600px,
35 md: 768px,
36 lg: 1024px,
37 xl: 1280px
38 );
39
40 $grid-gutter-width: 24px;
41
42 $border-radius: 5px;
43 $border-radius-lg: 5px;
44
45 // Fonts
46 $font-family-sans-serif: "Mukta", sans-serif;
47
48 $font-weight-light: 200;
49 $font-weight-normal: 400;
50 $font-weight-bold: 700;
51
52 // Typo
53 $font-size-base: 1rem;
54 $lead-font-size: 1.5rem;
55 $small-font-size: 87.5%;
56
57 // Headings
58 $headings-font-weight: 500;
59 $headings-line-height: 1.5;
60 $headings-margin-bottom: 1.5rem;
61 $headings-color: $white;
62
63 $h1-font-size: 3rem;
64 $h2-font-size: 2.5rem;
65 $h3-font-size: 2.25rem;
66 $h4-font-size: 2rem;
67 $h5-font-size: 1.5rem;
68 $h6-font-size: 1.25rem;
69
70 $display1-size: 7.5rem;
71
72 // Links
73 $link-color: $primary;
74
75 // Navbar
76 $navbar-brand-font-size: 36px;
77 $navbar-brand-height: 32px;
78
79 $nav-link-height: 24px;
80 $navbar-nav-link-padding-x: 16px;
81
82 $navbar-padding-y: 1.1rem;
83
84 // Input
85 $input-btn-padding-x: 1rem;
86 $input-btn-padding-y: .5rem;
87
88 // Buttons
89 $btn-border-width: 2px;