A minimalist theme suite for focus. Includes Simple Dark & Light Soft (Eye-friendly) modes.
Designed with a specific color philosophy to reduce cognitive load and improve code readability.
- Function-First: Functions are Green, Parameters are Orange. This consistent pattern helps you quickly parse code structure.
- Semantic Clarity: Distinct colors for native objects (
DeepSkyBlue) vs custom types (Cyan), making it easy to distinguish built-in types from your own. - Accessibility: The Simple Light theme is designed with WCAG AA contrast standards in mind, ensuring readability even in bright environments.
- Simple Dark
- The standard, balanced dark theme. Perfect for daily use.
- Simple Dark Soft
- Lower saturation, softer contrast. Easy on the eyes for long coding sessions.
- Simple Light
- A clean, high-contrast light theme.
- Optimized for readability with darker syntax colors (Green/Orange) on a light background.
- Includes specific semantic highlighting (e.g., Red strings) to distinguish from functions.
- Simple Light Soft (New!)
- Eye-Care Focused: Uses the classic macOS Safari Reader Mode background (
#F8F1E3) to reduce blue light and eye strain. - Paper-Like Experience: A warm, low-glare environment perfect for long reading and writing sessions.
- Accessible: All syntax colors are calibrated to pass WCAG AA contrast standards on the warm background.
- Eye-Care Focused: Uses the classic macOS Safari Reader Mode background (
- Open Extensions sidebar in VS Code.
- Search for
Simple Dark. - Click Install.
- Press
Cmd+K Cmd+T(macOS) orCtrl+K Ctrl+T(Windows/Linux) and select one of the Simple themes.
You can customize specific colors in your settings.json:
"workbench.colorCustomizations": {
"[Simple Dark]": {
"tab.activeBorder": "#ff0000",
"sideBar.background": "#202124"
},
"[Simple Light]": {
"sideBar.background": "#fafafa"
}
}"editor.tokenColorCustomizations": {
"[Simple Dark]": {
"functions": "#00E673"
},
"[Simple Light]": {
"functions": "#048043"
}
}If you like this theme, please give it a star on GitHub! Issues and Pull Requests are welcome.





