A terminal-inspired dark theme for your writing tools
Tokyo Night palette meets terminal aesthetics. Available for both Obsidian and Typora editors.
A powerful knowledge base that works on top of a local folder of plain text Markdown files. Perfect for building your second brain with linked notes and graph view.
A terminal-inspired dark theme for Obsidian. Features the Tokyo Night color palette with meticulous attention to detail.
const greeting = "Hello, OpenCode!";
const colors = {
purple: "#d19af8",
gold: "#e5a030",
cyan: "#5fd4bb"
};
// Terminal aesthetics meet knowledge management
console.log(`Using ${colors.purple} for headings`);
| Feature | Status | Quality |
|---|---|---|
| Syntax Highlighting | Complete | ★★★★★ |
| Dark Mode | Complete | ★★★★★ |
| Graph View | Complete | ★★★★★ |
"The best theme for developers who build their second brain."
A terminal-inspired dark theme for Typora, ported from the popular Obsidian theme. Features the Tokyo Night color palette with meticulous attention to detail.
const greeting = "Hello, OpenCode!";
const colors = {
purple: "#d19af8",
gold: "#e5a030",
cyan: "#5fd4bb"
};
// Terminal aesthetics meet writing elegance
console.log(`Using ${colors.purple} for headings`);
| Feature | Status | Quality |
|---|---|---|
| Syntax Highlighting | Complete | ★★★★★ |
| Dark Mode | Complete | ★★★★★ |
| Source Mode | Complete | ★★★★★ |
"The best theme for developers who write documentation."
Carefully curated dark color scheme inspired by Tokyo Night. Easy on the eyes during long writing sessions.
Optimized syntax highlighting with JetBrains Mono. Every code block looks like it belongs in your IDE.
Sidebars, modals, menus, source mode — every corner of your editor is styled with consistency.
Clean light export for PDF and print. Professional output whether digital or physical.
Get the theme from GitHub Releases.
Go to Settings → Appearance → Themes → Manage.
Click Install on OpenCode theme, then Use to activate it.
Your Obsidian now has a fresh terminal-inspired look. Start taking notes in style.
Get opencode.css from the GitHub repository.
In Typora: Preferences → Appearance → Open Theme Folder
Place opencode.css into the theme folder.
Restart Typora and select OpenCode from Preferences → Appearance → Theme.
Paste this into your AI coding assistant (Claude, Cursor, Copilot, etc.) to install both themes automatically:
# Obsidian — install to vault theme folder
VAULT="$(find ~/Library/Application\ Support/obsidian -name '.obsidian' -maxdepth 3 2>/dev/null | head -1)" && \
mkdir -p "$VAULT/themes/OpenCode" && \
curl -sL https://raw.githubusercontent.com/nxxxsooo/obsidian-opencode-theme/main/theme.css -o "$VAULT/themes/OpenCode/theme.css" && \
curl -sL https://raw.githubusercontent.com/nxxxsooo/obsidian-opencode-theme/main/manifest.json -o "$VAULT/themes/OpenCode/manifest.json" && \
echo "✅ Obsidian OpenCode theme installed"
# Typora — install to theme folder
TYPORA_THEMES="$(find ~/Library/Application\ Support/abnerworks.Typora/themes -maxdepth 0 2>/dev/null || echo '')" && \
[ -n "$TYPORA_THEMES" ] && \
curl -sL https://raw.githubusercontent.com/nxxxsooo/opencode-themes/main/typora/opencode.css -o "$TYPORA_THEMES/opencode.css" && \
echo "✅ Typora OpenCode theme installed"
macOS paths shown. On Linux/Windows, adjust the vault/theme folder paths accordingly.