From 74b971249a973c02f09d113861eb39723dedea43 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 19 Dec 2023 11:45:19 -0600 Subject: [PATCH] Remove temp colors --- src/alf/components/Button.tsx | 6 +++--- src/alf/themes.ts | 8 ++------ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/alf/components/Button.tsx b/src/alf/components/Button.tsx index d6d625edd1..9179f85b92 100644 --- a/src/alf/components/Button.tsx +++ b/src/alf/components/Button.tsx @@ -25,13 +25,13 @@ const colorVariants: { bg: 'primary', }, pressableHovered: { - bg: 'primaryLight', + bg: 'primary', }, pressableFocused: { - bg: 'primaryLight', + bg: 'primary', }, pressablePressed: { - bg: 'primaryLight', + bg: 'primary', }, text: { color: 'white', diff --git a/src/alf/themes.ts b/src/alf/themes.ts index 95b90f4c56..fe7cfc2b24 100644 --- a/src/alf/themes.ts +++ b/src/alf/themes.ts @@ -18,10 +18,7 @@ export const palette = { gray6: `hsl(${BLUE_HUE}, ${GRAYSCALE_SATURATION}%, 10%)`, black: `hsl(${BLUE_HUE}, ${GRAYSCALE_SATURATION}%, 5%)`, - blueLight: `hsl(${BLUE_HUE}, 100%, 63%)`, blue: `hsl(${BLUE_HUE}, 100%, 53%)`, - blueDark: `hsl(${BLUE_HUE}, 100%, 43%)`, - green: '#54D469', red: '#FB4566', } @@ -38,10 +35,9 @@ export const light = createTheme({ xxl: 32, }, color: { - primaryLight: palette.blueLight, primary: palette.blue, - primaryDark: palette.blueDark, - + positive: palette.green, + negative: palette.red, l0: palette.white, l1: palette.gray1, l2: palette.gray2,