monkeyWzr / hugo-theme-cactus

Cactus theme for hugo
MIT License
541 stars 341 forks source link

Logo greyed out until hovered over #65

Closed bool3max closed 3 years ago

bool3max commented 3 years ago

I've set a custom homepage logo (by creating /static/images/logo.png), however it is completely greyed out until it is hovered over:

20210701_11h57m20s_grim

After I hover over it:

20210701_11h58m11s_grim


Is there any way to disable this behavior and have the logo be fully colored at all times?

bool3max commented 3 years ago

I managed to solve the issue by commenting out the following styles in the CSS files of the desired theme:

#header #logo {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

Still, it would be good if this option was configurable.