Forem Creators and Builders 🌱

Jwalin
Jwalin

Posted on

In Dark theme, the FOREM icon is barely visible.

In Dark theme, the FOREM icon is barely visible.

Top comments (4)

Collapse
 
link2twenty profile image
Andrew Bone

Looks like the logo is never changing colour (because it's an SVG and the CSS is changing the text colour).

I think making a change to the main scss to include fill: currentColor; would fix the issue.

svg {
  max-width: 100%;
  width: auto;
  height: calc(var(--header-height) - var(--su-2) * 2);
  vertical-align: middle;
  display: inline-block;
  fill: currentColor;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
michaeltharrington profile image
Michael Tharrington

Just to note that I've shared this suggested fix with the team! Hopefully this is something we can make changes to soon.

Appreciate you throwing out this idea for a solution @link2twenty and thanks for raising the issue here @jwalindev . 🙌

Collapse
 
pp profile image
Paweł Ludwiczak

This should now be fixed! Thanks for the bug report! :)

Collapse
 
ellativity profile image
Ella (she/her/elle)

Looking great @pp ! 😍