Skip to content

Commit 6ee8d6a

Browse files
committed
Fix hyperlink text color inversion
1 parent bec172a commit 6ee8d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const CreateStyles = (isDarkMode: boolean) => {
9090
color: isDarkMode ? 'black' : 'white',
9191
},
9292
hyperlinkIdle: {
93-
color: isDarkMode ? 'black' : 'white',
93+
color: isDarkMode ? 'white' : 'black',
9494
},
9595
hyperlinkPressing: {
9696
color: 'purple',

0 commit comments

Comments
 (0)