Skip to content

Instantly share code, notes, and snippets.

@ItsShamed
Created February 26, 2024 17:04
Show Gist options
  • Select an option

  • Save ItsShamed/c848b69abc46f0b23c0159cd3e587d75 to your computer and use it in GitHub Desktop.

Select an option

Save ItsShamed/c848b69abc46f0b23c0159cd3e587d75 to your computer and use it in GitHub Desktop.
Wooclap Colour Overrides
/* ==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