From 2e0a1a6ebb9ec3cd7e03acdd0483bbf1697541b1 Mon Sep 17 00:00:00 2001 From: Arne Molland Date: Tue, 10 Aug 2021 15:42:18 +0200 Subject: [PATCH] Add inactiveStep color --- package.json | 2 +- src/lib/theme/colors.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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