Finally, a light theme that doesn't hurt your eyes.
Tired of ugly VS Code themes? So was I. Most light themes are either:
- Too cluttered and distracting
- Have terrible color choices
- Hard to read during long coding sessions
- Look awful when presenting code
This theme is different: clean, simple, and actually pleasant to look at.
See exactly how your code will look before installing!
- No visual noise or distracting colors
- Each color has a clear purpose
- Consistent and predictable highlighting
- High contrast ratios (your eyes will thank you)
- Perfect for long coding sessions
- Works great in bright rooms and on projectors
What | Color | Why |
---|---|---|
Keywords (function , if ) |
🔴 Red | Important syntax stands out |
Strings ("hello" ) |
🟢 Green | Easy to spot text content |
Numbers (42 , 3.14 ) |
🟠 Orange | Data values are clear |
Functions (myFunction() ) |
🔵 Blue | Method calls are obvious |
Comments (// notes ) |
⚫ Gray | Subtle, won't distract |
- Go to Releases
- Download the latest
.vsix
file
- Open VS Code
- Press
Ctrl+Shift+P
(orCmd+Shift+P
on Mac) - Type "Extensions: Install from VSIX"
- Select the downloaded
.vsix
file
- Press
Ctrl+Shift+P
(orCmd+Shift+P
on Mac) - Type "Preferences: Color Theme"
- Choose "Accessible Light"
That's it! Your code should now look clean and readable.
Want to get the most out of this theme? Add these settings to VS Code:
- Open Settings: Press
Ctrl+,
(orCmd+,
on Mac) - Click the file icon in the top-right corner (opens settings.json)
- Add these lines:
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.fontLigatures": true,
"editor.renderWhitespace": "boundary",
"editor.rulers": [80, 120],
"terminal.integrated.minimumContrastRatio": 4.5,
"workbench.colorCustomizations": {
"[Accessible Light]": {
"terminal.background": "#fdfdfd"
}
}
}
What do these do?
- Bracket colors: Matching brackets get the same color (easier to spot)
- Bracket guides: Shows lines connecting matching brackets
- Font ligatures: Makes symbols like
=>
and!=
look prettier - Show spaces: Helps you spot extra spaces and indentation
- Rulers: Vertical lines at 80 and 120 characters (coding guidelines)
- Terminal contrast: Ensures terminal text is always readable
- Terminal background: Matches the editor background for consistency
- Clean enough to focus on your code
- Comfortable for hours of programming
- Colors help you spot different parts quickly
- High contrast shows up clearly on projectors
- Students can read code from the back of the room
- Professional appearance for demos
- Easy to spot different syntax elements
- Reduces eye strain during long review sessions
- Works well on different monitors and lighting
Most light themes try to do too much. This one focuses on being clean and readable. Every color choice has a purpose.
Yes! It's designed to work well with popular extensions like GitLens, Prettier, and ESLint.
Absolutely! You can override any color in your VS Code settings. Check the customization guide.
Yes, it's designed to work with any language VS Code supports - JavaScript, Python, Go, Rust, you name it.
- Color palette details: Check out the theme file at
themes/accessible-light-theme.json
- Report issues: Found something that looks weird? Let me know
- Suggest improvements: Have ideas? Open an issue!
I got tired of switching between ugly VS Code themes. Some were too bright, others too cluttered, most just looked unprofessional.
So I made this one: simple, clean, and easy on the eyes.
If you're also tired of visually noisy themes, this might be exactly what you need.
Made by a developer who cares about clean code AND clean design ✨