Commit e8ca84ee authored by Jordan Frankfurt's avatar Jordan Frankfurt Committed by GitHub

fix: update theme gold400 value (#6213)

fix: update theme gold200 value
parent dae7314a
...@@ -141,7 +141,7 @@ const TEXT_COLORS: { [chainId in NetworkAlertChains]: string } = { ...@@ -141,7 +141,7 @@ const TEXT_COLORS: { [chainId in NetworkAlertChains]: string } = {
[SupportedChainId.OPTIMISM]: '#ff3856', [SupportedChainId.OPTIMISM]: '#ff3856',
[SupportedChainId.OPTIMISM_GOERLI]: '#ff3856', [SupportedChainId.OPTIMISM_GOERLI]: '#ff3856',
[SupportedChainId.ARBITRUM_ONE]: '#0490ed', [SupportedChainId.ARBITRUM_ONE]: '#0490ed',
[SupportedChainId.BNB]: colors.gold200, [SupportedChainId.BNB]: colors.gold400,
[SupportedChainId.ARBITRUM_GOERLI]: '#0490ed', [SupportedChainId.ARBITRUM_GOERLI]: '#0490ed',
} }
......
...@@ -10,7 +10,7 @@ export const darkTheme: Theme = { ...@@ -10,7 +10,7 @@ export const darkTheme: Theme = {
explicitWhite: '#FFFFFF', explicitWhite: '#FFFFFF',
green: vars.color.green200, green: vars.color.green200,
gold: vars.color.gold200, gold: vars.color.gold400,
violet: vars.color.violet200, violet: vars.color.violet200,
backgroundFloating: '0000000C', backgroundFloating: '0000000C',
......
...@@ -58,6 +58,7 @@ export const colors = { ...@@ -58,6 +58,7 @@ export const colors = {
yellowVibrant: '#FAF40A', yellowVibrant: '#FAF40A',
// TODO: add gold 50-900 // TODO: add gold 50-900
gold200: '#EEB317', gold200: '#EEB317',
gold400: '#B17900',
goldVibrant: '#FEB239', goldVibrant: '#FEB239',
green50: '#E3F3E6', green50: '#E3F3E6',
green100: '#BFEECA', green100: '#BFEECA',
...@@ -148,14 +149,14 @@ export const darkTheme = { ...@@ -148,14 +149,14 @@ export const darkTheme = {
accentAction: colors.blue400, accentAction: colors.blue400,
accentActive: colors.blue400, accentActive: colors.blue400,
accentSuccess: colors.green200, accentSuccess: colors.green200,
accentWarning: colors.gold200, accentWarning: colors.gold400,
accentFailure: colors.red300, accentFailure: colors.red300,
accentCritical: colors.red300, accentCritical: colors.red300,
accentActionSoft: opacify(24, colors.blue400), accentActionSoft: opacify(24, colors.blue400),
accentActiveSoft: opacify(24, colors.blue400), accentActiveSoft: opacify(24, colors.blue400),
accentSuccessSoft: opacify(24, colors.green400), accentSuccessSoft: opacify(24, colors.green400),
accentWarningSoft: opacify(24, colors.gold200), accentWarningSoft: opacify(24, colors.gold400),
accentFailureSoft: opacify(12, colors.red300), accentFailureSoft: opacify(12, colors.red300),
accentTextDarkPrimary: opacify(80, colors.gray900), accentTextDarkPrimary: opacify(80, colors.gray900),
...@@ -200,14 +201,14 @@ export const lightTheme: Theme = { ...@@ -200,14 +201,14 @@ export const lightTheme: Theme = {
accentAction: colors.pink400, accentAction: colors.pink400,
accentActive: colors.blue400, accentActive: colors.blue400,
accentSuccess: colors.green300, accentSuccess: colors.green300,
accentWarning: colors.gold200, accentWarning: colors.gold400,
accentFailure: colors.red400, accentFailure: colors.red400,
accentCritical: colors.red400, accentCritical: colors.red400,
accentActionSoft: opacify(12, colors.pink400), accentActionSoft: opacify(12, colors.pink400),
accentActiveSoft: opacify(24, colors.blue400), accentActiveSoft: opacify(24, colors.blue400),
accentSuccessSoft: opacify(24, colors.green300), accentSuccessSoft: opacify(24, colors.green300),
accentWarningSoft: opacify(24, colors.gold200), accentWarningSoft: opacify(24, colors.gold400),
accentFailureSoft: opacify(12, colors.red400), accentFailureSoft: opacify(12, colors.red400),
accentTextDarkPrimary: opacify(80, colors.gray900), accentTextDarkPrimary: opacify(80, colors.gray900),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment