I’ve tried
var styleElement = document.createElement(“style”);
styleElement.type = “text/css”;
styleElement.innerHTML = “.tawk-texting-indicator .tawk-texting-dot { background-color: #444444 !important; }”;
document.getElementsByTagName(“head”)[0].appendChild(styleElement);
And
.tawk-texting-indicator .tawk-texting-dot {
background-color: #444444 !important;
}
In my site custom CSS code, yet none of them seem to work.