Skip to content

Commit

Permalink
fix: missing commas
Browse files Browse the repository at this point in the history
Signed-off-by: hxtree <[email protected]>
  • Loading branch information
hxtree committed Apr 3, 2024
1 parent ae0414a commit 028837b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions clients/design-system/src/styles/utils/_color-pallette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ $color-tertiary: $color-gold;
$color-inherit: $color-gray;

:root {
--color-berkeley-blue: $color-berkeley-blue: --color-gold: $color-gold;
--color-berkeley-blue: $color-berkeley-blue;
--color-gold: $color-gold;
--color-sky-blue: $color-sky-blue;
--color-sgbus-green: $color-sgbus-green;
--color-murrey: $color-murrey;
--color-white: $color-white;
--color-black: $color-black;
--color-primary: $color-primary: --color-secondary: $color-secondary;
--color-primary: $color-primary;
--color-secondary: $color-secondary;
--color-tertiary: $color-tertiary;
--color-gray: $color-gray;
}

0 comments on commit 028837b

Please sign in to comment.