diff --git a/src/styles/theme/themes/dark.ts b/src/styles/theme/themes/dark.ts index c2fcac6af13e..95cf518921a9 100644 --- a/src/styles/theme/themes/dark.ts +++ b/src/styles/theme/themes/dark.ts @@ -65,7 +65,6 @@ const darkTheme = { dropUIBG: 'rgba(6,27,9,0.92)', receiptDropUIBG: 'rgba(3, 212, 124, 0.84)', checkBox: colors.green400, - pickerOptionsTextColor: colors.productDark900, imageCropBackgroundColor: colors.productDark700, fallbackIconColor: colors.green700, reactionActiveBackground: colors.green600, diff --git a/src/styles/theme/themes/light.ts b/src/styles/theme/themes/light.ts index 3cd052046f43..f10885ae4d2e 100644 --- a/src/styles/theme/themes/light.ts +++ b/src/styles/theme/themes/light.ts @@ -65,7 +65,6 @@ const lightTheme = { dropUIBG: 'rgba(252, 251, 249, 0.92)', receiptDropUIBG: 'rgba(3, 212, 124, 0.84)', checkBox: colors.green400, - pickerOptionsTextColor: colors.productLight900, imageCropBackgroundColor: colors.productLight700, fallbackIconColor: colors.green700, reactionActiveBackground: colors.green100, diff --git a/src/styles/theme/types.ts b/src/styles/theme/types.ts index 56da65ddd17d..b443295b8167 100644 --- a/src/styles/theme/types.ts +++ b/src/styles/theme/types.ts @@ -68,7 +68,6 @@ type ThemeColors = { dropUIBG: Color; receiptDropUIBG: Color; checkBox: Color; - pickerOptionsTextColor: Color; imageCropBackgroundColor: Color; fallbackIconColor: Color; reactionActiveBackground: Color;