1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00
keeweb/app/styles/base/_theme-vars-support.scss

15 lines
378 B
SCSS
Raw Normal View History

2017-04-27 09:40:18 +02:00
@function text-contrast-color($bg, $lshift, $th-bg, $th-text) {
2019-08-16 23:05:39 +02:00
@if (lightness($bg) - $lshift >= lightness($th-bg)) {
@return $th-text;
}
@return $th-bg;
2017-04-27 09:40:18 +02:00
}
@function lightness-alpha($color, $lightness, $alpha) {
2019-08-16 23:05:39 +02:00
@return adjust_color($color, $lightness: $lightness, $alpha: $alpha);
2017-04-27 09:40:18 +02:00
}
@function semi-mute-percent($percent) {
2019-08-16 23:05:39 +02:00
@return $percent / 2;
2017-04-27 09:40:18 +02:00
}