ds4/scss/components/dice/_dice_total.scss

27 lines
578 B
SCSS
Raw Normal View History

2021-06-26 22:02:00 +02:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
2022-01-21 03:22:17 +01:00
@use "../../utils/colors";
// Needs to be nested in .dice-roll to win against foundry's style.css with respect to specificity
.dice-roll .ds4-dice-total {
2023-07-10 22:23:13 +02:00
@mixin color-filter($rotation) {
filter: sepia(0.5) hue-rotate($rotation);
}
2023-07-10 22:23:13 +02:00
&--coup {
@include color-filter(60deg);
background-color: colors.$c-coup-bg;
color: colors.$c-coup;
}
2023-07-10 22:23:13 +02:00
&--fumble {
@include color-filter(-60deg);
background-color: colors.$c-fumble-bg;
color: colors.$c-fumble;
}
}