Partially fixes issue #3256 by updating SASS syntax in main SCSS files. To fully address the issue, FontAwesome should be updated to `v7.x` and Tabler to `v3.30` or higher (see Tabler fix [here](https://github.com/tabler/tabler-icons/pull/1256)), where the SCSS has been fixed. --------- Signed-off-by: George Araújo <george.gcac@gmail.com> Co-authored-by: George Araújo <george.gcac@gmail.com>
209 lines
5.5 KiB
SCSS
209 lines
5.5 KiB
SCSS
/*******************************************************************************
|
|
* Themes
|
|
******************************************************************************/
|
|
@use "variables" as v;
|
|
@use "sass:color";
|
|
|
|
:root {
|
|
color-scheme: light;
|
|
--global-bg-color: #{v.$white-color};
|
|
--global-code-bg-color: #{v.$code-bg-color-light};
|
|
--global-text-color: #{v.$black-color};
|
|
--global-text-color-light: #{v.$grey-color};
|
|
--global-theme-color: #{v.$purple-color};
|
|
--global-hover-color: #{v.$purple-color};
|
|
--global-hover-text-color: #{v.$white-color};
|
|
--global-footer-bg-color: #{v.$grey-color-dark};
|
|
--global-footer-text-color: #{v.$grey-color-light};
|
|
--global-footer-link-color: #{v.$white-color};
|
|
--global-distill-app-color: #{v.$grey-color};
|
|
--global-divider-color: rgba(0, 0, 0, 0.1);
|
|
--global-card-bg-color: #{v.$white-color};
|
|
--global-highlight-color: #{v.$red-color-dark};
|
|
--global-back-to-top-bg-color: rgba(
|
|
#{color.channel(v.$black-color, "red", v.$space: rgb)},
|
|
#{color.channel(v.$black-color, "green", v.$space: rgb)},
|
|
#{color.channel(v.$black-color, "blue", v.$space: rgb)},
|
|
0.4
|
|
);
|
|
--global-back-to-top-text-color: #{v.$white-color};
|
|
--global-newsletter-bg-color: #{v.$white-color};
|
|
--global-newsletter-text-color: #{v.$black-color};
|
|
|
|
--global-tip-block: #42b983;
|
|
--global-tip-block-bg: #e2f5ec;
|
|
--global-tip-block-text: #215d42;
|
|
--global-tip-block-title: #359469;
|
|
--global-warning-block: #e7c000;
|
|
--global-warning-block-bg: #fff8d8;
|
|
--global-warning-block-text: #6b5900;
|
|
--global-warning-block-title: #b29400;
|
|
--global-danger-block: #c00;
|
|
--global-danger-block-bg: #ffe0e0;
|
|
--global-danger-block-text: #600;
|
|
--global-danger-block-title: #c00;
|
|
|
|
#light-toggle-system {
|
|
display: inline-block;
|
|
}
|
|
|
|
#light-toggle-dark {
|
|
display: none;
|
|
}
|
|
|
|
#light-toggle-light {
|
|
display: none;
|
|
}
|
|
|
|
.only-light {
|
|
display: block;
|
|
}
|
|
|
|
.only-dark {
|
|
display: none;
|
|
}
|
|
|
|
#back-to-top {
|
|
color: var(--global-back-to-top-text-color);
|
|
background: var(--global-back-to-top-bg-color);
|
|
bottom: v.$back-to-top-bottom;
|
|
right: v.$back-to-top-right;
|
|
height: v.$back-to-top-height;
|
|
width: v.$back-to-top-width;
|
|
z-index: v.$back-to-top-z-index;
|
|
}
|
|
}
|
|
|
|
html[data-theme="dark"] {
|
|
color-scheme: dark;
|
|
--global-bg-color: #{v.$grey-color-dark};
|
|
--global-code-bg-color: #{v.$code-bg-color-dark};
|
|
--global-text-color: #{v.$grey-color-light};
|
|
--global-text-color-light: #{v.$grey-color};
|
|
--global-theme-color: #{v.$cyan-color};
|
|
--global-hover-color: #{v.$cyan-color};
|
|
--global-hover-text-color: #{v.$white-color};
|
|
--global-footer-bg-color: #{v.$grey-color-light};
|
|
--global-footer-text-color: #{v.$grey-color-dark};
|
|
--global-footer-link-color: #{v.$black-color};
|
|
--global-distill-app-color: #{v.$grey-color-light};
|
|
--global-divider-color: #424246;
|
|
--global-card-bg-color: #{v.$grey-900};
|
|
--global-back-to-top-bg-color: rgba(
|
|
#{color.channel(v.$white-color, "red", v.$space: rgb)},
|
|
#{color.channel(v.$white-color, "green", v.$space: rgb)},
|
|
#{color.channel(v.$white-color, "blue", v.$space: rgb)},
|
|
0.5
|
|
);
|
|
--global-back-to-top-text-color: #{v.$black-color};
|
|
--global-newsletter-bg-color: #{v.$grey-color-light};
|
|
--global-newsletter-text-color: #{v.$grey-color-dark};
|
|
|
|
--global-tip-block: #42b983;
|
|
--global-tip-block-bg: #215d42;
|
|
--global-tip-block-text: #beffe2;
|
|
--global-tip-block-title: #e2f5ec;
|
|
--global-warning-block: #e7c000;
|
|
--global-warning-block-bg: #6b5900;
|
|
--global-warning-block-text: #fff2af;
|
|
--global-warning-block-title: #fff8d8;
|
|
--global-danger-block: #c00;
|
|
--global-danger-block-bg: #600;
|
|
--global-danger-block-text: #ffb9b9;
|
|
--global-danger-block-title: #ffe0e0;
|
|
|
|
.only-light {
|
|
display: none;
|
|
}
|
|
|
|
.only-dark {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
html[data-theme-setting="dark"] {
|
|
#light-toggle-system {
|
|
display: none;
|
|
}
|
|
|
|
#light-toggle-dark {
|
|
display: inline-block;
|
|
}
|
|
|
|
#light-toggle-light {
|
|
display: none;
|
|
}
|
|
|
|
#back-to-top {
|
|
color: var(--global-back-to-top-text-color);
|
|
background: var(--global-back-to-top-bg-color);
|
|
}
|
|
}
|
|
|
|
html[data-theme-setting="light"] {
|
|
#light-toggle-system {
|
|
display: none;
|
|
}
|
|
|
|
#light-toggle-dark {
|
|
display: none;
|
|
}
|
|
|
|
#light-toggle-light {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.fa-half-sun-moon {
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
--fa-font: var(--fa-font-solid);
|
|
speak: none;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
width: 1em;
|
|
height: 1em;
|
|
}
|
|
|
|
.fa-half-sun-moon::before,
|
|
.fa-half-sun-moon::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
top: -0.5px;
|
|
bottom: -0.5px;
|
|
text-align: center;
|
|
line-height: 1em;
|
|
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
|
font: var(--fa-font);
|
|
}
|
|
|
|
/* Left half: MOON */
|
|
.fa-half-sun-moon::before {
|
|
content: "\f111";
|
|
color: var(--global-text-color);
|
|
clip-path: polygon(0 0, calc(50% - 0.5px) 0, calc(50% - 0.5px) 100%, 0 100%);
|
|
}
|
|
|
|
/* Right half: SUN */
|
|
.fa-half-sun-moon::after {
|
|
content: "\f185";
|
|
color: var(--global-text-color);
|
|
clip-path: polygon(calc(50% + 0.5px) 0, 100% 0, 100% 100%, calc(50% + 0.5px) 100%);
|
|
right: -1.5px; /* slight overflow to avoid right-edge clipping */
|
|
transform: translateX(-1px); /* visually re-center the sun half */
|
|
}
|
|
|
|
#light-toggle:hover .fa-half-sun-moon::before {
|
|
color: var(--global-theme-color);
|
|
}
|
|
|
|
#light-toggle:hover .fa-half-sun-moon::after {
|
|
color: var(--global-theme-color);
|
|
}
|