Skip to content

Commit

Permalink
fix blue and indigo (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann authored Nov 22, 2024
1 parent 4ad3196 commit 0940bae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/storybook/stories/Color/Base/Display-Scales.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ const Color = ({color: colorName}: {color: string}) => {
}

export const Gray = () => <Color color="gray" />
export const Indigo = () => <Color color="blue" />
export const Blue = () => <Color color="indigo" />
export const Indigo = () => <Color color="indigo" />
export const Blue = () => <Color color="blue" />
export const Cyan = () => <Color color="cyan" />
export const Teal = () => <Color color="teal" />
export const Pine = () => <Color color="pine" />
Expand Down

0 comments on commit 0940bae

Please sign in to comment.