KulySocc237 downloadsA warm, high-contrast theme for Obsidian with an amber accent — dark and light modes.
A warm, high-contrast theme for Obsidian — near-black backgrounds, an amber accent, and a distinct red for emphasis. Ships with both dark and light modes.

Bumblebee in your vault's .obsidian/themes/ directory.manifest.json and theme.css from the latest release into that folder.With the Style Settings plugin enabled, open Settings → Style Settings → Bumblebee to adjust callouts, header underlines, header colors, and Kanban accents.
Bumblebee is a single-file CSS theme — theme.css is the artefact, no build step.
Local iteration. Symlink the repo into a vault's themes folder, then enable Bumblebee under Settings → Appearance → Themes. Reload Obsidian (or use the Hot Reload community plugin) when you save:
TARGET="/path/to/vault/.obsidian/themes/Bumblebee"
rm -rf "$TARGET" && ln -s "$(pwd)" "$TARGET"
The rm -rf is needed if Bumblebee was previously installed from the community themes browser — ln -sfn alone leaves the existing real directory in place and silently creates a nested symlink inside it.
Releasing. Bump the version field in manifest.json, commit, then push a bare-semver tag:
git tag 1.0.2 && git push origin main 1.0.2
The workflow at .github/workflows/release.yml asserts the tag matches manifest.json, then publishes a GitHub Release with manifest.json and theme.css attached. Tags must be bare semver — no v prefix — as required by Obsidian's community-themes index.
Design decisions live in CONTEXT.md and docs/adr/.
Bumblebee is a recolor of GitHub Theme by @krios2146, used under the MIT License. The structural CSS and Style Settings scaffolding are derived from that theme; the Bumblebee palette and the design decisions behind it are documented in CONTEXT.md and docs/adr/.
MIT. Copyright © 2023 Vladimir Kidyaev (original theme) and © 2026 KulySocc (recolor).