diff --git a/.nx/version-plans/version-plan-1781532423653.md b/.nx/version-plans/version-plan-1781532423653.md new file mode 100644 index 00000000000..6a61c63ed46 --- /dev/null +++ b/.nx/version-plans/version-plan-1781532423653.md @@ -0,0 +1,5 @@ +--- +gamut-styles: patch +--- + +Updates percipioTheme's border-secondary token to be navy-600 (previously navy-200) for better contrast diff --git a/packages/gamut-styles/src/themes/__tests__/__snapshots__/theme.test.ts.snap b/packages/gamut-styles/src/themes/__tests__/__snapshots__/theme.test.ts.snap index eee6efdb42b..2be2c419212 100644 --- a/packages/gamut-styles/src/themes/__tests__/__snapshots__/theme.test.ts.snap +++ b/packages/gamut-styles/src/themes/__tests__/__snapshots__/theme.test.ts.snap @@ -1,4 +1,4 @@ -// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing +// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`themes admin - theme shape 1`] = ` { @@ -1704,7 +1704,7 @@ exports[`themes percipio - theme shape 1`] = ` "background-warning": "#FFF7E0", "border-disabled": "rgba(16,22,47,0.28)", "border-primary": "rgba(16,22,47,0.47)", - "border-secondary": "rgba(16,22,47,0.12)", + "border-secondary": "rgba(16,22,47,0.75)", "border-tertiary": "#10162F", "danger": "#B83C3C", "danger-hover": "#A52020", @@ -1741,7 +1741,7 @@ exports[`themes percipio - theme shape 1`] = ` "--color-background-warning": "var(--color-percipioBgWarning)", "--color-border-disabled": "var(--color-navy-300)", "--color-border-primary": "var(--color-navy-400)", - "--color-border-secondary": "var(--color-navy-200)", + "--color-border-secondary": "var(--color-navy-600)", "--color-border-tertiary": "var(--color-navy-800)", "--color-danger": "var(--color-percipioDanger)", "--color-danger-hover": "var(--color-percipioActionDangerHover)", @@ -2084,7 +2084,7 @@ sans-serif", "background-warning": "percipioBgWarning", "border-disabled": "navy-300", "border-primary": "navy-400", - "border-secondary": "navy-200", + "border-secondary": "navy-600", "border-tertiary": "navy-800", "danger": "percipioDanger", "danger-hover": "percipioActionDangerHover", diff --git a/packages/gamut-styles/src/themes/percipio.ts b/packages/gamut-styles/src/themes/percipio.ts index 8ad0013945d..71b6a5416ba 100644 --- a/packages/gamut-styles/src/themes/percipio.ts +++ b/packages/gamut-styles/src/themes/percipio.ts @@ -56,7 +56,7 @@ export const percipioTheme = createTheme({ }, border: { primary: 'navy-400', - secondary: 'navy-200', + secondary: 'navy-600', tertiary: 'navy-800', disabled: 'navy-300', },