Skip to content

Commit

Permalink
Retire blue-medium-800.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joen Asmussen committed Jun 25, 2020
1 parent 4cff948 commit b799ccb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/base-styles/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ $light-gray-200: #f3f4f5;
$light-gray-100: #f8f9f9;

// Additional colors.
$blue-medium-800: #00739c;
$blue-medium-700: #007fac;
$blue-medium-500: #00a0d2;
$blue-medium-400: #33b3db;
Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/src/calendar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}

tfoot a {
color: $blue-medium-800;
color: var(--wp-admin-theme-color);
}

table tbody,
Expand Down
7 changes: 4 additions & 3 deletions packages/nux/src/components/dot-tip/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ $dot-scale: 3; // How much the pulse animation should scale up by in size

&::before {
animation: nux-pulse 1.6s infinite cubic-bezier(0.17, 0.67, 0.92, 0.62);
background: rgba($blue-medium-800, 0.9);
background: rgba(#00739c, 0.9);
opacity: 0.9;
height: $dot-size * $dot-scale;
left: -($dot-size * $dot-scale) / 2;
top: -($dot-size * $dot-scale) / 2;
Expand All @@ -21,7 +22,7 @@ $dot-scale: 3; // How much the pulse animation should scale up by in size
}

&::after {
background: $blue-medium-800;
background: #00739c;
height: $dot-size;
left: -$dot-size / 2;
top: -$dot-size / 2;
Expand All @@ -30,7 +31,7 @@ $dot-scale: 3; // How much the pulse animation should scale up by in size

@keyframes nux-pulse {
100% {
background: rgba($blue-medium-800, 0);
background: rgba(#00739c, 0);
transform: scale(1);
}
}
Expand Down

0 comments on commit b799ccb

Please sign in to comment.