Skip to content

Commit

Permalink
fix: fix the status pill colors
Browse files Browse the repository at this point in the history
  • Loading branch information
pphminions committed Jul 17, 2019
1 parent 28d5156 commit 56b7a78
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/adslot-ui/StatusPill/styles.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@import '~styles/variable';

$color-primary: $color-status-blue;
$color-primary-background: rgba($color-primary, .35);
$color-primary-background: $color-status-light-blue;
$color-success: $color-status-green;
$color-success-background: rgba($color-success, .35);
$color-success-background: $color-status-light-green;
$color-warning: $color-status-orange;
$color-warning-background: rgba($color-warning, .35);
$color-warning-background: $color-status-light-orange;
$color-error: $color-status-red;
$color-error-background: rgba($color-error, .35);
$color-error-background: $color-status-light-red;
$color-light: $color-status-light;
$color-inverse-border: $color-status-light;

Expand Down
5 changes: 5 additions & 0 deletions src/styles/color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ $color-status-red: $color-red;
$color-status-orange: #f93;
$color-status-light: $color-gray-lighter;

$color-status-light-orange: #fec985;
$color-status-light-red: #f9b7b0;
$color-status-light-blue: #c1e1ec;
$color-status-light-green: #c5e6dc;

// Usage: Use these values, not the colours directly

// Informative
Expand Down

0 comments on commit 56b7a78

Please sign in to comment.