How can I modify the white frame and hovered text colours in Debut Theme?

Topic summary

A user seeks to customize the Debut theme by changing the white frame and hovered text colors on their collection page.

Solution Provided:

  • Add custom CSS code to the theme.css file via Online Store > Themes > Edit code
  • The provided CSS targets .filters-toolbar__item-child elements to modify border and hover colors

Current Status:

  • The frame color modification worked successfully
  • The hovered text color remains white and still needs fixing
  • The issue is partially resolved, with the text hover color problem outstanding
Summarized with AI on November 22. AI used: claude-sonnet-4-5-20250929.

How could i change the white frame and hovered text colours?

https://aighard.com/

Pass: blaosk

Hi @Aighard

Please go to Online Store > Themes > Edit code, find the theme.css file, and add the following code at the end of the file:

.filters-toolbar__item-child .filters-toolbar__input-wrapper.select-group:focus-visible, .filters-toolbar__item-child .filters-toolbar__input:focus-visible {
   outline: #C04B3F solid 1px;
}

.filters-toolbar__item-child .filters-toolbar__input option:hover {
  color: #C04B3F ;
}

I hope that this will work for you.

Thanks a lot, it worked for the frame, but the hovered text is still white.
Any idea how to fix it?