SMK Family style & branding kit: logo, palette, typography, per-app playbook

This commit is contained in:
2026-08-15 21:37:48 +00:00
commit 7a31c7ed8d
20 changed files with 475 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Uptime Kuma branding — SMK
## What's supported
- Custom theme CSS: Settings → Appearance → Custom CSS (or drop theme in `/app/data/themes/`).
- Custom logo: replace `config/icon.svg` in the Uptime Kuma data dir.
## Assets
- `smk-kuma.css` — dark SMK theme CSS (paste into Settings → Appearance → Custom CSS).
- Logo: `../../assets/icon.svg`.
## Apply (cosmetic only)
1. Settings → Appearance → check "Dark" theme, paste `smk-kuma.css` into Custom CSS box → Save.
2. Replace logo: copy `assets/icon.svg` to Kuma's `config/icon.svg` (or via compose bind mount).
No monitors, notifications, or auth configs are touched.
+18
View File
@@ -0,0 +1,18 @@
/* SMK Family — Uptime Kuma dark theme
Paste into Settings → Appearance → Custom CSS */
:root {
--color-background: #14161B;
--color-card: #232838;
--color-card-hover: #2A3040;
--color-text: #F5F0E6;
--color-text-secondary: #B9B2A6;
--color-border: #333A4A;
--color-primary: #F2A65A;
--color-primary-hover: #E8755D;
--color-success: #A3C585;
--color-danger: #D98A8A;
}
body {
background: var(--color-background) !important;
color: var(--color-text) !important;
}