wip: Add Ocean variant

This commit is contained in:
Mattia Astorino 2018-04-22 11:27:31 +02:00
parent 974ce25a6d
commit a3b6e6284e
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2
3 changed files with 58 additions and 3 deletions

View file

@ -153,7 +153,8 @@
"Light": "./themes/Material-Theme-Lighter.json",
"Light High Contrast": "./themes/Material-Theme-Lighter-High-Contrast.json",
"Palenight": "./themes/Material-Theme-Palenight.json",
"Palenight High Contrast": "./themes/Material-Theme-Palenight-High-Contrast.json"
"Palenight High Contrast": "./themes/Material-Theme-Palenight-High-Contrast.json",
"Ocean": "./themes/Material-Theme-Ocean.json"
},
"themeVariantsColours": {
"Darker": "#424242",
@ -163,7 +164,8 @@
"Light": "#90A4AE",
"Light High Contrast": "#90A4AE",
"Palenight": "#4E5579",
"Palenight High Contrast": "#4E5579"
"Palenight High Contrast": "#4E5579",
"Ocean": "#3C425D"
},
"themeVariantsUITheme": {
"Darker": "vs-dark",
@ -173,7 +175,8 @@
"Light": "vs",
"Light High Contrast": "vs",
"Palenight": "vs-dark",
"Palenight High Contrast": "vs-dark"
"Palenight High Contrast": "vs-dark",
"Ocean": "vs-dark"
},
"variantsIcons": [
"_folder_dark_build",

View file

@ -97,6 +97,11 @@
"path": "./themes/Material-Theme-Palenight-High-Contrast.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Ocean",
"path": "./themes/Material-Theme-Ocean.json",
"uiTheme": "vs-dark"
},
{
"label": "Material Theme Lighter",
"path": "./themes/Material-Theme-Lighter.json",

View file

@ -0,0 +1,47 @@
{
"id": "material.theme.ocean",
"name": "Material-Theme-Ocean",
"type": "dark",
"scheme": {
"background": "#11131C",
"backgroundAlt": "#11131C",
"contrastBorder": "#11131C",
"comments": "#3C425D",
"caret": "#FFCC00",
"findHighlight": "#FFCC00",
"foreground": "#A6ACCD",
"focusBorder": "#FFFFFF",
"guides": "#4E557980",
"lineNumbers": "#3C425D",
"invisibles": "#4E5579",
"lineHighlight": "#000000",
"selection": "#717CB450",
"shadow": "#00000030",
"inputBackground": "#FFFFFF05",
"inputForeground": "#EEFFFF",
"inputBorder": "#FFFFFF10",
"scrollbars": "#00000050",
"scrollbarsHover": "#00000030",
"statusbarForeground": "#676E95",
"sidebarBackground": "#292D3E",
"sidebarForeground": "#3C425D",
"listHoverForeground": "#FFFFFF",
"listHoverBackground": "#292D3E",
"tabActiveForeground": "#FFFFFF",
"base": {
"white": "#ffffff",
"black": "#000000",
"red": "#FF5370",
"orange": "#F78C6C",
"yellow": "#FFCB6B",
"green": "#C3E88D",
"cyan": "#89DDFF",
"blue": "#82AAFF",
"paleblue": "#B2CCD6",
"purple": "#C792EA",
"brown": "#C17E70",
"pink": "#f07178",
"violet": "#bb80b3"
}
}
}