From 205304b4f408006e9fe3e39e8a41e23347b63e83 Mon Sep 17 00:00:00 2001 From: Dunderhams Date: Wed, 14 May 2025 09:01:46 +1200 Subject: [PATCH] Moved to theme colours --- frontend/src/components/upload/Dropzone.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/upload/Dropzone.tsx b/frontend/src/components/upload/Dropzone.tsx index e273a4a..ac35102 100644 --- a/frontend/src/components/upload/Dropzone.tsx +++ b/frontend/src/components/upload/Dropzone.tsx @@ -38,8 +38,8 @@ const useStyles = createStyles((theme) => ({ border: '1px dashed', borderWidth: 1, borderColor: theme.colorScheme === "dark" - ? '#373A40' - : '#ced4da', + ? theme.colors.dark[3] + : theme.colors.gray[3], borderRadius: 10, backgroundColor: theme.colorScheme === "dark" ? theme.colors.dark[4] @@ -48,6 +48,7 @@ const useStyles = createStyles((theme) => ({ textAlign: 'center', padding: 20, } + })); const Dropzone = ({