Fluent-gtk-theme icon indicating copy to clipboard operation
Fluent-gtk-theme copied to clipboard

Unreadable texts in FileZilla and Google Chrome

Open digimezzo opened this issue 3 years ago • 1 comments

The light theme has unreadable texts in FileZilla and Google Chrome, because the selection color is light grey and the text color is white. Some buttons in Google Chrome have a light grey background an white color.

FileZilla:

image

Google Chrome:

image

digimezzo avatar Nov 24 '21 22:11 digimezzo

The FileZilla issue can be fixed by adding this in gtk.-3.0\gtk.css (there might be too much selectors in there though):

label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, textview text:selected, iconview text:selected:focus, textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, textview text selection:focus, textview text selection, flowbox flowboxchild:selected, entry selection, entry selection:focus, row:selected, treeview.view:hover, treeview.view:selected {
color: #101010;
text-shadow: 0 -1px rgba(255, 255, 255, 0.9);
}

It then looks like this:

image

digimezzo avatar Nov 25 '21 05:11 digimezzo