https://github.com/avin/real-intellij-light
VSCode theme that looks like Webstorm IntelliJ Light
https://github.com/avin/real-intellij-light
Last synced: 3 months ago
JSON representation
VSCode theme that looks like Webstorm IntelliJ Light
- Host: GitHub
- URL: https://github.com/avin/real-intellij-light
- Owner: avin
- License: mit
- Created: 2023-02-05T12:29:48.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-07T18:56:46.000Z (over 2 years ago)
- Last Synced: 2025-06-15T14:17:59.049Z (7 months ago)
- Homepage: https://marketplace.visualstudio.com/items?itemName=c75.real-intellij-light
- Size: 289 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Real Intellij Light
Light theme for Visual Studio Code. It uses Intellij-light theme colors and looks almost the same.

## Settings recommendations:
```json5
{
// 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](https://marketplace.visualstudio.com/items?itemName=geeebe.duplicate) - duplicate lines like in IntelliJ IDEA
* [JetBrains IDEA Icons](https://marketplace.visualstudio.com/items?itemName=Mostik.JetBrainsIcons) - icons like in IntelliJ IDEA
* [Numbered Bookmarks](https://marketplace.visualstudio.com/items?itemName=alefragnani.numbered-bookmarks) - bookmarks like in IntelliJ IDEA
## Hack internal CSS
Use [Custom CSS and JS Loader](https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css) with CSS:
```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;
}
```