From f792c0a2a711229dcda7f7c58aa6539c13da1a53 Mon Sep 17 00:00:00 2001 From: cdOut <88325488+cdOut@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:07:33 +0200 Subject: [PATCH] replace theme color progressBarFill with success --- src/styles/index.ts | 2 +- src/styles/theme/themes/dark.ts | 1 - src/styles/theme/themes/light.ts | 1 - src/styles/theme/types.ts | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/styles/index.ts b/src/styles/index.ts index 169b36b1d140..062ffb00b78a 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -4553,7 +4553,7 @@ const styles = (theme: ThemeColors) => headerProgressBarFill: { borderRadius: variables.componentBorderRadiusRounded, height: '100%', - backgroundColor: theme.progressBarFill, + backgroundColor: theme.success, }, interactiveStepHeaderContainer: { diff --git a/src/styles/theme/themes/dark.ts b/src/styles/theme/themes/dark.ts index 0867e7ab88f3..988b9b2b1462 100644 --- a/src/styles/theme/themes/dark.ts +++ b/src/styles/theme/themes/dark.ts @@ -89,7 +89,6 @@ const darkTheme = { mapAttributionText: colors.black, white: colors.white, progressBarBackground: colors.productDark400, - progressBarFill: colors.green400, videoPlayerBG: `${colors.productDark100}cc`, transparentWhite: `${colors.white}51`, diff --git a/src/styles/theme/themes/light.ts b/src/styles/theme/themes/light.ts index e22a1228aa11..5066fb4ef959 100644 --- a/src/styles/theme/themes/light.ts +++ b/src/styles/theme/themes/light.ts @@ -89,7 +89,6 @@ const lightTheme = { mapAttributionText: colors.black, white: colors.white, progressBarBackground: colors.productLight400, - progressBarFill: colors.green400, videoPlayerBG: `${colors.productDark100}cc`, transparentWhite: `${colors.white}51`, diff --git a/src/styles/theme/types.ts b/src/styles/theme/types.ts index e59cdd3a2d39..ccc637107920 100644 --- a/src/styles/theme/types.ts +++ b/src/styles/theme/types.ts @@ -91,7 +91,6 @@ type ThemeColors = { mapAttributionText: Color; white: Color; progressBarBackground: Color; - progressBarFill: Color; videoPlayerBG: Color; transparentWhite: Color;