From 100360adb36a9b49d0089b05bbeab5704b2d9837 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 20 Feb 2021 22:35:07 -0800 Subject: [PATCH] fix: Drop cursor not visible in dark theme --- shared/styles/theme.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/styles/theme.js b/shared/styles/theme.js index 8e2b67098..af62e24c9 100644 --- a/shared/styles/theme.js +++ b/shared/styles/theme.js @@ -125,6 +125,7 @@ export const light = { link: colors.primary, text: colors.almostBlack, + cursor: colors.almostBlack, textSecondary: colors.slateDark, textTertiary: colors.slate, placeholder: "#a2b2c3", @@ -182,6 +183,7 @@ export const dark = { link: "#137FFB", text: colors.almostWhite, + cursor: colors.almostWhite, textSecondary: lighten(0.1, colors.slate), textTertiary: colors.slate, placeholder: colors.slateDark,