feat(themes): add octo gitea theme with light, dark, and auto variants

- add theme-octo-dark.css with deep black background and blue accent
- add theme-octo-light.css with white background and blue accent
- add theme-octo-auto.css that switches between light/dark via prefers-color-scheme
- update README with installation instructions, variant descriptions, and customization notes
This commit is contained in:
2026-04-28 16:03:10 -04:00
parent 4409d90110
commit a1a8a149ca
4 changed files with 659 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
@import "./theme-octo-light.css" (prefers-color-scheme: light);
@import "./theme-octo-dark.css" (prefers-color-scheme: dark);
gitea-theme-meta-info {
--theme-display-name: "Octo Auto";
--theme-color-scheme: "auto";
}