Need help changing colou of text

So i am designing my website and i cannot seem to change the color of the currency drop down, is there any code that could help fix this? I would like it to be white

Website : Desirestreetwear.co

@Desire4

Please add the following code at the bottom of your CSS file.

.localization-form:only-child .localization-form__select{
color: #fff;
}

Hope this helps.

@Desire4 Please follow below steps to change the color of the drop down to “White”. Let me know whether it is helpful for you.

  1. From admin, go to “Online stores” → “Themes”.
  2. Click action button from the current theme and select “Edit code”.
  3. Go to “base.css” file and paste below code at the bottom of the file and save changes.

To only change the drop down color like below screenshot:

.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button {
    color: #FFFFFF !important;
}

(OR)

To change the background color and dropdown color like below screenshot:

.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list {
    background: #ffffff;
}

.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button .icon-caret,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list .disclosure__item .disclosure__link,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list .disclosure__item .disclosure__link .localization-form__currency {
    color: #000000 !important;
}

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.