krassowski / Anki-Night-Mode

Enabling studying at night with Anki - without eye strain
https://ankiweb.net/shared/info/1496166067
GNU General Public License v3.0
72 stars 13 forks source link

Tag text is too light to read #74

Closed Z1839 closed 5 years ago

Z1839 commented 5 years ago

I've been having issues with adding tags with night mode. Whenever I try to add tags during review, and from the browser, the text is very, very light grey and difficult to read.

If you could look into this issue it would be very appreciated. Thank you.

sereneavatar commented 5 years ago

I've been having issues with adding tags with night mode. Whenever I try to add tags during review, and from the browser, the text is very, very light grey and difficult to read.

If you could look into this issue it would be very appreciated. Thank you.

Yes, I'm experiencing the same problem (on macOS High Sierra) and from what I could gather it seems to be that

@css
    def completer(self):
        return """
            background-color:black;
            border-color:#444;
            color:#eee;
        """

in stylers.py only overrides the text color, but not the background color (except in the completer popup), so if want a temporary fix you could change the css to something like

@css
    def completer(self):
        return """
            background-color:#fff;
            border-color:#444;
            color:#000;
        """

until the editor styling gets updated 🙂

Z1839 commented 5 years ago

Ah, I appreciate the input.

Perhaps you should bring this up with the anki devs

Z1839 commented 5 years ago

Just an update: I still can't see tag text in the browser when I try to add tags. The text is essentially white on a white background. Any idea my friend?

krassowski commented 5 years ago

Closing as a duplicate of #59. If this is wrong, please re-open pointing out the differences between the two issues.