Yaru: gthumb has white background where black should be used

Created on 11 Apr 2018  ·  3Comments  ·  Source: ubuntu/yaru

I just noticed the following issue after trying out the latest update (which looks really, really good btw!):

screenshot from 2018-04-11 22-47-42

Due to the white color that's being used the text is hardly readable.

confirmed

Most helpful comment

It's due to the hardcoded $sidebar_bg_color from f1315c4fb9d48c2d0075c943c86f9e58cf6c616e. @clobrano, you can try using the adjust-color SASS function.

I think we could probably just restore the old line and add:

$sidebar_bg_color: adjust-color($sidebar_bg_color, $red: 2);

That'll add 2 to the red value.

$sidebar_bg_color: darken($bg_color, 5%);
$sidebar_bg_color: adjust-color($sidebar_bg_color, $red: 2);

All 3 comments

Thansk for the issue could you find out what Gtk class they use there? With the gtk inspector

It's due to the hardcoded $sidebar_bg_color from f1315c4fb9d48c2d0075c943c86f9e58cf6c616e. @clobrano, you can try using the adjust-color SASS function.

I think we could probably just restore the old line and add:

$sidebar_bg_color: adjust-color($sidebar_bg_color, $red: 2);

That'll add 2 to the red value.

$sidebar_bg_color: darken($bg_color, 5%);
$sidebar_bg_color: adjust-color($sidebar_bg_color, $red: 2);
Was this page helpful?
0 / 5 - 0 ratings