-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
External link hard to view in editor mode #86
Comments
Can you give me some screenshots? |
Hi, Here is an example of reading mode (this one is alright for me) Here is an example of editor mode (this one is hard to see for me): If I try to change the color to white I get gray instead. Maybe some part of the theme is making all colors dark but I did not check. Do you see something different in editor mode? |
To adjust this with a snippet you might do something like this: .cm-url {
color: white; # white as you wanted
opacity: unset;
} The opacity of |
Hi thank you. Is that for edit mode or reading mode ? The command does not seem to change the color in edit mode |
Ah, it was a little wrong, this should work: .cm-url {
color: white !important;
opacity: unset;
} |
Thank you for this beautiful theme.
In editor mode, external links to websites are hard to see with a dark theme. They are dark purple.
Trying to override the color with a CSS snippet with a white color on a dark background shows the link in gray instead of white. It seems to me something is mixing the color with black, making all colors for the link look grayish.
The text was updated successfully, but these errors were encountered: