From 0882c0efa703824fb8417aef63ad5f7ccf7a0c1e Mon Sep 17 00:00:00 2001 From: Dave Snider Date: Thu, 22 Mar 2018 09:50:18 -0700 Subject: [PATCH 1/4] adjust hue for callouts specifically --- src/components/call_out/_call_out.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/call_out/_call_out.scss b/src/components/call_out/_call_out.scss index 54a8a0b2c75..b0ed06447b6 100644 --- a/src/components/call_out/_call_out.scss +++ b/src/components/call_out/_call_out.scss @@ -11,7 +11,7 @@ $callOutTypes: ( primary: $euiColorPrimary, success: $euiColorSecondary, - warning: $euiColorWarning, + warning: adjust-hue($euiColorWarning, 20%), danger: $euiColorDanger, ); From 99696e7abf5d267a8b31fc78ad8907b036dbaa8c Mon Sep 17 00:00:00 2001 From: Dave Snider Date: Thu, 22 Mar 2018 09:59:17 -0700 Subject: [PATCH 2/4] coloring for dark --- src/themes/eui/eui_colors_dark.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/themes/eui/eui_colors_dark.scss b/src/themes/eui/eui_colors_dark.scss index 10db048cab6..b04f5aac548 100644 --- a/src/themes/eui/eui_colors_dark.scss +++ b/src/themes/eui/eui_colors_dark.scss @@ -8,6 +8,8 @@ $euiColorDarkShade: #D9D9D9; $euiColorDarkestShade: #F5F5F5; $euiColorFullShade: #FFF; $euiColorPrimary: #4da1c0; +$euiColorPrimary: #4da1c0; +$euiColorWarning: #e45c29; $euiColorDanger: #bf4d4d; $euiTextColor: #DDD; From a36e1fde36a48976c1e8cbf0550e70eced6480b9 Mon Sep 17 00:00:00 2001 From: Dave Snider Date: Thu, 22 Mar 2018 10:01:35 -0700 Subject: [PATCH 3/4] changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92ebabfa170..18fc8a92c26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # [`master`](https://github.com/elastic/eui/tree/master) +- Adjust `EuiCallOut` and dark theme warning coloring ([#563](https://github.com/elastic/eui/pull/563)) + **Bug fixes** - Fixed `EuiToolTip` bug which caused the tooltip to hide when moving the mouse around inside of the trigger element ([#557](https://github.com/elastic/eui/pull/557)) From 3b81a7f353abfb187ffa061b23ec5ae747364e6c Mon Sep 17 00:00:00 2001 From: Dave Snider Date: Thu, 22 Mar 2018 10:47:13 -0700 Subject: [PATCH 4/4] remove extra color --- src/themes/eui/eui_colors_dark.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/themes/eui/eui_colors_dark.scss b/src/themes/eui/eui_colors_dark.scss index b04f5aac548..486ea18c2f5 100644 --- a/src/themes/eui/eui_colors_dark.scss +++ b/src/themes/eui/eui_colors_dark.scss @@ -8,7 +8,6 @@ $euiColorDarkShade: #D9D9D9; $euiColorDarkestShade: #F5F5F5; $euiColorFullShade: #FFF; $euiColorPrimary: #4da1c0; -$euiColorPrimary: #4da1c0; $euiColorWarning: #e45c29; $euiColorDanger: #bf4d4d; $euiTextColor: #DDD;