Mise à jour des couleurs principales
This commit is contained in:
15
index.html
15
index.html
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user