mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
This adds a feature and setting to invert images when Dark mode is enabled. Fixes https://github.com/philips/supernote-obsidian-plugin/issues/23
15 lines
No EOL
282 B
CSS
15 lines
No EOL
282 B
CSS
.theme-dark img[alt*="supernote-invert-dark"] {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.theme-light img[alt*="supernote-invert-light"] {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.theme-dark img.supernote-invert-dark {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.theme-light img.supernote-invert-light {
|
|
filter: invert(1);
|
|
} |