We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaaac14 commit a25c74eCopy full SHA for a25c74e
src/css/custom.css
@@ -28,3 +28,15 @@
28
--ifm-color-primary-lightest: #4fddbf;
29
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
30
}
31
+
32
+/* Invert all images on the page in dark mode */
33
+[data-theme='dark'] img {
34
+ filter: invert(1) hue-rotate(180deg);
35
+}
36
37
+/* This is a crucial addition to prevent issues with other images */
38
+/* The filter should not be applied to logos, favicons, or other assets */
39
+[data-theme='dark'] .navbar__logo img,
40
+[data-theme='dark'] .footer img {
41
+ filter: none;
42
0 commit comments