diff --git a/README.md b/README.md index 9ca254b..21d13ed 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ -# userstyles +# Siina's userstyles + +My userstyles for Stylus -My userstyles for Stylus \ No newline at end of file diff --git a/gitea-dark-compliments.styl b/gitea-dark-compliments.styl new file mode 100644 index 0000000..2d9dbec --- /dev/null +++ b/gitea-dark-compliments.styl @@ -0,0 +1,21 @@ +/* ==UserStyle== +@name Gitea Dark Compliments +@namespace codeberg.org/siina/userstyles +@description Simple Gitea changes to augment dark themes +@author Siina Mashek +@homepageURL https://codeberg.org/siina/userstyles +@supportURL https://codeberg.org/siina/userstyles/issues +@updateURL https://codeberg.org/siina/userstyles/raw/branch/main/gitea-dark-compliments.styl +@version 1.0.0 +@license Unlicense +==/UserStyle== */ +@-moz-document domain("codeberg.org") { + * { + /* Change the primary colour from green to a grey */ + --color-primary: var(--color-text-light-2); + } + #navbar { + /* Needs !important because gitea themes use it */ + background-color: var(--color-secondary) !important; + } +}