🏛️ Mythos Themes
A growing collection of elegant, dark VS Code color themes inspired by the legends of Greek mythology. Each theme offers a distinct visual identity, excellent contrast, and a premium coding experience designed to keep you focused.
🌌 The Pantheon
Explore the visual identities and mythos of each theme:
🔥 Prometheus
- The Accent: Volcanic Ember & Ash (Deep Charcoal
#1e1e1e with glowing orange #c07020 cursor and warm fire tones).
- The Significance: Named after the Titan who stole fire from the gods to gift to humanity. This high-contrast theme lights up your workspace with syntax that glows like burning embers, keeping your coding drive burning bright.
🛡️ Pallas Athena
- The Accent: Aged Olive & Bronze (Tactical Olive
#272822 with muted gold #99947c and sage #75715e).
- The Significance: Dedicated to the goddess of strategic wisdom and warfare. With a balanced, Monokai-derived palette, Pallas Athena provides a calm, intellectual layout designed to minimize fatigue during long debugging sessions.
🛠️ Daedalus
- The Accent: Architectural Slate & Gold (Dark Steel
#282a3a accented with blueprint gold #ffd76d and copper #ff9b5e).
- The Significance: Inspired by the legendary master inventor and designer of the Labyrinth. A clean, mathematically structured layout that highlights your code's architecture with industrial precision.
🌑 Nyx / Nyx (No Italics)
- The Accent: Cosmic Void & Cyber Neon (Deep Midnight Blue
#171729 paired with electric pink #ff79c6, starlight cyan #8be9fd, and toxic lime #50fa7b).
- The Significance: Inspired by the primordial goddess of night. Vivid neon syntax colors clash against a cosmic void, creating an energetic, cyberpunk-styled dark theme. Available in both standard italicized and clean, non-italicized variants.
🌌 Astraeus
- The Accent: Stellar Dust & Planetary Glow (Deep Space Navy
#151823 paired with cosmic gold #fbbf24, stellar cyan #38bdf8, and soft rose #fb7185).
- The Significance: Inspired by the Titan god of dusk, stars, and planets. This theme brings a stellar palette of planetary colors against a deep space void background to create a dreamy, highly legible dark workspace.
Aether ✨
- The Accent: Celestial Indigo & Starlight (Slate Blue
#242836 accented with glowing starlight #a5b4fc and subtle lavender tones).
- The Significance: Inspired by the primordial god of the upper sky and pure light. Aether offers a serene, celestial atmosphere with soft, high-visibility blue and indigo tones, providing a calm and highly focused environment.
🌸 Persephone
- The Accent: Spring Bloom & Underworld Velvet (Velvet Midnight
#1E1E27 paired with pastel rose #FF8AC2, lavender #B39DFF, and fresh mint green #5FD9B5).
- The Significance: Dedicated to the goddess of spring growth and queen of the underworld. Persephone bridges the gap between deep dark tones and colorful nature-inspired highlights, keeping your code readable with soft, refreshing pastel hues.
✍️ Customizing Italics
By default, 🔥 Prometheus, 🛡️ Pallas Athena, and 🛠️ Daedalus are configured to be non-italic to keep their typography solid and structured.
If you prefer italicized comments and attributes (like the defaults in 🌑 Nyx), you can easily add them yourself! Open your settings.json in VS Code and append one of the following configurations:
Enable Italics Globally (For All Themes)
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"entity.other.attribute-name"
],
"settings": {
"fontStyle": "italic"
}
}
]
}
Enable Italics for Specific Mythos Themes
"editor.tokenColorCustomizations": {
"[🔥 Prometheus]": {
"textMateRules": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": { "fontStyle": "italic" }
},
{
"scope": ["entity.other.attribute-name"],
"settings": { "fontStyle": "italic" }
}
]
},
"[🛡️ Pallas Athena]": {
"textMateRules": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": { "fontStyle": "italic" }
},
{
"scope": ["entity.other.attribute-name"],
"settings": { "fontStyle": "italic" }
}
]
},
"[🛠️ Daedalus]": {
"textMateRules": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": { "fontStyle": "italic" }
},
{
"scope": ["entity.other.attribute-name"],
"settings": { "fontStyle": "italic" }
}
]
}
}
🎨 Recommended Coding Fonts
To complete the premium aesthetic, we highly recommend pairing Mythos Themes with these state-of-the-art coding fonts:
- Ioskeley Mono — An exceptional open-source typeface mimicking Berkeley Mono's high-end, console-grid aesthetic. [use 0.3 letter spacing]
- Fira Code — A legendary developer font featuring a wide range of beautiful programming ligatures.
- Victor Mono — A clean, crisp programming font with gorgeous, cursive-style italics for comments and attributes. [use 0.6 letter spacing]