aboutsummaryrefslogtreecommitdiff
path: root/themes/dark/yaru.json
diff options
context:
space:
mode:
authorGravatar Daniel Smith <rdnlsmith@gmail.com> 2018-10-26 11:59:49 -0400
committerGravatar Daniel Smith <rdnlsmith@gmail.com> 2018-10-26 11:59:49 -0400
commitd50c6bb9e3899e52818878a71348a1bb556555e1 (patch)
treefd5c8ec76d1209b1e4c56af7b6c46502d35864ec /themes/dark/yaru.json
parent32f83805bf3c6c11a9e79d914ec2cc8ec7de1a9b (diff)
Yaru: Add theme (preliminary)
Diffstat (limited to 'themes/dark/yaru.json')
-rw-r--r--themes/dark/yaru.json400
1 files changed, 400 insertions, 0 deletions
diff --git a/themes/dark/yaru.json b/themes/dark/yaru.json
new file mode 100644
index 0000000..fddab5f
--- /dev/null
+++ b/themes/dark/yaru.json
@@ -0,0 +1,400 @@
+{
+ "name": "Yaru",
+ "tokenColors": [
+ {
+ "name": "Global settings",
+ "settings": {
+ "background": "#2b2929",
+ "foreground": "#FFFFFF"
+ }
+ },
+ {
+ "name": "String",
+ "scope": "string",
+ "settings": {
+ "foreground": "#FF5555"
+ }
+ },
+ {
+ "name": "String Escape",
+ "scope": "constant.character.escape, text.html constant.character.entity.named, punctuation.definition.entity.html",
+ "settings": {
+ "foreground": "#ff7f7f"
+ }
+ },
+ {
+ "name": "Boolean",
+ "scope": "constant.language.boolean",
+ "settings": {
+ "foreground": "#e95420"
+ }
+ },
+ {
+ "name": "Number",
+ "scope": "constant.numeric",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Identifier",
+ "scope": "variable, support.variable, support.class, support.constant, meta.definition.variable entity.name.function",
+ "settings": {
+ "foreground": "#ff7e30"
+ }
+ },
+ {
+ "name": "Keyword",
+ "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Function call",
+ "scope": "entity.name.function, support.function",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Storage",
+ "scope": "storage.type, storage.modifier",
+ "settings": {
+ "foreground": "#e95420"
+ }
+ },
+ {
+ "name": "Modules",
+ "scope": "support.module, support.node",
+ "settings": {
+ "foreground": "#ff7e30",
+ "fontStyle": "italic"
+ }
+ },
+ {
+ "name": "Type",
+ "scope": "support.type",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "Type",
+ "scope": "entity.name.type, entity.other.inherited-class",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "Comment",
+ "scope": "comment",
+ "settings": {
+ "foreground": "#817b7b",
+ "fontStyle": "italic"
+ }
+ },
+ {
+ "name": "Class",
+ "scope": "entity.name.type.class",
+ "settings": {
+ "foreground": "#55FF55",
+ "fontStyle": "underline"
+ }
+ },
+ {
+ "name": "Class variable",
+ "scope": "variable.object.property, meta.field.declaration entity.name.function",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "Class method",
+ "scope": "meta.definition.method entity.name.function",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "Function definition",
+ "scope": "meta.function entity.name.function",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "Template expression",
+ "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Reset embedded/template expression colors",
+ "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
+ "settings": {
+ "foreground": "#FFFFFF"
+ }
+ },
+ {
+ "name": "YAML key",
+ "scope": "entity.name.tag.yaml",
+ "settings": {
+ "foreground": "#ff7e30"
+ }
+ },
+ {
+ "name": "JSON key",
+ "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
+ "settings": {
+ "foreground": "#ff7e30"
+ }
+ },
+ {
+ "name": "JSON constant",
+ "scope": "constant.language.json",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "CSS class",
+ "scope": "entity.other.attribute-name.class",
+ "settings": {
+ "foreground": "#e95420"
+ }
+ },
+ {
+ "name": "CSS ID",
+ "scope": "entity.other.attribute-name.id",
+ "settings": {
+ "foreground": "#FF5555"
+ }
+ },
+ {
+ "name": "CSS tag",
+ "scope": "source.css entity.name.tag",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "HTML tag outer",
+ "scope": "meta.tag, punctuation.definition.tag",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "HTML tag inner",
+ "scope": "entity.name.tag",
+ "settings": {
+ "foreground": "#ff7e30"
+ }
+ },
+ {
+ "name": "HTML tag attribute",
+ "scope": "entity.other.attribute-name",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Markdown heading",
+ "scope": "markup.heading",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Markdown link text",
+ "scope": "text.html.markdown meta.link.inline, meta.link.reference",
+ "settings": {
+ "foreground": "#ff7e30"
+ }
+ },
+ {
+ "name": "Markdown list item",
+ "scope": "text.html.markdown beginning.punctuation.definition.list",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "Markdown italic",
+ "scope": "markup.italic",
+ "settings": {
+ "foreground": "#ff7e30",
+ "fontStyle": "italic"
+ }
+ },
+ {
+ "name": "Markdown bold",
+ "scope": "markup.bold",
+ "settings": {
+ "foreground": "#ff7e30",
+ "fontStyle": "bold"
+ }
+ },
+ {
+ "name": "Markdown bold italic",
+ "scope": "markup.bold markup.italic, markup.italic markup.bold",
+ "settings": {
+ "foreground": "#ff7e30",
+ "fontStyle": "italic bold"
+ }
+ },
+ {
+ "name": "Markdown code block",
+ "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
+ "settings": {
+ "foreground": "#FF5555"
+ }
+ },
+ {
+ "name": "Markdown inline code",
+ "scope": "markup.inline.raw.string.markdown",
+ "settings": {
+ "foreground": "#FF5555"
+ }
+ },
+ {
+ "name": "INI property name",
+ "scope": "keyword.other.definition.ini",
+ "settings": {
+ "foreground": "#ff7e30"
+ }
+ },
+ {
+ "name": "INI section title",
+ "scope": "entity.name.section.group-title.ini",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "C# class",
+ "scope": "source.cs meta.class.identifier storage.type",
+ "settings": {
+ "foreground": "#55FF55",
+ "fontStyle": "underline"
+ }
+ },
+ {
+ "name": "C# class method",
+ "scope": "source.cs meta.method.identifier entity.name.function",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "C# function call",
+ "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
+ "settings": {
+ "foreground": "#9f639a"
+ }
+ },
+ {
+ "name": "C# type",
+ "scope": "source.cs storage.type",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "C# return type",
+ "scope": "source.cs meta.method.return-type",
+ "settings": {
+ "foreground": "#55FF55"
+ }
+ },
+ {
+ "name": "C# preprocessor",
+ "scope": "source.cs meta.preprocessor",
+ "settings": {
+ "foreground": "#817b7b"
+ }
+ },
+ {
+ "name": "C# namespace",
+ "scope": "source.cs entity.name.type.namespace",
+ "settings": {
+ "foreground": "#FFFFFF"
+ }
+ },
+ {
+ "name": "Global settings",
+ "settings": {
+ "background": "#2b2929",
+ "foreground": "#FFFFFF"
+ }
+ }
+ ],
+ "colors": {
+ "focusBorder": "#e95420",
+ "foreground": "#FFFFFF",
+ "dropdown.background": "#444141",
+ "input.background": "#444141",
+ "inputOption.activeBorder": "#e95420",
+ "list.activeSelectionBackground": "#e9542080",
+ "list.dropBackground": "#e9542080",
+ "list.focusBackground": "#e9542080",
+ "list.hoverBackground": "#FFFFFF1a",
+ "list.inactiveSelectionBackground": "#FFFFFF33",
+ "activityBar.background": "#3c3939",
+ "activityBar.dropBackground": "#e9542080",
+ "activityBarBadge.background": "#e95420",
+ "sideBar.background": "#2b2929",
+ "sideBarSectionHeader.background": "#3c3939",
+ "editorGroup.dropBackground": "#e9542080",
+ "editorGroup.focusedEmptyBorder": "#e95420",
+ "editorGroupHeader.tabsBackground": "#2b2929",
+ "tab.border": "#00000033",
+ "tab.activeBorder": "#e95420",
+ "tab.inactiveBackground": "#3c3939",
+ "editor.background": "#111111",
+ "editor.foreground": "#FFFFFF",
+ "editorLineNumber.foreground": "#FFFFFF4d",
+ "editorLineNumber.activeForeground": "#e95420",
+ "editor.lineHighlightBorder": "#FFFFFF1a",
+ "editor.rangeHighlightBackground": "#FFFFFF0d",
+ "editorWidget.background": "#333131",
+ "editorHoverWidget.background": "#333131",
+ "editorMarkerNavigation.background": "#333131",
+ "peekView.border": "#e95420",
+ "peekViewEditor.background": "#222020",
+ "peekViewResult.background": "#333131",
+ "peekViewTitle.background": "#2b2929",
+ "panel.background": "#111111",
+ "panel.border": "#FFFFFF1a",
+ "panelTitle.activeBorder": "#FFFFFF80",
+ "panelTitle.inactiveForeground": "#FFFFFF80",
+ "statusBar.background": "#222020",
+ "statusBar.debuggingBackground": "#e95420",
+ "statusBar.noFolderBackground": "#222020",
+ "statusBarItem.activeBackground": "#e9542080",
+ "statusBarItem.hoverBackground": "#FFFFFF1a",
+ "titleBar.activeBackground": "#222020",
+ "pickerGroup.border": "#FFFFFF1a",
+ "terminal.ansiBlack": "#000000",
+ "terminal.ansiBlue": "#0000aa",
+ "terminal.ansiBrightBlack": "#555555",
+ "terminal.ansiBrightBlue": "#5555ff",
+ "terminal.ansiBrightCyan": "#55ffff",
+ "terminal.ansiBrightGreen": "#55ff55",
+ "terminal.ansiBrightMagenta": "#ff55ff",
+ "terminal.ansiBrightRed": "#ff5555",
+ "terminal.ansiBrightWhite": "#ffffff",
+ "terminal.ansiBrightYellow": "#ffff55",
+ "terminal.ansiCyan": "#00aaaa",
+ "terminal.ansiGreen": "#00aa00",
+ "terminal.ansiMagenta": "#aa00aa",
+ "terminal.ansiRed": "#aa0000",
+ "terminal.ansiWhite": "#aaaaaa",
+ "terminal.ansiYellow": "#aa5500",
+ "debugToolBar.background": "#3c3939",
+ "selection.background": "#e95420",
+ "terminal.background": "#300a24"
+ }
+} \ No newline at end of file