macOS colors are now vars

This commit is contained in:
booploops 2022-06-09 07:23:11 -07:00
parent 1d3da6e2fd
commit bae25c5c47
2 changed files with 3 additions and 2 deletions

View file

@ -17,4 +17,5 @@
--ciderColor: @ciderColor; --ciderColor: @ciderColor;
--appOpacity: @appOpacity; --appOpacity: @appOpacity;
--transparencyRate: @transparencyRate; --transparencyRate: @transparencyRate;
--macOSChromeColor: rgb(14 14 14 / 32%);
} }

View file

@ -15,7 +15,7 @@ body[platform="darwin"] {
} }
.app-chrome { .app-chrome {
background-color: rgb(14 14 14 / 60%); background-color: var(--macOSChromeColor);
} }
&.twopanel { &.twopanel {
@ -30,7 +30,7 @@ body[platform="darwin"] {
} }
.app-chrome.chrome-bottom { .app-chrome.chrome-bottom {
background-color: rgb(14 14 14 / 60%); background-color: var(--macOSChromeColor);
} }
} }
} }