Change slideshow footer color in Dawn theme

I’d like to learn how to change the color of the navigation arrow section at the bottom of the slideshow on my home page to black and the navigation arrows and icons to white.

I’m using the Dawn theme…

thank you!

You could give this a try. Go to your Slideshow section and add this Custom CSS,

.slideshow__controls { 
  background-color:#000; 
}
.slideshow__controls, .slideshow__controls .slider-button .icon { 
  color:#fff; 
}
.slideshow__controls .slideshow__autoplay .icon { 
  filter: invert(94%) sepia(0%) saturate(2%) hue-rotate(137deg) brightness(106%) contrast(101%);
}

My two cents. Good luck!

glorious, thank you good sir!