diff --git a/package.json b/package.json index bc35edbd..0d6a1ab1 100644 --- a/package.json +++ b/package.json @@ -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": [ diff --git a/src/lib/theme/colors.ts b/src/lib/theme/colors.ts index c41bcfa2..63088768 100644 --- a/src/lib/theme/colors.ts +++ b/src/lib/theme/colors.ts @@ -39,6 +39,7 @@ export type Colors = { elimination: string win: string loss: string + inactiveStep: string } const fallback: Colors = { @@ -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