From 826e0a4e4a19f3770041a9ee4d1887145aa66132 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 9 Sep 2026 15:38:53 +0000 Subject: [PATCH] Make storefront hero background purple Co-authored-by: Kyle Rich --- components/HeroBanner.tsx | 2 +- constants/theme.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/HeroBanner.tsx b/components/HeroBanner.tsx index 5aaa362..04b7071 100644 --- a/components/HeroBanner.tsx +++ b/components/HeroBanner.tsx @@ -25,7 +25,7 @@ const styles = StyleSheet.create({ padding: Spacing.m, }, stickerCard: { - backgroundColor: Colors.mangoOrange, + backgroundColor: Colors.heroPurple, borderRadius: 24, borderTopLeftRadius: 20, borderBottomRightRadius: 28, diff --git a/constants/theme.ts b/constants/theme.ts index fe5e6be..030ec17 100644 --- a/constants/theme.ts +++ b/constants/theme.ts @@ -2,6 +2,7 @@ import { Platform } from 'react-native'; export const Colors = { stickerGreen: 'blue', + heroPurple: '#8B5CF6', mangoOrange: 'green', mangoYellow: '#FFD500', inkBlack: '#080808',