Skip to content

W4RH4WK/vscode-fruits

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fruits Theme

Work in Progress

This color theme is a modified version of VSCode's default dark theme, inspired by Visual Assist's dark theme and the omnipresent Monokai theme.

It builds upon the following principles:

  • Highlight control-flow keywords (red)
  • Highlight type and function names as they carry semantics (orange, yellow)
  • Remove emphasis from comments, strings, and namespaces
  • Keywords and operators serve as anchor points (blue)
  • Only source code is themed

Screenshots

Screenshot Haskell

Screenshot CSS

Screenshot Rust

Screenshot Go

Considerations

  • Use vscode-rust-syntax
  • Change variable coloring to adjust the overall color tone:
    "editor.tokenColorCustomizations": {
        "variables": "#BDB76B",  // default Visual Assist
        "variables": "#82c0e2",  // default VSCode dark theme
    }