Add grayscale image filter

Hat tip to @pheus. Thanks!

I did end up leaving the filter function arguments as the Sass
processor complains when you try calling a filter function without
an argument. :/
This commit is contained in:
Jason Novinger 2025-04-29 11:53:12 -05:00
parent 32a4d743ee
commit e2e42acf42
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -84,6 +84,6 @@ img.plugin-icon {
body[data-bs-theme=dark] {
// Assuming icon is black/white line art, invert it and tone down brightness
img.plugin-icon {
filter: invert(100%) brightness(80%);
filter: grayscale(100%) invert(100%) brightness(80%);
}
}