mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-10 04:21:07 +00:00
changed the way relief colors are calculated
This commit is contained in:
parent
c52aee8169
commit
7c09d3f566
5 changed files with 699 additions and 696 deletions
|
|
@ -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%);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue