Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Pallete file viewerNew to Visual Studio Code? Get it now.
Pallete file viewer

Pallete file viewer

Maxttc

|
4 installs
| (1) | Free
Shows .palette files
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Palette Viewer

A simple VS Code extension that adds syntax highlighting for .palette files. These files define color palettes for different themes (e.g., Light and Dark).


📄 Example of a .palette File

<themes:light,dark>

<light:
[background:#FFFFFF]
[text:#1A1A1A]
[primary:#007ACC]
[accent:#FF4081]>

<dark:
[background:#1E1E1E]
[text:#CCCCCC]
[primary:#569CD6]
[accent:#FF79C6]>

File Format Documentation

First Line: List of Available Themes

<themes:theme1,theme2,...>

Example:

<themes:light,dark>

2. Theme-Definitionen

Each theme has its own section:

<themeName:
[variableName:#HexColor]
[variableName:#HexColor]
...>
  • themeName: Name of the theme, e.g., light or dark
  • variableName: Name of the color variable, e.g., background, text, primary
  • Color values are always in hex format, e.g., #FFFFFF

Example

<light:
[background:#FFFFFF]
[text:#1A1A1A]
[primary:#007ACC]
[accent:#FF4081]>
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft