Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remap few colors for EuiLoadingSpinner and EuiLoadingChart #8276

Merged
merged 12 commits into from
Jan 17, 2025
Prev Previous commit
Next Next commit
Change spinner mapping
  • Loading branch information
ek-so authored and mgadewoll committed Jan 15, 2025
commit 32c8db69e6f0f233ef48ac7c2fba70df108f1867
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const euiSpinnerBorderColorsCSS = (
colors: EuiLoadingSpinnerColor = {}
): string => {
const {
border = euiTheme.colors.lightShade,
highlight = euiTheme.colors.primary,
border = euiTheme.colors.borderBasePlain,
highlight = euiTheme.colors.borderStrongPrimary,
mgadewoll marked this conversation as resolved.
Show resolved Hide resolved
} = colors;
return `${highlight} ${border} ${border} ${border}`;
};
Expand Down