diff --git a/packages/mobile/src/components/core/Button.tsx b/packages/mobile/src/components/core/Button.tsx index 3b42d69e831..5694ec965a1 100644 --- a/packages/mobile/src/components/core/Button.tsx +++ b/packages/mobile/src/components/core/Button.tsx @@ -339,7 +339,7 @@ export const Button = (props: ButtonProps) => { // darken the color by 10% for the press state if (customColor) { const c = new Color(customColor) - return c.light(0.1).hex() + return c.darken(0.1).hex() } // If no custom color is specified