Created
May 9, 2026 03:33
-
-
Save dezinezync/5e47b0dbb67e95ba1981550ff591a19c to your computer and use it in GitHub Desktop.
AppStoreConnect Dark Mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* App Store Connect Basic Dark Mode Override */ | |
| :root { | |
| color-scheme: light dark; | |
| } | |
| @media (prefers-color-scheme: dark) { | |
| html { | |
| filter: invert(1) hue-rotate(180deg); | |
| background-color: Canvas; | |
| } | |
| /* Re-invert images and charts so they look normal */ | |
| img, | |
| canvas, | |
| video, | |
| .chart-container, | |
| [style*="background-image"] { | |
| filter: invert(1) hue-rotate(180deg); | |
| } | |
| .idyRmo { | |
| background-color: color-mix(Canvas, CanvasText 8%) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment