mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-07 07:53:07 +00:00
18 lines
593 B
CSS
18 lines
593 B
CSS
![]() |
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||
|
|
||
|
/* Icons light/dark fix coloring hack filters */
|
||
|
:root {
|
||
|
--gnome-convert-icon-to-symbolic-hack-filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%) brightness(85%) invert(100%);
|
||
|
}
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
:root {
|
||
|
--gnome-convert-icon-to-symbolic-hack-filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%) brightness(85%);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Make tab icons look kinda like symbolic icons */
|
||
|
tab .tab-icon-image {
|
||
|
filter: var(--gnome-convert-icon-to-symbolic-hack-filter);
|
||
|
}
|
||
|
|