Skip to content

Commit

Permalink
Adjust hue for warning callouts specifically (#563)
Browse files Browse the repository at this point in the history
* adjust hue for callouts specifically
  • Loading branch information
snide authored Mar 22, 2018
1 parent 0bba638 commit 8c3c08f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion src/components/call_out/_call_out.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$callOutTypes: (
primary: $euiColorPrimary,
success: $euiColorSecondary,
warning: $euiColorWarning,
warning: adjust-hue($euiColorWarning, 20%),
danger: $euiColorDanger,
);

Expand Down
1 change: 1 addition & 0 deletions src/themes/eui/eui_colors_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ $euiColorDarkShade: #D9D9D9;
$euiColorDarkestShade: #F5F5F5;
$euiColorFullShade: #FFF;
$euiColorPrimary: #4da1c0;
$euiColorWarning: #e45c29;
$euiColorDanger: #bf4d4d;
$euiTextColor: #DDD;

Expand Down

0 comments on commit 8c3c08f

Please sign in to comment.