Skip to content

sortbyfirstname/seabrook-vscode-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

icon

Seabrook

An aesthetically pleasing theme for Visual Studio Code.

Preview in vscode.dev Visual Studio Marketplace Last Updated GitHub issues

Seabrook Dark

Screenshot 1

Seabrook Light

Screenshot 2


Disabling italics

If you would like to disable italics, you can add the following to your settings.json file:

"editor.tokenColorCustomizations": {
        "[Seabrook Dark]": {
            "textMateRules": [{
                "scope": [
                    "comment",
                    "invalid",
                    "keyword",
                    "entity.other.attribute-name"
                ],
                "settings": {
                    "fontStyle": ""
                }
            }]
        },
        "[Seabrook Light]": {
            "textMateRules": [{
                "scope": [
                    "comment",
                    "invalid",
                    "keyword",
                    "entity.other.attribute-name"
                ],
                "settings": {
                    "fontStyle": ""
                }
            }]
        }
    }