]> Untitled Git - lemmy-ui.git/blob - src/assets/css/themes/_variables.darkly.scss
fix: Fix too-intense hr color between posts
[lemmy-ui.git] / src / assets / css / themes / _variables.darkly.scss
1 // Colors
2 $white: #fff;
3 $gray-200: #ebebeb;
4 $gray-300: #dee2e6;
5 $gray-500: #adb5bd;
6 $gray-600: #888;
7 $gray-700: #444;
8 $gray-800: #303030;
9 $gray-900: #222;
10
11 // Writing these maps is necessary for Bootstrap theming:
12 // https://getbootstrap.com/docs/4.6/getting-started/introduction/
13 $grays: (
14   "gray-200": $gray-200,
15   "gray-600": $gray-600,
16   "gray-700": $gray-700,
17   "gray-800": $gray-800,
18   "gray-900": $gray-900,
19 );
20
21 $blue: #375a7f;
22 $red: #e74c3c;
23 $yellow: #f39c12;
24 $green: #00bc8c;
25 $cyan: #3498db;
26
27 // Writing these maps is necessary for Bootstrap theming:
28 // https://getbootstrap.com/docs/4.6/getting-started/introduction/
29 $colors: (
30   "blue": $blue,
31   "red": $red,
32   "yellow": $yellow,
33   "green": $green,
34   "cyan": $cyan,
35 );
36
37 $primary: $green;
38 $secondary: $gray-700;
39 $success: $green;
40 $dark: $gray-300;
41
42 // Writing these maps is necessary for Bootstrap theming:
43 // https://getbootstrap.com/docs/4.6/getting-started/introduction/
44 $theme-colors: (
45   "primary": $primary,
46   "secondary": $secondary,
47   "dark": $dark,
48 );
49
50 $body-color: $gray-300;
51 $body-bg: $gray-900;
52 $link-color: $success;
53 $mark-bg: #333;
54 $text-muted: $gray-600;
55 $yiq-contrasted-threshold: 175;
56
57 $font-family-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI",
58   Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
59   "Segoe UI Emoji", "Segoe UI Symbol";
60 $font-size-base: 0.9375rem;
61 $h1-font-size: 3rem;
62 $h2-font-size: 2.5rem;
63 $h3-font-size: 2rem;
64
65 $card-cap-bg: $gray-700;
66 $card-bg: $gray-800;
67
68 $navbar-padding-y: 1rem;
69 $navbar-dark-color: rgba($white, 0.6);
70 $navbar-dark-hover-color: $white;
71 $navbar-light-color: rgba($white, 0.6);
72 $navbar-light-hover-color: $white;
73 $navbar-light-active-color: $white;
74 $navbar-light-toggler-border-color: rgba($gray-900, 0.1);
75 $navbar-light-brand-color: $white;
76 $navbar-light-brand-hover-color: $navbar-light-brand-color;
77
78 $nav-link-padding-x: 2rem;
79 $nav-link-disabled-color: $gray-500;
80
81 $nav-tabs-border-color: $gray-700;
82 $nav-tabs-link-hover-border-color: $nav-tabs-border-color $nav-tabs-border-color
83   transparent;
84 $nav-tabs-link-active-color: $white;
85 $nav-tabs-link-active-border-color: $nav-tabs-border-color
86   $nav-tabs-border-color transparent;
87
88 $input-bg: $gray-700;
89 $input-color: $white;
90 $input-disabled-bg: darken($gray-700, 10%);
91 $input-border-color: $body-bg;
92 $input-group-addon-color: $gray-500;
93 $input-group-addon-bg: $gray-700;
94
95 $hr-border-color: rgba($body-color, 0.25);
96
97 $table-accent-bg: $gray-800;
98 $table-border-color: $gray-700;
99
100 $custom-file-color: $gray-500;
101 $custom-file-border-color: $body-bg;
102
103 $dropdown-bg: $gray-900;
104 $dropdown-border-color: $gray-700;
105 $dropdown-divider-bg: $gray-700;
106 $dropdown-link-color: $white;
107 $dropdown-link-hover-color: $white;
108 $dropdown-link-hover-bg: $primary;
109
110 $pagination-color: $white;
111 $pagination-bg: $success;
112 $pagination-border-width: 0;
113 $pagination-border-color: transparent;
114 $pagination-hover-color: $white;
115 $pagination-hover-bg: lighten($success, 10%);
116 $pagination-hover-border-color: transparent;
117 $pagination-active-bg: $pagination-hover-bg;
118 $pagination-active-border-color: transparent;
119 $pagination-disabled-color: $white;
120 $pagination-disabled-bg: darken($success, 15%);
121 $pagination-disabled-border-color: transparent;
122
123 $jumbotron-bg: $gray-800;
124 $popover-bg: $gray-800;
125 $popover-header-bg: $gray-700;
126 $toast-background-color: $gray-700;
127 $toast-header-background-color: $gray-800;
128 $modal-content-bg: $gray-800;
129 $modal-content-border-color: $gray-700;
130 $modal-header-border-color: $gray-700;
131 $progress-bg: $gray-700;
132 $list-group-bg: $gray-800;
133 $list-group-border-color: $gray-700;
134 $list-group-hover-bg: $gray-700;
135 $breadcrumb-bg: $gray-700;
136 $close-color: $white;
137 $close-text-shadow: none;
138 $pre-color: inherit;
139 $custom-select-bg: $gray-700;
140 $custom-select-color: $white;
141 $light: $gray-800;