From 02616fc312eaf8c254b82b9945ad99345de8500d Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 7 May 2022 15:02:00 -0500 Subject: [PATCH] Tweak gradient colors --- app/soapbox/components/list.tsx | 4 ++-- app/soapbox/features/ui/components/background_shapes.tsx | 4 ++-- app/soapbox/normalizers/soapbox/soapbox_config.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/soapbox/components/list.tsx b/app/soapbox/components/list.tsx index 3adc81c38..862bf1456 100644 --- a/app/soapbox/components/list.tsx +++ b/app/soapbox/components/list.tsx @@ -37,8 +37,8 @@ const ListItem: React.FC = ({ label, hint, children, onClick }) => { return ( diff --git a/app/soapbox/features/ui/components/background_shapes.tsx b/app/soapbox/features/ui/components/background_shapes.tsx index 2f77d4e9c..eb97386dd 100644 --- a/app/soapbox/features/ui/components/background_shapes.tsx +++ b/app/soapbox/features/ui/components/background_shapes.tsx @@ -25,8 +25,8 @@ const BackgroundShapes: React.FC = ({ position = 'fixed' }) = - - + + diff --git a/app/soapbox/normalizers/soapbox/soapbox_config.ts b/app/soapbox/normalizers/soapbox/soapbox_config.ts index 9bc0fddea..76d1bfdd9 100644 --- a/app/soapbox/normalizers/soapbox/soapbox_config.ts +++ b/app/soapbox/normalizers/soapbox/soapbox_config.ts @@ -156,8 +156,8 @@ const maybeAddMissingColors = (soapboxConfig: SoapboxConfigMap): SoapboxConfigMa const colors = soapboxConfig.get('colors'); const missing = ImmutableMap({ - 'gradient-purple': colors.getIn(['accent', '300']), - 'gradient-blue': colors.getIn(['primary', '300']), + 'gradient-purple': colors.getIn(['primary', '500']), + 'gradient-blue': colors.getIn(['accent', '500']), }); return soapboxConfig.set('colors', missing.mergeDeep(colors));