From 928106067fe5f17f42ce3542fe38f147aabdff77 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 29 Jul 2021 23:04:45 -0400 Subject: [PATCH] chore: Tone down notices (#2393) --- shared/theme.js | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/shared/theme.js b/shared/theme.js index 0095b7201..011c66340 100644 --- a/shared/theme.js +++ b/shared/theme.js @@ -97,10 +97,12 @@ export const base = { blockToolbarIcon: undefined, blockToolbarIconSelected: colors.black, - noticeTipBackground: colors.brand.purple, - noticeTipText: colors.white, - noticeWarningBackground: colors.danger, - noticeWarningText: colors.white, + noticeInfoBackground: colors.warmGrey, + noticeInfoText: colors.almostBlack, + noticeTipBackground: "#fce5bb", + noticeTipText: colors.almostBlack, + noticeWarningBackground: "#ffadbf", + noticeWarningText: colors.almostBlack, breakpoints: { mobile: 0, // targeting all devices @@ -177,8 +179,6 @@ export const light = { embedBorder: colors.slateLight, horizontalRule: colors.smokeDark, - noticeInfoBackground: colors.warmGrey, - noticeInfoText: colors.almostBlack, progressBarBackground: colors.slateLight, scrollbarBackground: colors.smoke, @@ -240,8 +240,13 @@ export const dark = { embedBorder: colors.black50, horizontalRule: lighten(0.1, colors.almostBlack), - noticeInfoBackground: colors.white10, - noticeInfoText: colors.almostWhite, + noticeInfoBackground: "#252a37", + noticeInfoText: colors.white, + noticeTipBackground: "#a3840a", + noticeTipText: colors.white, + noticeWarningBackground: "#7a001b", + noticeWarningText: colors.white, + progressBarBackground: colors.slate, scrollbarBackground: colors.black,