Skip to content

Commit

Permalink
Fix default theme values
Browse files Browse the repository at this point in the history
  • Loading branch information
veej committed Dec 7, 2023
1 parent 137ec13 commit 8ef27cc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/configuration-builder/src/ConfiguratorStatusContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const defaultTokens: TokensConfig = {
backgroundColor: {
backgroundPrimary: colorToken("white"),
backgroundSecondary: colorToken("Neutral-1"),
backgroundOverlay: colorToken("Neutral-20", 20),
backgroundOverlay: colorToken("Neutral-20", 40),
backgroundPrimaryInverse: colorToken("Neutral-90"),
backgroundSecondaryInverse: colorToken("Neutral-80"),
backgroundInteractive: colorToken("Interactive-40"),
Expand All @@ -100,7 +100,7 @@ export const defaultTokens: TokensConfig = {
foregroundColor: {
foregroundPrimary: colorToken("Neutral-90"),
foregroundSecondary: colorToken("Neutral-50"),
foregroundPrimaryInverse: colorToken("Neutral-1"),
foregroundPrimaryInverse: colorToken("white"),
foregroundSecondaryInverse: colorToken("Neutral-30"),
foregroundInteractive: colorToken("Interactive-40"),
foregroundInformative: colorToken("Informative-30"),
Expand Down Expand Up @@ -129,17 +129,17 @@ export const defaultTokens: TokensConfig = {
primaryTransparentHoverBackground: colorToken("Interactive-10", 40),
primaryTransparentFocusBackground: colorToken("Interactive-10", 40),
dangerSolidEnabledBackground: colorToken("Negative-40"),
dangerSolidHoverBackground: colorToken("Negative-40"),
dangerSolidFocusBackground: colorToken("Negative-40"),
dangerSolidHoverBackground: colorToken("Negative-60"),
dangerSolidFocusBackground: colorToken("Negative-60"),
dangerTransparentEnabledBackground: colorToken("white", 0),
dangerTransparentHoverBackground: colorToken("Negative-40", 10),
dangerTransparentFocusBackground: colorToken("Negative-40", 10),
secondarySolidEnabledBackground: colorToken("Neutral-5"),
secondarySolidHoverBackground: colorToken("Neutral-20"),
secondarySolidFocusBackground: colorToken("Neutral-20"),
secondaryTransparentEnabledBackground: colorToken("white", 0),
secondaryTransparentHoverBackground: colorToken("Neutral-10", 40),
secondaryTransparentFocusBackground: colorToken("Neutral-10", 40),
secondaryTransparentHoverBackground: colorToken("Neutral-20", 40),
secondaryTransparentFocusBackground: colorToken("Neutral-20", 40),
disabledSolidBackground: colorToken("Neutral-20", 20),
disabledTransparentBackground: colorToken("white", 0),
},
Expand Down Expand Up @@ -176,7 +176,7 @@ export const defaultTokens: TokensConfig = {
outlineColor: {
outlineInteractive: colorToken("Interactive-40"),
outlineDecorative: colorToken("Neutral-20"),
outlineContainer: colorToken("Neutral-40", 20),
outlineContainer: colorToken("Neutral-5"),
outlineInputEnabled: colorToken("Neutral-40"),
outlineInputHover: colorToken("Neutral-60"),
outlineInputFocus: colorToken("Interactive-40"),
Expand Down

0 comments on commit 8ef27cc

Please sign in to comment.