ocean-breeze/themes/ocean-breeze.json

374 lines
8.9 KiB
JSON
Raw Normal View History

2025-02-06 14:04:57 -08:00
{
"name": "Ocean Breeze",
"type": "dark",
"colors": {
"editor.background": "#012a22",
"editor.foreground": "#abfcec",
"activityBar.background": "#001a15",
"activityBar.foreground": "#abfcec",
"activityBarBadge.background": "#7fedd6",
"activityBarBadge.foreground": "#001a15",
"sideBar.background": "#011f19",
"sideBar.foreground": "#abfcec",
"sideBarTitle.foreground": "#7fedd6",
"titleBar.activeBackground": "#001a15",
"titleBar.activeForeground": "#abfcec",
"statusBar.background": "#001a15",
"statusBar.foreground": "#abfcec",
"statusBar.noFolderBackground": "#012a22",
"tab.activeBackground": "#012a22",
"tab.activeForeground": "#abfcec",
"tab.inactiveBackground": "#001a15",
"tab.inactiveForeground": "#7fedd6",
"editorGroupHeader.tabsBackground": "#001610",
"button.background": "#7fedd6",
"button.foreground": "#001610",
"dropdown.background": "#011f19",
"dropdown.foreground": "#abfcec",
"input.background": "#011f19",
"input.foreground": "#abfcec",
"input.placeholderForeground": "#7fedd6",
"focusBorder": "#7fedd6",
"list.activeSelectionBackground": "#012a22",
"list.activeSelectionForeground": "#abfcec",
"list.hoverBackground": "#011f19",
"list.hoverForeground": "#abfcec",
"editor.selectionBackground": "#023d35",
"editor.selectionHighlightBackground": "#023d3580",
"editor.wordHighlightBackground": "#023d3580",
"editor.lineHighlightBackground": "#011f19",
"editorCursor.foreground": "#abfcec",
"editorWhitespace.foreground": "#011f19",
"editorIndentGuide.background": "#011f19",
"editorIndentGuide.activeBackground": "#023d35",
"terminal.background": "#012a22",
"terminal.foreground": "#abfcec",
"terminal.ansiBlack": "#001610",
"terminal.ansiBrightBlack": "#012a22",
"terminal.ansiRed": "#ff6b6b",
"terminal.ansiBrightRed": "#ff8585",
"terminal.ansiGreen": "#4ddbba",
"terminal.ansiBrightGreen": "#6bedcc",
"terminal.ansiYellow": "#ffd93d",
"terminal.ansiBrightYellow": "#ffe074",
"terminal.ansiBlue": "#6bc5ff",
"terminal.ansiBrightBlue": "#92d5ff",
"terminal.ansiMagenta": "#ff92df",
"terminal.ansiBrightMagenta": "#ffb2e7",
"terminal.ansiCyan": "#89ffea",
"terminal.ansiBrightCyan": "#a9fff0",
"terminal.ansiWhite": "#c4fcf2",
"terminal.ansiBrightWhite": "#e2fcf8"
},
"tokenColors": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#113c33",
2025-02-06 14:04:57 -08:00
"fontStyle": "italic"
}
},
{
"scope": [
"string",
"string.quoted.single",
"string.quoted.double",
"string.quoted.triple",
"string.template",
"constant.character",
"constant.other.symbol"
],
"settings": {
"foreground": "#4ddbba"
}
},
{
"scope": [
"constant.numeric",
"constant.language",
"constant.character.escape",
"constant.other",
"support.constant"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#477f72"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"variable",
"variable.other",
"variable.parameter",
"variable.language",
"variable.object.property"
],
"settings": {
"foreground": "#abfcec"
}
},
{
"scope": [
"keyword",
"keyword.control",
"keyword.operator",
"keyword.other",
"storage.type",
"storage.modifier",
"punctuation.decorator"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#6eafa1"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"entity.name.function",
"entity.name.method",
"support.function",
"meta.function-call",
"meta.method-call",
"meta.function.dart"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#82c8b9"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"entity.name.type",
"entity.name.class",
"entity.name.struct",
"entity.name.enum",
"entity.name.union",
"entity.name.trait",
"entity.name.interface",
"support.class",
"support.type",
"meta.return-type"
],
"settings": {
"foreground": "#89ffea",
"fontStyle": "bold"
}
},
{
"scope": [
"meta.decorator",
"meta.annotation",
"punctuation.definition.annotation"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#477f72"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": ["entity.name.tag", "punctuation.definition.tag"],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#6eafa1"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"entity.other.attribute-name",
"entity.other.attribute-name.html",
"entity.other.attribute-name.css",
"support.type.property-name.css",
"entity.other.attribute-name.class"
],
"settings": {
"foreground": "#6bedcc"
}
},
{
"scope": [
"support.type.primitive",
"support.type.builtin",
"keyword.type",
"storage.type.primitive",
"storage.type.built-in",
"support.type.primitive.dart"
],
"settings": {
"foreground": "#89ffea"
}
},
{
"scope": ["string.regexp", "constant.character.escape.regex"],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#7fedd6"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": ["markup.heading", "entity.name.section"],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#82c8b9",
2025-02-06 14:04:57 -08:00
"fontStyle": "bold"
}
},
{
"scope": ["markup.bold"],
"settings": {
"fontStyle": "bold"
}
},
{
"scope": ["markup.italic"],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": ["markup.inline.raw", "markup.fenced_code", "markup.raw"],
"settings": {
"foreground": "#4ddbba"
}
},
{
"scope": [
"support.type.property-name.json",
"support.type.property-name.jsonc"
],
"settings": {
"foreground": "#6bedcc"
}
},
{
"scope": [
"keyword.operator.expression",
"keyword.operator.new",
"keyword.operator.optional",
"keyword.operator.comparison",
"keyword.operator.arithmetic",
"keyword.operator.assignment",
"keyword.operator.logical"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#6eafa1"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"meta.embedded",
"source.groovy.embedded",
"meta.template.expression"
],
"settings": {
"foreground": "#abfcec"
}
},
{
"scope": [
"meta.object-literal.key",
"variable.object.property",
"variable.other.property",
"variable.other.object.property"
],
"settings": {
"foreground": "#6bedcc"
}
},
{
"scope": [
"support.variable.property",
"support.variable.object.process",
"support.variable.object.node"
],
"settings": {
"foreground": "#6bedcc"
}
},
{
"scope": [
"source.rust storage.type.rust",
"source.rust entity.name.type.rust",
"source.rust entity.name.type.struct.rust"
],
"settings": {
"foreground": "#89ffea"
}
},
{
"scope": [
"source.rust keyword.operator",
"source.rust keyword.operator.arithmetic",
"source.rust keyword.operator.logical"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#6eafa1"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"source.python support.type.python",
"source.python support.function.builtin.python"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#82c8b9"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"source.cs entity.name.type.class.cs",
"source.cs storage.type.cs"
],
"settings": {
"foreground": "#89ffea"
}
},
{
"scope": [
"source.dart support.class.dart",
"source.dart support.type.dart"
],
"settings": {
"foreground": "#89ffea"
}
},
{
"scope": [
"source.prisma keyword.operator",
"source.prisma constant.language",
"source.prisma keyword.type"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#6eafa1"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"source.graphql support.type",
"source.graphql constant.character"
],
"settings": {
"foreground": "#89ffea"
}
},
{
"scope": ["source.sql keyword.other", "source.sql storage.type"],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#6eafa1"
2025-02-06 14:04:57 -08:00
}
},
{
"scope": [
"meta.jsx.children",
"meta.embedded.block.tsx",
"meta.embedded.block.jsx"
],
"settings": {
"foreground": "#abfcec"
}
},
{
"scope": [
"meta.decorator.ts",
"meta.decorator.tsx",
"meta.decorator.angular"
],
"settings": {
2025-02-06 14:10:38 -08:00
"foreground": "#477f72"
2025-02-06 14:04:57 -08:00
}
}
]
}