I was trying to organize my CSS and Update my inline styles through PHP Mysql, for example:
such a DB query for Field_body did the work:
update field_data_body set body_value = replace(body_value, '#0f0f0f','var(--links1)');
then - I wanted to perform the same thing for VIEWS Text Field, I sort of, found the right table, and did:
update views_display set display_options = replace(display_options, '#0f0f0f','var(--links1)');
- and all my Views disappeared!