Change Color in Antimatter header Image

Hello,
I’m new to GravCMS and have a problem. How can I change or remove blue in the header image?

Hi @codiergott , to remove (or change) the blue tint of the blog header image you will need to edit the file blog.html.twig in the Antimatter theme folder templates/blog.html.twig. Look for this line:

{% set blog_image = page.media.images|first.grayscale().contrast(20).brightness(-100).colorize(-35,81,122) %}

To remove the coloring, you can change the above line to:

{% set blog_image = page.media.images | first %}

Please note that this change might be lost when the theme is updated, so it is best to create an inherited theme and then make all your changes there. You can learn how to do that at https://learn.getgrav.org/themes/customization#theme-inheritance

<------ Thanks ------>

1 Like