A minimal, frameless dark theme for opencode.ai inspired by the poimandres VS Code theme.
- Semantic color coding (errors in red, types darker, etc.)
- Minimal visual noise for better focus
- Optimized for truecolor terminals
- Based on the poimandres color palette
- Create the themes directory:
mkdir -p ~/.config/opencode/themes- Download the theme file:
curl -o ~/.config/opencode/themes/poimandres.json https://raw.githubusercontent.com/ajaxdude/opencode-ai-poimandres-theme/main/.opencode/themes/poimandres.jsonThat's it! The theme is now available globally in opencode.ai.
- Open opencode.ai
- Type
/themeand selectpoimandres - Or add it to your
opencode.jsonconfig:
{
"$schema": "https://opencode.ai/config.json",
"theme": "poimandres"
}For best results, ensure your terminal supports truecolor (24-bit color):
- Check support:
echo $COLORTERM(should outputtruecoloror24bit) - Enable if needed:
export COLORTERM=truecolor
Most modern terminals (iTerm2, Alacritty, Kitty, Windows Terminal, GNOME Terminal) support this by default.
The theme uses the poimandres color scheme with comprehensive color definitions:
- Background:
#1b1e28(dark blue-gray) - Focus/Panel:
#303340(medium gray-blue) - Primary:
#ADD7FF(light blue) - Accent:
#5DE4c7(bright mint) - Strong Turquoise:
#00CED1(vibrant teal)
- Error:
#d0679d(hot red) - Warning:
#fffac2(bright yellow) - Success:
#00CED1(strong turquoise) - Info:
#5DE4c7(bright mint)
- Primary Text:
#a6accd(light gray) - Muted Text:
#767c9d(darker gray) - Off White:
#e4f0fb(very light blue)
- Pink:
#f087bd(soft pink) - Desaturated Blue:
#91B4D5(muted blue) - Bluish Gray:
#506477(blue-gray) - Selection:
#717cb425(transparent blue)
.opencode/themes/
└── poimandres.json # Main theme file
The theme follows the opencode.ai JSON theme format with:
- Color definitions in the
defssection - Dark/light variants for all colors
- Semantic color mapping for UI elements and syntax highlighting
MIT License - see LICENSE file for details.
- Based on poimandres by Paul Henschel
- Originally inspired by blueberry theme
