Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
fix: order of color and name in swatch
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewrmarshall committed Jan 23, 2024
1 parent 76df8db commit ee701ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/BrandColors.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export const CSS: Story = {
.getPropertyValue(varName)
.trim();
brandColors[name] = {
color: `var(${varName})`,
name: color,
color: color,
name: `var(${varName})`,
};
});

Expand Down

0 comments on commit ee701ca

Please sign in to comment.