Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>Inka Chroma DarkNew to Visual Studio Code? Get it now.
Inka Chroma Dark

Inka Chroma Dark

InkaChroma Dark

|
125 installs
| (1) | Free
Inka Chroma Dark Color theme for Visual Studio Code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

InkaChroma Dark

Preview in vscode.dev Visual Studio Marketplace Version (including pre-releases) Visual Studio Marketplace Downloads Visual Studio Marketplace Rating

InkaChroma Dark is a Visual Studio Code theme that draws inspiration from the renowned One Dark Theme. While retaining the clean and sophisticated design of One Dark, InkaChroma Dark introduces subtle color changes and other adjustments, creating a unique and visually appealing coding environment.

Installing

This extension is available for free in the Visual Studio Code Marketplace

What's new?

Click here to go to the Changelog

Customization

Custom Font

InkaChroma Dark supports custom fonts to enhance your coding experience. Follow these steps to change the font:

  1. Open Visual Studio Code.
  2. Navigate to File > Preferences > Settings or use Ctrl + , (Cmd + , on macOS).
  3. Click on the "Open Settings (JSON)" icon in the top-right corner of the settings page.
  4. Add the following configuration to set your desired font:
{
  "editor.fontFamily": "Your Custom Font, 'Other Font', sans-serif",
  "editor.fontSize": 14,
}

Font Used

Helvetica

Custom Font for Comments

Visual Studio Code doesn't have a tool to change the font of specific components. If you want to have the Screenshot font for comments, follow these steps:

Related StackOverflow Discussion

  1. Navigate to the root of your VS Code installation. On a Mac, this is typically Users/username/.vscode/.

  2. In the terminal, navigate to this directory and create the custom stylesheet by running the command:

    touch style.css
    
    
  3. Open the created style.css file.

  4. Identify the class for comments by opening Dev Tools within VS Code. Hover over a comment to see the class (e.g., .mtk3).

  5. Add your custom style rules to the style.css file. For example:

.mtk3 {
   font-family: "iosevka";
   font-size: 1em;
   font-style: italic;
}

Link to Your Stylesheet

  1. Open settings.json for VS Code (the global file, not project-specific ones).

  2. Add the following entry to inform VS Code about the stylesheet:

"vscode_custom_css.imports": ["file:///Users/username/.vscode/style.css"],

Replace the path with your own, and be aware of the correct file URL format for Windows.

Install the Plugin

  1. Install the "Custom CSS and JS Loader" plugin.

  2. Use the command palette (Cmd+Shift+P) and type 'Enable custom CSS and JS'. Select the option that appears.

  3. Restart VS Code or run "Reload Window" to apply the custom styles.


Please note that the cursor behavior might be slightly erratic, but it should not significantly impact your experience since comments are typically written less frequently than code. Feel free to share insights on targeting additional mtk classes in the comments if you discover more about the behavior.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft