Mise à jour des couleurs principales

This commit is contained in:
2026-02-03 20:00:38 +01:00
parent 56db6fac8c
commit d18fb129e3
3 changed files with 17 additions and 9 deletions

View File

@@ -43,6 +43,21 @@
</path>
</symbol>
</svg>
<script>
(function () {
try {
var primary = (typeof config !== 'undefined' && config.colors && config.colors.primary) ? config.colors.primary : '#008455';
var svg = document.querySelector('svg[aria-hidden="true"]');
if (!svg) return;
svg.querySelectorAll('symbol > path').forEach(function (p) {
p.setAttribute('fill', primary);
});
} catch (e) {
// silent
}
})();
</script>
</head>
<body class="smooth-scroll bg-gray-50">