Created
February 26, 2024 17:04
-
-
Save ItsShamed/c848b69abc46f0b23c0159cd3e587d75 to your computer and use it in GitHub Desktop.
Wooclap Colour Overrides
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
| /* ==UserStyle== | |
| @name Wooclap Colour Overrides | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description Simple customisable CSS for Wooclap | |
| @author tsrk. | |
| @license MIT | |
| @preprocessor stylus | |
| @var color globalThemeColor "Global Theme Color" #005DFF | |
| ==/UserStyle== */ | |
| @-moz-document url-prefix("https://app.wooclap.com/") { | |
| body { | |
| --public-theme-action-color: globalThemeColor !important; | |
| } | |
| @media (prefers-color-scheme: dark) { | |
| body { | |
| background-color: darken(globalThemeColor, 90%) !important | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| color: #f3f7ff; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment