Merge branch 'master' into new-schemes

This commit is contained in:
Néstor Andreu 2023-03-13 20:19:50 +01:00
commit 51cdea0d13
5 changed files with 17 additions and 14 deletions

View file

@ -4,10 +4,13 @@
@function highlight_border ($c) {
@return lighten($c, 15%);
$mixValue: lightness($c);
@return mix(white,$c, $mixValue);
}
@function shadow_border ($c) {
@return darken($c, 10%);
$mixValue: (100% - lightness($c)) / 2;
@return mix(black,$c, $mixValue);//darken($c, 10%);
}