mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-17 04:53:49 +00:00
Added proper color-schema to root element based on selected theme
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
:root {
|
:root {
|
||||||
scroll-behavior: auto;
|
scroll-behavior: auto;
|
||||||
|
color-scheme: var(--color-scheme);
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ $darkBorderInputColor: $darkBorderColor;
|
|||||||
$darkTableHighlightColor: $darkBorderColor;
|
$darkTableHighlightColor: $darkBorderColor;
|
||||||
|
|
||||||
html:not([data-theme='dark']) {
|
html:not([data-theme='dark']) {
|
||||||
|
--color-scheme: initial;
|
||||||
--primary-color: #{$lightPrimaryColor};
|
--primary-color: #{$lightPrimaryColor};
|
||||||
--primary-color-alfa: #{$lightPrimaryColorAlfa};
|
--primary-color-alfa: #{$lightPrimaryColorAlfa};
|
||||||
--secondary-color: #{$lightSecondaryColor};
|
--secondary-color: #{$lightSecondaryColor};
|
||||||
@@ -48,6 +49,7 @@ html:not([data-theme='dark']) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
html[data-theme='dark'] {
|
html[data-theme='dark'] {
|
||||||
|
--color-scheme: dark;
|
||||||
--primary-color: #{$darkPrimaryColor};
|
--primary-color: #{$darkPrimaryColor};
|
||||||
--primary-color-alfa: #{$darkPrimaryColorAlfa};
|
--primary-color-alfa: #{$darkPrimaryColorAlfa};
|
||||||
--secondary-color: #{$darkSecondaryColor};
|
--secondary-color: #{$darkSecondaryColor};
|
||||||
|
|||||||
Reference in New Issue
Block a user