1
Fork 0
mirror of https://github.com/Steffo99/steffula-code.git synced 2024-10-16 17:47:29 +00:00
steffula-code/themes/Steffula-color-theme.json

912 lines
22 KiB
JSON
Raw Normal View History

2022-01-10 14:37:02 +00:00
{
"name": "Steffula",
"type": "dark",
"colors": {
2022-01-13 18:51:42 +00:00
"foreground": "#cacbcc",
2022-01-10 22:11:25 +00:00
"input.background": "#45494a",
"input.border": "#646464",
2022-01-13 18:51:42 +00:00
"input.foreground": "#cacbcc",
"input.placeholderForeground": "#777777",
2022-01-10 22:11:25 +00:00
"badge.background": "#45494a",
"badge.foreground": "#a6a7a8",
"activityBar.background": "#3c3f41",
"activityBar.foreground": "#a6a7a8",
2022-05-04 13:03:10 +00:00
"activityBarBadge.background": "#ffff00",
"activityBarBadge.foreground": "#000000",
2022-01-10 22:11:25 +00:00
2022-01-10 14:37:02 +00:00
"editor.background": "#2b2b2b",
"editor.foreground": "#a9b7c6",
2022-01-10 22:11:25 +00:00
"editorLineNumber.foreground": "#606366",
"editorError.foreground": "#ff5252",
"problemsErrorIcon.foreground": "#ff5252",
"minimap.errorHighlight": "#ff5252",
"list.errorForeground": "#ff5252",
"editorWarning.foreground": "#ffff00",
"problemsWarningIcon.foreground": "#ffff00",
"minimap.warningHighlight": "#ffff00",
"list.warningForeground": "#ffff00",
"editorInfo.foreground": "#66663d",
"problemsInfoIcon.foreground": "#66663d",
"editorHint.foreground": "#155221",
"editorGutter.addedBackground": "#438c65",
"editorGutter.deletedBackground": "#8f5247",
"editorGutter.modifiedBackground": "#43698d",
"minimapGutter.addedBackground": "#438c65",
"minimapGutter.deletedBackground": "#8f5247",
"minimapGutter.modifiedBackground": "#43698d",
"diffEditor.insertedTextBackground": "#438c6540",
"diffEditor.removedTextBackground": "#8f524740",
"diffEditor.diagonalFill": "#50505040",
"merge.currentHeaderBackground": "#8f8e47",
"merge.currentContentBackground": "#453d2b",
"merge.incomingHeaderBackground": "#8f8e47",
"merge.incomingContentBackground": "#453d2b",
"sideBar.background": "#3c3f41",
"statusBar.background": "#3c3f41",
2022-01-13 18:51:42 +00:00
"statusBar.debuggingBackground": "#162c1e",
"statusBar.noFolderBackground": "#28162c",
2022-01-10 22:11:25 +00:00
"statusBarItem.errorForeground": "#ff5252",
"statusBarItem.warningForeground": "#ffff00",
"terminal.ansiBlack": "#000000",
"terminal.ansiBlue": "#3993d4",
"terminal.ansiBrightBlack": "#595959",
"terminal.ansiBrightBlue": "#10b0ff",
"terminal.ansiBrightCyan": "#00e5e5",
"terminal.ansiBrightGreen": "#4fc414",
"terminal.ansiBrightMagenta": "#ed7eed",
"terminal.ansiBrightRed": "#ff4050",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#e5bf00",
"terminal.ansiCyan": "#00a3a3",
"terminal.ansiGreen": "#5c962c",
"terminal.ansiMagenta": "#a771bf",
"terminal.ansiRed": "#f0524f",
"terminal.ansiWhite": "#808080",
"terminal.ansiYellow": "#a68a0d",
2022-01-11 13:55:56 +00:00
"debugToolBar.background": "#162c1e",
2022-01-10 14:37:02 +00:00
2022-01-10 22:11:25 +00:00
"gitDecoration.addedResourceForeground": "#629755",
"gitDecoration.modifiedResourceForeground": "#6897bb",
"gitDecoration.renamedResourceForeground": "#6897bb",
"gitDecoration.stageModifiedResourceForeground": "#6897bb",
"gitDecoration.deletedResourceForeground": "#d5756c",
"gitDecoration.stageDeletedResourceForeground": "#d5756c",
"gitDecoration.untrackedResourceForeground": "#9375b6",
"gitDecoration.ignoredResourceForeground": "#6c6c6c",
"gitDecoration.conflictingResourceForeground": "#8f8e47",
"gitDecoration.submoduleResourceForeground": "#d08d69",
2022-01-10 14:37:02 +00:00
},
"tokenColors": [
{
"name": "Base",
"scope": [
"meta.attribute.python",
],
"settings": {
"foreground": "#a9b7c6",
}
},
// Programming languages
{
"name": "Comment",
"scope": [
"comment",
"punctuation.definition.comment",
],
"settings": {
2022-01-13 18:51:42 +00:00
"foreground": "#555555",
2022-01-10 14:37:02 +00:00
}
},
2022-01-11 16:12:11 +00:00
{
"name": "Comment marker",
"scope": [
"comment keyword.codetag",
],
"settings": {
"foreground": "#707070",
"fontStyle": "bold"
}
},
2022-01-10 14:37:02 +00:00
{
"name": "Keywords",
"scope": [
"keyword",
"keyword.control.flow",
"keyword.other.special-method.dockerfile",
"storage",
"entity.name.tag.html",
"entity.name.tag.xml",
2022-01-10 15:07:17 +00:00
"entity.name.tag.localname.xml",
2022-01-10 14:37:02 +00:00
"entity.name.tag.js",
"entity.name.tag.ts",
2022-02-02 23:14:34 +00:00
"entity.name.tag.tsx",
2022-06-06 01:27:36 +00:00
"entity.name.tag.directive.ts",
"entity.name.tag.directive.tsx",
2022-01-10 14:37:02 +00:00
"support.class.component",
2022-01-11 16:12:11 +00:00
"storage.modifier.java",
2022-01-10 14:37:02 +00:00
"storage.modifier.async",
"storage.modifier.pointer",
"storage.modifier.const",
"storage.modifier.static",
2022-01-11 16:12:11 +00:00
"storage.modifier.extends",
2022-01-10 14:37:02 +00:00
"storage.modifier.specifier.const",
"storage.modifier.specifier.static",
2022-05-20 17:27:47 +00:00
"storage.modifier.sql",
2022-01-10 15:07:17 +00:00
"storage.modifier.ts",
"storage.modifier.tsx",
2022-02-11 19:35:29 +00:00
"storage.modifier.mut",
2022-02-23 04:22:52 +00:00
"storage.modifier.perl",
2022-01-10 14:37:02 +00:00
"storage.type.class",
"storage.type.function",
"storage.type.namespace",
2022-01-11 16:12:11 +00:00
"storage.type.struct",
2022-01-10 14:37:02 +00:00
"storage.type.rust",
2022-01-11 16:12:11 +00:00
"storage.type.enum",
2022-01-10 14:37:02 +00:00
"storage.type.js",
2022-01-10 15:07:17 +00:00
"storage.type.jsx",
2022-01-10 14:37:02 +00:00
"storage.type.ts",
2022-01-10 15:07:17 +00:00
"storage.type.tsx",
2022-05-20 17:27:47 +00:00
"storage.type.sql",
2022-01-10 15:07:17 +00:00
"storage.type.type.ts",
"storage.type.type.tsx",
"storage.type.interface.ts",
"storage.type.interface.tsx",
2022-05-20 14:12:29 +00:00
"storage.type.config.prisma",
"storage.type.model.prisma",
2022-01-10 14:37:02 +00:00
"storage.type.modifier.final",
"storage.type.modifier.access.public.cpp",
"storage.type.modifier.access.protected.cpp",
"storage.type.modifier.access.private.cpp",
"storage.type.modifier.access.control.public.cpp",
"storage.type.modifier.access.control.protected.cpp",
"storage.type.modifier.access.control.private.cpp",
2022-02-23 04:22:52 +00:00
"storage.type.sub.perl",
2022-01-10 14:37:02 +00:00
"constant.language.import-export-all",
2022-01-11 16:12:11 +00:00
"variable.language.wildcard",
2022-02-23 04:22:52 +00:00
"string.unquoted.heredoc punctuation.definition.string.begin",
"string.unquoted.heredoc punctuation.definition.string.end",
2022-02-23 04:32:34 +00:00
"keyword.control.preamble.latex punctuation.definition.function.latex",
2022-05-04 10:40:10 +00:00
"source.elixir", // REALLY EXPERIMENTAL
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#ff9340",
}
},
{
"name": "Punctuation",
"scope": [
"punctuation.definition",
"punctuation.accessor",
"punctuation.squarebracket",
"punctuation.curlybrace",
"punctuation.terminator",
"punctuation.parenthesis",
"punctuation.brackets",
"punctuation.section",
"punctuation.separator",
"punctuation.comma",
"punctuation.semi",
2022-01-11 16:12:11 +00:00
"punctuation.bracket",
2022-01-10 14:37:02 +00:00
"meta.brace",
"meta.tag.xml",
"meta.function.calc",
"meta.environment-variable.ruby",
"storage.type.function.arrow",
"storage.modifier.reference",
2022-01-11 16:12:11 +00:00
"storage.modifier.chomping-indicator",
"meta.directive.transaction.beancount meta.account.beancount punctuation.separator.beancount",
"meta.directive.dated.beancount meta.account.beancount punctuation.separator.beancount",
2022-02-23 04:32:34 +00:00
"punctuation.math.begin.bracket",
"punctuation.math.end.bracket",
2022-05-20 17:27:47 +00:00
"source.sql", // AGAIN VERY EXPERIMENTAL
2022-05-20 18:15:56 +00:00
"source.prisma", // why are all syntax highlighters so broken?
2022-01-11 16:12:11 +00:00
],
2022-01-10 14:37:02 +00:00
"settings": {
"foreground": "#cc7832",
}
},
{
"name": "Namespace",
"scope": [
"entity.name.type.module",
"entity.name.namespace",
"entity.name.module",
"entity.name.scope-resolution",
2022-01-11 16:12:11 +00:00
"meta.import variable.other.readwrite",
"storage.modifier.package",
"storage.modifier.import",
"constant.language.beancount",
2022-02-23 04:22:52 +00:00
"support.type.object.module",
2022-05-04 10:40:10 +00:00
"meta.preamble.latex support.class",
2022-01-10 14:37:02 +00:00
],
"settings": {
2022-01-11 16:12:11 +00:00
"foreground": "#ffdd44",
2022-01-10 14:37:02 +00:00
}
},
{
"name": "Class",
"scope": [
"entity.name.type",
"storage.type",
"storage.modifier",
"support.type",
"support.class",
"keyword.type",
"entity.other.inherited-class",
2022-01-11 16:12:11 +00:00
"entity.type.commodity",
2022-05-04 13:03:10 +00:00
"variable.other.constant.elixir",
2022-05-20 14:12:29 +00:00
"support.type.primitive.prisma"
2022-01-10 14:37:02 +00:00
],
"settings": {
2022-01-10 15:07:17 +00:00
"foreground": "#88ffff",
2022-01-10 14:37:02 +00:00
}
},
2022-01-11 16:12:11 +00:00
{
"name": "Class declaration",
"scope": [
"meta.class entity.name.type",
"meta.block.class entity.name.type.class",
"meta.block.struct entity.name.type.struct",
2022-02-11 19:35:29 +00:00
"entity.name.type.struct.rust",
2022-05-20 14:12:29 +00:00
"entity.name.type.model.prisma",
2022-01-11 16:12:11 +00:00
],
"settings": {
"foreground": "#00ffff",
"fontStyle": "bold",
}
},
{
"name": "Interface",
"scope": [
"entity.name.type.interface",
],
"settings": {
"foreground": "#88ff88",
},
},
{
"name": "Interface declaration",
"scope": [
"meta.interface entity.name.type.interface",
2022-02-11 19:35:29 +00:00
"entity.name.type.trait",
2022-01-11 16:12:11 +00:00
],
"settings": {
"foreground": "#00ff00",
"fontStyle": "bold"
}
},
2022-01-10 14:37:02 +00:00
{
"name": "Type alias",
"scope": [
"entity.name.type.alias",
],
"settings": {
"foreground": "#80ffd4",
2022-01-10 14:37:02 +00:00
}
},
2022-01-11 16:12:11 +00:00
{
"name": "Type alias declaration",
"scope": [
"meta.type.declaration entity.name.type.alias",
2022-02-11 19:35:29 +00:00
"entity.name.type.declaration",
2022-01-11 16:12:11 +00:00
],
"settings": {
"foreground": "#00ffaa",
"fontStyle": "bold",
}
},
2022-01-10 14:37:02 +00:00
{
"name": "Function",
"scope": [
"entity.name.function",
"support.function.target",
"meta.function-call.generic",
"entity.name.function.decorator",
"support.function",
2022-02-02 23:14:34 +00:00
"support.class.component.tsx",
2022-01-10 14:37:02 +00:00
"entity.name.operator",
"entity.name.function.cs",
"entity.name.function.js",
2022-01-10 15:07:17 +00:00
"entity.name.function.jsx",
2022-01-10 14:37:02 +00:00
"entity.name.function.ts",
2022-01-10 15:07:17 +00:00
"entity.name.function.tsx",
2022-01-10 14:37:02 +00:00
"entity.name.function.call",
2022-05-04 10:40:10 +00:00
"entity.name.function-call",
2022-01-10 14:37:02 +00:00
"entity.name.function.member",
"entity.name.variable.property.cs",
"entity.other.attribute-name.class.mixin",
2022-01-11 16:12:11 +00:00
"source.rst keyword.control",
2022-02-11 19:35:29 +00:00
"meta.function.call entity.name.function",
2022-02-23 04:32:34 +00:00
"punctuation.definition.function.tex",
"punctuation.definition.function.latex",
"constant.character.math.tex",
"constant.other.general.math.tex",
"punctuation.definition.constant.math.tex",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#e6e68a",
}
},
2022-01-11 16:12:11 +00:00
{
"name": "Function declaration",
"scope": [
"meta.function entity.name.function",
"meta.method.identifier entity.name.function",
"meta.definition.function entity.name.function.js",
"meta.definition.function entity.name.function.ts",
"meta.definition.function entity.name.function.jsx",
"meta.definition.function entity.name.function.tsx",
"meta.definition.variable entity.name.function.js",
"meta.definition.variable entity.name.function.ts",
"meta.definition.variable entity.name.function.jsx",
"meta.definition.variable entity.name.function.tsx",
"entity.name.type.config.prisma",
2022-01-11 16:12:11 +00:00
],
"settings": {
"foreground": "#ffff00",
"fontStyle": "bold",
}
},
2022-01-10 14:37:02 +00:00
{
"name": "Enum",
"scope": [
"entity.name.type.enum",
"entity.name.variable.enum-member",
2022-01-11 16:12:11 +00:00
"variable.other.enummember",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#e8bfff",
2022-01-10 14:37:02 +00:00
}
},
2022-01-11 16:12:11 +00:00
{
"name": "Enum definition",
"scope": [
"meta.enum.declaration entity.name.type.enum",
2022-02-11 19:35:29 +00:00
"entity.name.type.enum.rust",
2022-05-20 14:12:29 +00:00
"entity.name.type.enum.prisma",
2022-01-11 16:12:11 +00:00
],
"settings": {
"foreground": "#ca6fff",
"fontStyle": "bold",
}
},
2022-01-10 14:37:02 +00:00
{
"name": "Variable",
"scope": [
"variable",
"support.variable",
"entity.name.variable",
2022-01-10 15:07:17 +00:00
"punctuation.definition.variable",
2022-01-10 14:37:02 +00:00
"meta.use",
"constant.other.caps",
2022-01-11 16:12:11 +00:00
"meta.import meta.block variable.other.readwrite",
"source.rst entity.name.tag",
2022-02-23 04:32:34 +00:00
"meta.function.environment support.class.math.block.environment.latex",
2022-01-10 14:37:02 +00:00
],
"settings": {
2022-01-11 16:12:11 +00:00
"foreground": "#dcaf88",
2022-01-10 14:37:02 +00:00
}
},
{
"name": "Special",
"scope": [
"support.function.magic",
"support.variable.magic",
"keyword.other.this",
2022-03-25 15:39:43 +00:00
"meta.use.rust keyword.other.crate",
2022-01-10 14:37:02 +00:00
"keyword.other.special-method",
"variable.parameter.function.language.special",
"variable.language",
2022-02-11 19:35:29 +00:00
"punctuation.definition.lifetime",
"entity.name.type.lifetime",
2022-02-23 04:12:31 +00:00
"constant.language.boolean.yaml",
"support.function.builtin.shorthand.gdscript",
2022-02-23 04:22:52 +00:00
"entity.name.tag.reference.scss",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#db88db",
}
},
{
"name": "Literal / Token",
"scope": [
"constant",
"punctuation.definition.constant",
"keyword.other.unit",
"support.type.builtin",
"string.unquoted",
2022-01-11 16:12:11 +00:00
"meta.amount.beancount keyword.operator.modifier",
"support.constant",
"source.env",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#6897bb",
}
},
{
"name": "String",
"scope": [
"string",
"punctuation.definition.string",
2022-02-23 04:35:01 +00:00
"support.class.math.block.environment.latex",
"punctuation.definition.string.begin.latex",
"punctuation.definition.string.end.latex",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#438c5c",
}
},
{
"name": "Byte-string",
"scope": [
"string.quoted.binary",
2022-05-04 10:40:10 +00:00
"support.function.variable.quoted.single.elixir",
"support.function.variable.quoted.single.elixir punctuation.definition.string",
2022-02-23 04:05:22 +00:00
"string.unquoted.block.yaml",
2022-02-23 04:22:52 +00:00
"string.unquoted.heredoc",
2022-05-20 17:27:47 +00:00
"string.quoted.double.sql",
"string.quoted.double.sql punctuation.definition.string",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#a7c261",
}
},
{
"name": "Doc-string",
"scope": [
"string.quoted.docstring",
2022-01-10 15:07:17 +00:00
"comment.block.documentation",
2022-01-11 16:12:11 +00:00
"comment.block.documentation punctuation.definition.comment",
"comment.block.javadoc",
"comment.block.javadoc punctuation.definition.comment",
2022-02-11 19:35:29 +00:00
"comment.line.documentation",
2022-05-04 10:40:10 +00:00
"comment.documentation",
2022-01-11 16:12:11 +00:00
],
2022-01-10 14:37:02 +00:00
"settings": {
"foreground": "#629755",
}
},
2022-01-11 16:12:11 +00:00
{
"name": "Doc-string keyword",
"scope": [
"storage.type.class.jsdoc",
"punctuation.definition.inline.tag.jsdoc",
"punctuation.definition.block.tag.jsdoc",
"keyword.other.phpdoc",
"keyword.other.documentation.javadoc",
],
"settings": {
"foreground": "#629755",
"fontStyle": "underline bold"
}
},
{
"name": "Doc-string variable",
"scope": [
"variable.other.jsdoc",
"variable.other.description.jsdoc",
"punctuation.definition.bracket.curly.begin.jsdoc",
"punctuation.definition.bracket.curly.end.jsdoc",
"comment.block.javadoc variable.parameter",
"comment.block.javadoc entity.name.type.class",
],
"settings": {
"foreground": "#8a653b",
}
},
2022-01-10 14:37:02 +00:00
{
"name": "String escape",
"scope": [
"constant.character.escape",
"punctuation.definition.entity",
"constant.character.entity",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#a5c261",
}
},
{
"name": "Format string contents",
"scope": [
"constant.character.format.placeholder",
"entity.name.tag.mustache",
2022-03-10 15:38:40 +00:00
"entity.other.jinja.delimiter",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#86ffff",
}
},
{
"name": "Format options",
"scope": [
"storage.type.format",
"storage.type.string.python",
2022-03-10 15:38:40 +00:00
"keyword.control.jinja",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#597aff",
2022-03-10 15:38:40 +00:00
"fontStyle": "bold"
}
},
{
"name": "Format variables",
"scope": [
"variable.other.jinja",
],
"settings": {
"foreground": "#8fa5ff",
2022-01-10 14:37:02 +00:00
}
},
{
"name": "Dictionary key",
"scope": [
"keyword.key",
"keyword.other.definition.ini",
"entity.other.attribute-name",
"entity.name.tag",
"keyword.operator.tag",
"meta.object-literal.key",
"meta.object.member",
2022-01-10 15:07:17 +00:00
"variable.object.property",
2022-01-10 14:37:02 +00:00
"support.type.property-name",
"support.type.metaclass",
"string.other.option",
"variable.css",
"variable.parameter.function-call.python",
"constant.other.symbol.hashkey",
2022-01-11 16:12:11 +00:00
"support.variable.beancount",
2022-02-23 04:22:52 +00:00
"source.pip-requirements entity.name.class",
"meta.property-list.scss entity.name.tag.css",
2022-05-20 14:12:29 +00:00
"variable.parameter.key",
"variable.other.env",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#ff6736",
}
},
{
"name": "Metadata",
"scope": [
"meta.tag.preprocessor",
2022-01-10 15:23:28 +00:00
"meta.tag.metadata",
2022-01-10 14:37:02 +00:00
"meta.attribute",
2022-03-25 15:39:43 +00:00
"meta.attribute keyword.operator.attribute.inner",
2022-01-10 14:37:02 +00:00
"entity.name.function.decorator",
"entity.name.function.macro",
"punctuation.definition.decorator",
"comment.line.number-sign.shebang",
"keyword.control.at-rule",
2022-01-11 16:12:11 +00:00
"keyword.control.at-rule punctuation.definition.keyword",
2022-01-10 14:37:02 +00:00
"keyword.control.directive",
"meta.preprocessor",
"punctuation.definition.directive",
2022-02-11 19:35:29 +00:00
"meta.function.decorator support.type",
"meta.attribute punctuation.definition.attribute",
"meta.attribute punctuation.brackets.attribute",
2022-02-23 04:22:52 +00:00
"support.type.vendored.property-name",
2022-05-20 14:12:29 +00:00
"entity.name.function.attribute.prisma",
2022-06-06 01:29:36 +00:00
"comment.line.triple-slash.directive",
"comment.line.triple-slash.directive punctuation.definition.comment",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#bbb529",
}
},
// Markup languages
{
"name": "Heading",
"scope": [
"heading",
2022-01-11 16:12:11 +00:00
"markup.heading",
2022-01-10 15:07:17 +00:00
"punctuation.definition.heading",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#99ffff",
}
},
{
"name": "Bold",
"scope": [
"markup.bold",
],
"settings": {
"foreground": "#ffbc82",
}
},
{
"name": "Italic",
"scope": [
"markup.italic",
],
"settings": {
"foreground": "#ffbc82",
}
},
{
"name": "Underline",
"scope": [
"markup.underline",
],
"settings": {
"foreground": "#ffbc82",
}
},
{
"name": "Link text",
"scope": [
"meta.link",
"meta.image",
"string.other.link",
2022-01-11 16:12:11 +00:00
"punctuation.definition.string.begin.markdown",
"punctuation.definition.string.end.markdown",
2022-06-06 01:26:49 +00:00
"punctuation.definition.link.title.begin.markdown",
"punctuation.definition.link.title.end.markdown",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#00d0ff",
}
},
{
"name": "Link URL",
"scope": [
"markup.underline.link",
"keyword.operator.link",
"variable.parameter.url",
2022-06-06 01:26:49 +00:00
"punctuation.definition.metadata.markdown",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#2a7ede",
}
},
{
"name": "Code block",
"scope": [
"markup.fenced_code",
2022-01-11 16:12:11 +00:00
"punctuation.definition.markdown",
2022-01-11 16:14:11 +00:00
"punctuation.definition.raw.markdown",
2022-01-10 14:37:02 +00:00
"markup.inline.raw",
2022-01-11 16:12:11 +00:00
"source.rst string.interpolated",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#808080",
}
},
{
"name": "Code block language",
"scope": [
"markup.fenced_code.block.language",
"fenced_code.block.language", // Markdown plugin bug?
],
"settings": {
"foreground": "#bbb529",
}
},
{
"name": "Quote / Greentext",
"scope": [
"markup.quote",
2022-02-23 04:32:34 +00:00
"punctuation.definition.quote.begin",
"punctuation.definition.quote.end",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#639656",
}
},
2022-02-23 03:46:53 +00:00
{
"name": "Inserted",
"scope": [
"markup.inserted",
],
"settings": {
"foreground": "#99ff99",
}
},
{
"name": "Inserted header",
"scope": [
"punctuation.definition.inserted",
"punctuation.definition.to-file",
"meta.diff.header.to-file",
],
"settings": {
"foreground": "#44ff44",
"fontStyle": "bold"
}
},
{
"name": "Deleted",
"scope": [
"markup.deleted",
],
"settings": {
"foreground": "#ff9999",
}
},
{
"name": "Deleted header",
"scope": [
"punctuation.definition.deleted",
"punctuation.definition.from-file",
"meta.diff.header.from-file",
],
"settings": {
"foreground": "#ff4444",
"fontStyle": "bold"
}
},
2022-01-10 14:37:02 +00:00
// Logging languages
{
"name": "Error",
"scope": [
"log.error",
],
"settings": {
"foreground": "#ffa6a6",
}
},
{
"name": "Warning",
"scope": [
"log.warn",
"log.warning",
],
"settings": {
"foreground": "#ffffa6",
}
},
{
"name": "Info",
"scope": [
"log.info",
],
"settings": {
"foreground": "#99eeff",
}
},
{
"name": "Verbose",
"scope": [
"log.verbose",
],
"settings": {
"foreground": "#a8a8ff",
}
},
{
"name": "Debug",
"scope": [
"log.debug",
],
"settings": {
"foreground": "#ca77ff",
}
},
{
2022-02-23 03:46:53 +00:00
"name": "Additional context",
2022-01-10 14:37:02 +00:00
"scope": [
"log.date",
"constant.numeric.date",
2022-01-11 16:12:11 +00:00
"meta.directive.dated.beancount punctuation.separator",
"meta.directive.transaction.beancount punctuation.separator",
2022-02-23 03:46:53 +00:00
"meta.toc-list.line-number",
2022-01-10 14:37:02 +00:00
],
"settings": {
2022-01-11 16:12:11 +00:00
"foreground": "#8a653b",
2022-01-10 14:37:02 +00:00
}
},
// Configuration languages
{
"name": "Section titles",
"scope": [
"meta.tag.table.toml",
"entity.name.section.group-title",
],
"settings": {
"foreground": "#ff9340",
}
},
// Stylesheets
{
"name": "Tag selector",
"scope": [
"entity.name.tag.css",
"entity.name.tag.wildcard.css",
2022-02-23 04:22:52 +00:00
"entity.name.tag.wildcard.scss",
2022-01-10 14:37:02 +00:00
],
"settings": {
"foreground": "#00ff32",
}
},
{
"name": "Attribute selector",
"scope": [
"meta.attribute-selector",
],
"settings": {
"foreground": "#ff9340",
}
},
{
"name": "Class selector",
"scope": [
"entity.other.attribute-name.class",
],
"settings": {
"foreground": "#fcff00",
}
},
{
"name": "ID selector",
"scope": [
"entity.other.attribute-name.id",
],
"settings": {
"foreground": "#00ffff",
}
},
{
"name": "Pseudo-class selector",
"scope": [
"entity.other.attribute-name.pseudo-class",
],
"settings": {
"foreground": "#ca77ff",
}
},
{
"name": "Pseudo-element selector",
"scope": [
"entity.other.attribute-name.pseudo-element",
],
"settings": {
"foreground": "#ff00ff",
}
},
{
"name": "Parent selector",
"scope": [
"entity.other.attribute-name.parent-selector",
],
"settings": {
"foreground": "#00ffaa",
}
},
2022-05-20 14:12:29 +00:00
// Database things
{
"name": "Database relationships",
"scope": [
"variable.language.relations.prisma",
],
"settings": {
"foreground": "#00ffaa",
"fontStyle": "italic",
}
},
2022-01-10 14:37:02 +00:00
// Invalid stuff
{
"name": "Invalid",
"scope": [
"invalid",
],
"settings": {
"foreground": "#ff5252",
}
2022-01-10 15:07:17 +00:00
},
2022-01-10 14:37:02 +00:00
],
}