Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>Real Intellij LightNew to Visual Studio Code? Get it now.

Real Intellij Light

c75

|
391 installs
| (0) | Free
Theme looks like IDEA IntelliJ Light
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Real Intellij Light

Light theme for Visual Studio Code. It uses Intellij-light theme colors and looks almost the same.

Preview

Settings recommendations:

{
    // Theme
    "workbench.colorTheme": "Real IntelliJ Light",
  
    // Show scrollbars
    "editor.scrollbar.verticalScrollbarSize": 10,
    "editor.scrollbar.horizontalScrollbarSize": 10,
    "editor.scrollbar.vertical": "visible",
    "editor.scrollbar.horizontal": "visible",

    // Fonts
    "editor.fontFamily": "'JetBrains Mono'",
    "editor.fontWeight": "500",
    "editor.fontSize": 17,
    "editor.letterSpacing": -0.2,
    "editor.lineHeight": 1.25,

    // Menu
    "workbench.tree.indent": 24,
}

Recommended extensions:

  • Duplicate selection or line - duplicate lines like in IntelliJ IDEA
  • JetBrains IDEA Icons - icons like in IntelliJ IDEA
  • Numbered Bookmarks - bookmarks like in IntelliJ IDEA

Hack internal CSS

Use Custom CSS and JS Loader with CSS:

/* Disable animations */
.monaco-hover {
    animation: none;
}

/* Cursor on tabs like in IntelliJ IDEA */
.tabs-and-actions-container *,
.monaco-list * {
    cursor: default !important;
}

/* More highlighting active tab */
.tab.active {
    box-shadow: inset 0 -3px #4083c9;
}

/* Change UI font */
.windows {
    font-family: Verdana, sans-serif;
}
  • Contact us
  • Jobs
  • Privacy
  • Terms of use
  • Trademarks
© 2023 Microsoft