mirror of
https://github.com/perinchiang/obsidian-misty-theme.git
synced 2026-07-22 04:40:25 +00:00
feat: initial release of iClaude Obsidian theme
- Light & dark mode with warm earth tones - Claude-style sidebar with segmented control - Rich code highlighting (TS/Python/Shell/JSON) - Polished callouts, tables, and search UI - MIT licensed
This commit is contained in:
commit
4b0ae295d6
4 changed files with 1476 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.DS_Store
|
||||
node_modules/
|
||||
*.zip
|
||||
59
README.md
Normal file
59
README.md
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# iClaude for Obsidian
|
||||
|
||||
A warm, refined Obsidian theme inspired by Claude's ivory & charcoal palette. Clean, minimal, and comfortable for long reading sessions.
|
||||
|
||||
## Features
|
||||
|
||||
- 🌓 **Light & Dark modes** — Seamless switching with carefully tuned palettes
|
||||
- 🎨 **Warm earth tones** — Terracotta accents, ivory backgrounds, charcoal text
|
||||
- 📝 **Distinct typography** — Charter/Songti SC for body, JetBrains Mono for code
|
||||
- 💻 **Rich code highlighting** — Distinct colors for keywords, strings, functions, comments
|
||||
- 📂 **Claude-style sidebar** — Segmented control with custom icons
|
||||
- 🔍 **Polished search** — Focus-ring border with accent glow
|
||||
- 📊 **Clean tables & callouts** — Rounded corners, soft shadows, warm borders
|
||||
|
||||
## Screenshots
|
||||
|
||||
| Light Mode | Dark Mode |
|
||||
|:----------:|:---------:|
|
||||
| *#FDFDFC editor / #C66344 accent* | *#1B1B1A editor / #D97757 accent* |
|
||||
|
||||
## Installation
|
||||
|
||||
### From Obsidian Community Themes
|
||||
*Coming soon*
|
||||
|
||||
### Manual
|
||||
1. Download `theme.css` and `manifest.json`
|
||||
2. Copy to `.obsidian/themes/iclaude/` in your vault
|
||||
3. Settings → Appearance → Themes → select **iClaude**
|
||||
|
||||
## Color Palette
|
||||
|
||||
### Light Mode
|
||||
| Element | Color |
|
||||
|---------|-------|
|
||||
| Editor Background | `#FDFDFC` |
|
||||
| Sidebar Background | `#FCFCFC` |
|
||||
| Accent | `#C66344` |
|
||||
| Text | `#49443F` |
|
||||
| Code Background | `#FEFDFE` |
|
||||
|
||||
### Dark Mode
|
||||
| Element | Color |
|
||||
|---------|-------|
|
||||
| Editor Background | `#1B1B1A` |
|
||||
| Sidebar Background | `#222222` |
|
||||
| Accent | `#D97757` |
|
||||
| Text | `#E9E4DC` |
|
||||
| Code Background | `#222221` |
|
||||
|
||||
## Credits
|
||||
|
||||
- Inspired by Claude's warm color palette
|
||||
- Built on the Claude Warm theme foundation
|
||||
- No fonts, images, or assets from Anthropic or Apple are included
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
6
manifest.json
Normal file
6
manifest.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"name": "iClaude",
|
||||
"version": "1.0.2",
|
||||
"minAppVersion": "1.12.0",
|
||||
"author": "Patrick"
|
||||
}
|
||||
Loading…
Reference in a new issue