How to change the text color on slideshow image of Impulse Theme

Hello, I want to change the text color of the buttons on the Slideshow images of impulse. It is automatically changing with the button color change. How can I choose manually my own color?

Thanks :blush:

Hi @Shopidropship
You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> theme.css ->paste the below code at the bottom of the file.
.hero__link .btn {
    color: red;
}

Thank You for your answer, but it does not work for me. I made the following changes and it works.

You will find the setting in slideshow.liquid

{% if accent_brightness > 40 %}
color: #000 !important;
{% endif %}

I changed mine from 40 % to 50 % and now the button text is white instead of black.