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

Commit

Permalink
Add inactiveStep color
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Aug 10, 2021
1 parent a9bb724 commit 2e0a1a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gameflow-tv/flume",
"version": "0.2.0",
"version": "0.2.1",
"description": "React implementation of the Flume design system",
"module": "dist/index.js",
"files": [
Expand Down
4 changes: 3 additions & 1 deletion src/lib/theme/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export type Colors = {
elimination: string
win: string
loss: string
inactiveStep: string
}

const fallback: Colors = {
Expand Down Expand Up @@ -79,7 +80,8 @@ const fallback: Colors = {
runnerUp: palette.mistyGray,
elimination: palette.lightGray,
win: palette.emeraldGreen,
loss: palette.cinnabarRed
loss: palette.cinnabarRed,
inactiveStep: palette.white20
}

export default fallback

0 comments on commit 2e0a1a6

Please sign in to comment.