From b8c7c56c28599ed85dbf1ad28ea632e053987eb3 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Sun, 3 Feb 2019 16:50:55 -0500 Subject: Use comment color for Markdown quotes for generated themes --- themes/dark/arc-dark.json | 7 +++++++ themes/dark/yaru.json | 7 +++++++ themes/src/dark/arc-dark.ts | 3 +++ themes/src/dark/yaru.ts | 5 ++++- 4 files changed, 21 insertions(+), 1 deletion(-) (limited to 'themes') diff --git a/themes/dark/arc-dark.json b/themes/dark/arc-dark.json index e22311b..01bbd09 100644 --- a/themes/dark/arc-dark.json +++ b/themes/dark/arc-dark.json @@ -214,6 +214,13 @@ "foreground": "#d64937" } }, + { + "name": "Markdown block quote", + "scope": "text.html.markdown markup.quote", + "settings": { + "foreground": "#a8b4de" + } + }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", diff --git a/themes/dark/yaru.json b/themes/dark/yaru.json index 42f7ba5..ec59fa0 100644 --- a/themes/dark/yaru.json +++ b/themes/dark/yaru.json @@ -214,6 +214,13 @@ "foreground": "#ff7e30" } }, + { + "name": "Markdown block quote", + "scope": "text.html.markdown markup.quote", + "settings": { + "foreground": "#a8a8a8" + } + }, { "name": "Markdown list item", "scope": "text.html.markdown beginning.punctuation.definition.list", diff --git a/themes/src/dark/arc-dark.ts b/themes/src/dark/arc-dark.ts index 51cc2ae..c59f760 100644 --- a/themes/src/dark/arc-dark.ts +++ b/themes/src/dark/arc-dark.ts @@ -9,6 +9,7 @@ const colors = { arcGray4: '#7c818c', arcGray5: '#21232c', arcBlue: '#5294e2', + commentBlue: '#a8b4de', black: '#262b36', red: '#9c3528', green: '#61bc3b', @@ -38,8 +39,10 @@ const colorSet: IColorSet = { }, syntax: { boolean: colors.yellow, + comment: colors.commentBlue, functionCall: colors.brightCyan, identifier: colors.brightRed, + markdownQuote: colors.commentBlue, }, terminal: { black: colors.black, diff --git a/themes/src/dark/yaru.ts b/themes/src/dark/yaru.ts index 3252d31..c34fac5 100644 --- a/themes/src/dark/yaru.ts +++ b/themes/src/dark/yaru.ts @@ -17,7 +17,8 @@ const colors = { bodyGray: '#383838', editorGray: '#2f2f2f', sideBarGray: '#3f3f3f', - highlightGray: '#575757' + highlightGray: '#575757', + commentGray: '#a8a8a8', } const colorSet: IColorSet = { @@ -30,7 +31,9 @@ const colorSet: IColorSet = { color4: colors.cyan }, syntax: { + comment: colors.commentGray, keyword: colors.lightAubergine, + markdownQuote: colors.commentGray, }, terminal: { black: '#000000', -- cgit v1.2.3