about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorelliot <hi@aiaka.red>2023-10-25 12:41:56 -0400
committerGitHub <noreply@github.com>2023-10-25 09:41:56 -0700
commit3426b24f67c571b697064d79ea83894f9a2f76e1 (patch)
tree3409c65063f718130c2dc0294a66df25db27a799 /src
parent4a4be1de1a3475d034fe9a95493c50222ef90e7e (diff)
downloadvoidsky-3426b24f67c571b697064d79ea83894f9a2f76e1.tar.zst
Fixed CropImage modal aspect ratio buttons visibility in dark mode (#1730)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/modals/crop-image/CropImage.web.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/modals/crop-image/CropImage.web.tsx b/src/view/com/modals/crop-image/CropImage.web.tsx
index c5959cf4c..8e35201d1 100644
--- a/src/view/com/modals/crop-image/CropImage.web.tsx
+++ b/src/view/com/modals/crop-image/CropImage.web.tsx
@@ -100,7 +100,7 @@ export function Component({
           accessibilityHint="Sets image aspect ratio to wide">
           <RectWideIcon
             size={24}
-            style={as === AspectRatio.Wide ? s.blue3 : undefined}
+            style={as === AspectRatio.Wide ? s.blue3 : pal.text}
           />
         </TouchableOpacity>
         <TouchableOpacity
@@ -110,7 +110,7 @@ export function Component({
           accessibilityHint="Sets image aspect ratio to tall">
           <RectTallIcon
             size={24}
-            style={as === AspectRatio.Tall ? s.blue3 : undefined}
+            style={as === AspectRatio.Tall ? s.blue3 : pal.text}
           />
         </TouchableOpacity>
         <TouchableOpacity
@@ -120,7 +120,7 @@ export function Component({
           accessibilityHint="Sets image aspect ratio to square">
           <SquareIcon
             size={24}
-            style={as === AspectRatio.Square ? s.blue3 : undefined}
+            style={as === AspectRatio.Square ? s.blue3 : pal.text}
           />
         </TouchableOpacity>
       </View>