Skip to content

Commit

Permalink
chore: migrate vui-source changes to v3.8.0 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrderyk authored Dec 20, 2024
1 parent b89ff27 commit b6832a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/callout/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $color: (
"background-color": $colorWarningLighterShade
),
danger: (
"border-color": transparentize($colorDanger, 0.5),
"border-color": $colorDangerLightShade,
"background-color": $colorDangerLighterShade
),
neutral: (
Expand Down
9 changes: 6 additions & 3 deletions src/lib/sassUtils/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Semantic colors
$colorAccent: #5f30c3 !default;
$colorAccentLightShade: transparentize($colorAccent, 0.5);
$colorAccentLightShade: transparentize($colorAccent, 0.5) !default;
$colorAccentLighterShade: #eee7ff !default;

$colorPrimary: #045dda !default;
Expand All @@ -12,13 +12,16 @@ $colorSuccessLightShade: transparentize($colorSuccess, 0.5) !default;
$colorSuccessLighterShade: #e2f2e0 !default;

$colorWarning: #a86f1b !default;
$colorWarningLightShade: transparentize($colorWarning, 0.5);
$colorWarningLightShade: transparentize($colorWarning, 0.5) !default;
$colorWarningLighterShade: #ffeed4 !default;

$colorDanger: #d22d2d !default;
$colorDangerLightShade: transparentize($colorDanger, 0.5);
$colorDangerLightShade: transparentize($colorDanger, 0.5) !default;
$colorDangerLighterShade: #fff1f1 !default;

// Special colors
$colorPrimaryHighlight: #d9e2ff !default;

// Neutral colors
$colorEmptyShade: #ffffff !default;
$colorLightShade: #eeeff1 !default;
Expand Down

0 comments on commit b6832a8

Please sign in to comment.