/*
    Theme Name: Medinexa
    Theme URI: http://themexriver.com/wp/medinexa
    Author: themexriver
    Author URI: http://themexriver.com/
    Description: Medinexa - Medicale WordPress Theme
    Version: 1.0
    Tested up to: 8.2
    Requires PHP: 8.0
    License: GNU General Public License v2 or later
    License URI: LICENSE
    Text Domain: medinexa
    Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
<script>
document.addEventListener("DOMContentLoaded", function() {
  var colores = [
    "#315cbd", "#315CBD",
    "rgb(49,92,189)", "rgb(49, 92, 189)"
  ];
  var nuevo = "#5fbeb1";

  document.querySelectorAll("*").forEach(function(el) {
    var style = el.getAttribute("style");
    if (style) {
      var newStyle = style;
      colores.forEach(function(c) {
        newStyle = newStyle.split(c).join(nuevo);
      });
      if (newStyle !== style) {
        el.setAttribute("style", newStyle);
      }
    }
  });
});
</script>