Add this code to the Custom CSS field on the Style tab of your Store Locator widget’s settings:
.global-styles,
:root {
--title-color: red;
--tel-color: green;
--website-color: blue;
}
.global-styles,
[class*="directory-header__Container-sc"] > div {
color: var(--title-color) !important;
}
.global-styles,
[class*="contacts-item__Item-sc"]:nth-child(2) a {
color: var(--tel-color) !important;
}
.global-styles,
[class*="contacts-item__Item-sc"]:nth-child(3) a {
color: var(--website-color) !important;
}