var sheets = document.styleSheets;
$.each(sheets, (index) => {
let url = sheets[index].href;
if (url == "sheet url") {
let thisSheet = sheets[index];
//add css hover styling to stylesheet
thisSheet.insertRule('selector {color: black !important;}');
}
})