mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
c508a7a2b3
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
26 lines
557 B
SCSS
26 lines
557 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
|
|
body.dark {
|
|
@import "variables.dark";
|
|
|
|
/* redefine theme color variables */
|
|
@each $color, $value in $theme-colors {
|
|
--#{$prefix}#{$color}: #{$value};
|
|
}
|
|
|
|
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
|
|
|
|
@each $color, $value in $theme-colors-rgb {
|
|
--#{$prefix}#{$color}-rgb: #{$value};
|
|
}
|
|
|
|
--#{$prefix}body-color: #{$body-color};
|
|
--#{$prefix}body-bg: #{$body-bg};
|
|
|
|
@import "~bootstrap";
|
|
}
|