You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CSS custom properties are wildly popular, and have been supported by
every major browser (except Internet Explorer, but you're not supposed
to use it anymore, even Microsoft says so in
https://blogs.windows.com/windowsexperience/2021/05/19/the-future-of-internet-explorer-on-windows-10-is-in-microsoft-edge/
because Internet Explorer has been unsupported since June 15, 2022).
There is a slight complication here, though: We use the `darken()` and
`lighten()` functions extensively, and they are SASS preprocessor
functions, i.e. they are evaluated at compile time, while the actual CSS
custom properties are evaluated in the browser.
Therefore, we need to move every `darken()`/`lighten()` call into an
individual CSS custom property that is evaluated at compile time.
This is the first step in preparation for supporting dark mode on
https://git-scm.com/.
Signed-off-by: Johannes Schindelin <[email protected]>
0 commit comments