From 0b9b546e145a2317b3d304dc59e8616d485ff661 Mon Sep 17 00:00:00 2001 From: Sesh Sadasivam Date: Mon, 26 Apr 2021 11:21:29 -0400 Subject: [PATCH] Fix neutral callout colors in xcode-civic theme --- src_js/subthemes/definitions/common_dark_theme_colors.ts | 2 +- src_js/subthemes/definitions/xcode_civic.theme.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src_js/subthemes/definitions/common_dark_theme_colors.ts b/src_js/subthemes/definitions/common_dark_theme_colors.ts index 90576cc5..eda55b17 100644 --- a/src_js/subthemes/definitions/common_dark_theme_colors.ts +++ b/src_js/subthemes/definitions/common_dark_theme_colors.ts @@ -19,7 +19,7 @@ export default { '--main-blockquote-text-border': '#3b434b', '--main-header-border-bottom-color': BORDER_LINE_COLOR, - '--primer-spec-callout-neutral-bg-color': 'rgb(22, 27, 34)', + '--primer-spec-callout-neutral-bg-color': 'rgba(22, 27, 34, 0.8)', '--primer-spec-callout-neutral-text-color': MAIN_TEXT_COLOR, '--primer-spec-callout-neutral-border-color': 'rgb(48, 54, 61)', '--primer-spec-callout-info-bg-color': 'rgba(56, 139, 253, 0.1)', diff --git a/src_js/subthemes/definitions/xcode_civic.theme.ts b/src_js/subthemes/definitions/xcode_civic.theme.ts index 082d6a53..dab114af 100644 --- a/src_js/subthemes/definitions/xcode_civic.theme.ts +++ b/src_js/subthemes/definitions/xcode_civic.theme.ts @@ -41,6 +41,7 @@ const xcode_dark_theme_vars: SubthemeDefinitionType = { '--tt-border-radius': '3px', '--main-header-border-bottom-color': BORDER_LINE_COLOR, + '--primer-spec-callout-neutral-text-color': 'black', '--primer-spec-callout-info-text-color': 'black', '--primer-spec-callout-warning-text-color': 'black', '--primer-spec-callout-danger-text-color': 'black',