🌤️ Solarized and Selenized 🌖 for VS CodeSolarized is a sixteen color palette (eight monotones, eight accent colors) designed by Ethan Schoonover. Selenized is a redesign on Solarized by Jan Warchoł. It improves on Solarized by providing better contrast and more distinguishable accent colors. The color values and comparison between both can be seen in this blog post. This extension contains the following color themes and variants:
ScreenshotsWorkbench (UI)(Selene) Selenized Light 🌖 and Dark 🌒 Editor(Selene) Selenized Light 🌖 and Dark 🌒 Templatized color theme filesMaintaining loose vscode color theme extension JSON files with raw sRGB values is tedious. So, I broke them up into shareable components as Liquid template partials. Let's take a look at a top-level
Where Taking this idea further, the content of that template is further broken down into its constituents parts: Workbench (UI) colors, TextMate scoped token (fallback) colors, and semantic syntax token (LSP-provided) colors.
As you can see, each component template is injected with a theme-agnostic array of 16 base colors. They roughly follow the Base16 color theming framework. What this means is that
This also keeps things DRY. The same template files are shared between Selenized Light, Selenized Dark, Solarized Light, and Solarized Dark--the four colorschemes that are defined in this repository. It makes tweaking colors a lot easier and maintenance much less tedious. These three core components are defined as three template partials files in
Palette for color values injectionThe templates (and the shared components partials that they instantiate) are injected with color values that are derived from one of the palette files. Each of them is defined as a yaml file that contains 16 colors (per Base16 convention). Each color in a palette has a name and index in a For more information |