B34MR / sublime-text-4-theme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sublime Text 4 Theme in Visual Studio Code! New default dark theme from Sublime Text 4!

sublime-text-4-theme

Installing information

Theme install

Installation

Quick Open: Windows: Ctrl + P macOS: ⌘ + P Linux: Ctrl + P

Paste the following command and press Enter:

ext install EmilijanMB.sublime-text-4-theme

...pick the theme

Theme activation

Quick Open: Windows: Ctrl + Shift + P macOS: Shift + P Linux: Ctrl + Shift + P

Type theme, choose Preferences: Color Theme, and select Sublime Text 4 Theme

Overriding the colors

Editor colors

"editor.tokenColorCustomizations": {
    "[Sublime Text 4 Theme]": {
        "textMateRules": [
            {
                "scope": "comment",
                "settings": {
                     "foreground": "#74705D",
                }
            },
        ]
    },
},

Theme colors

"workbench.colorCustomizations": { "[Sublime Text 4 Theme]": { "editor.selectionBackground": "#ff0000", } },

Recommended settings for complete Sublime Text 4 experience

{
    // Changes to like Sublime Text 4 Theme now even more
    
    "breadcrumbs.enabled": false,
    "editor.letterSpacing": 0.55,
    "editor.lineHeight": 18,
    "window.menuBarVisibility": "compact"
}

sublime-text-4-theme

About