Last active
April 4, 2018 09:58
-
-
Save afmelsaidy/2ee1aa57613db061df567c5f7ab010a0 to your computer and use it in GitHub Desktop.
vscode custom syntax highlight for theme: alabaster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "vscode://schemas/color-theme", | |
| "name": "Alabaster", | |
| "tokenColors": [ | |
| { | |
| "name": "Comments", | |
| "scope": [ | |
| "comment", | |
| "punctuation.definition.comment" | |
| ], | |
| "settings": { | |
| "foreground": "#AA3731" | |
| } | |
| }, | |
| { | |
| "name": "Strings", | |
| "scope": [ | |
| "string", | |
| "string.regexp", | |
| "constant.other.symbol" | |
| ], | |
| "settings": { | |
| "foreground": "#448C27" | |
| } | |
| }, | |
| { | |
| "name": "Strings: Escape Sequences", | |
| "scope": "constant.character.escape", | |
| "settings": { | |
| "foreground": "#888888" | |
| } | |
| }, | |
| { | |
| "name": "Numbers, Characters, Literal Constants", | |
| "scope": [ | |
| "constant.numeric", | |
| "constant.character", | |
| "constant.keyword", | |
| "constant" | |
| ], | |
| "settings": { | |
| "fontStyle": "underline", | |
| "foreground": "#7A3E9D" | |
| } | |
| }, | |
| { | |
| "name": "Variable Definition", | |
| "scope": [ | |
| "meta.import variable", | |
| "meta.definition.variable", | |
| "meta.class entity.name.type.class", | |
| "meta.type.declaration entity.name.type.alias", | |
| "meta.definition.function entity.name.function" | |
| ], | |
| "settings": { | |
| "fontStyle": "bold" | |
| } | |
| }, | |
| { | |
| "name": "Type Definition", | |
| "scope": [ | |
| "meta.return.type", | |
| "meta.type.annotation", | |
| "meta.type.parameters" | |
| ], | |
| "settings": { | |
| "foreground": "#888888" | |
| } | |
| }, | |
| { | |
| "name": "Keywords", | |
| "scope": [ | |
| "keyword", | |
| "storage" | |
| ], | |
| "settings": { | |
| "foreground": "#325CC0" | |
| } | |
| }, | |
| { | |
| "name": "Punctuation", | |
| "scope": "punctuation", | |
| "settings": { | |
| "foreground": "#888888" | |
| } | |
| }, | |
| { | |
| "name": "Invalid", | |
| "scope": "invalid", | |
| "settings": { | |
| "foreground": "#660000" | |
| } | |
| }, | |
| { | |
| "name": "Extra: Diff Range", | |
| "scope": [ | |
| "meta.diff.range", | |
| "meta.diff.index", | |
| "meta.separator" | |
| ], | |
| "settings": { | |
| "foreground": "#434343" | |
| } | |
| }, | |
| { | |
| "name": "Extra: Diff From", | |
| "scope": "meta.diff.header.from-file", | |
| "settings": { | |
| "foreground": "#434343" | |
| } | |
| }, | |
| { | |
| "name": "Extra: Diff To", | |
| "scope": "meta.diff.header.to-file", | |
| "settings": { | |
| "foreground": "#434343" | |
| } | |
| } | |
| ], | |
| "colors": { | |
| "editor.background": "#F8F8F2", | |
| "editor.foreground": "#000", | |
| "editor.lineHighlightBackground": "#F0F0F0", | |
| "editor.selectionBackground": "#BFDBFE", | |
| "editor.selectionHighlightBackground": "#E0E0E0", | |
| "panel.background": "#F0F0F0", | |
| "sideBar.background": "#F0F0F0", | |
| "editorGroupHeader.tabsBackground": "#F0F0F0", | |
| "activityBar.background": "#F0F0F0", | |
| "activityBar.foreground": "#007ACC", | |
| "editorLineNumber.foreground": "#9DA39A", | |
| "editorCursor.foreground": "#007ACC", | |
| "editor.findMatchBackground": "#FFBC5D", | |
| "editor.findMatchHighlightBackground": "#FFE9A6", | |
| "statusBar.background": "#DDDDDD", | |
| "statusBar.foreground": "#474747", | |
| "statusBar.debuggingBackground": "#FFBC5D", | |
| "statusBar.debuggingForeground": "#000", | |
| "statusBar.noFolderBackground": "#7A3E9D", | |
| "statusBar.noFolderForeground": "#fff", | |
| "terminal.ansiWhite": "#BBBBBB", | |
| "terminal.ansiBlack": "#000000", | |
| "terminal.ansiBlue": "#325CC0", | |
| "terminal.ansiCyan": "#0083B2", | |
| "terminal.ansiGreen": "#448C27", | |
| "terminal.ansiMagenta": "#7A3E9D", | |
| "terminal.ansiRed": "#AA3731", | |
| "terminal.ansiYellow": "#FFBC5D", | |
| "terminal.ansiBrightWhite": "#FFFFFF", | |
| "terminal.ansiBrightBlack": "#777777", | |
| "terminal.ansiBrightBlue": "#007ACC", | |
| "terminal.ansiBrightCyan": "#00AACB", | |
| "terminal.ansiBrightGreen": "#60CB00", | |
| "terminal.ansiBrightMagenta": "#E64CE6", | |
| "terminal.ansiBrightRed": "#F05050", | |
| "terminal.ansiBrightYellow": "#FFD9A6" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment