| 1 |
:root { |
| 2 |
--give-primary-color: <?= $primaryColor ?>; |
| 3 |
--give-header-background-image: url("<?= $headerBackgroundImage ?>"); |
| 4 |
<?php if (!empty($headerBackgroundColor)) : ?> |
| 5 |
--give-header-background-color--for-rgb: <?= hexdec(substr($headerBackgroundColor, 1, 2)) ?>, <?= hexdec(substr($headerBackgroundColor, 3, 2)) ?>, <?= hexdec(substr($headerBackgroundColor, 5, 2)) ?>; |
| 6 |
<?php endif; ?> |
| 7 |
--give-header-stats-progressbar-color: <?= sanitize_hex_color($statsProgressBarColor) ?? '' ?>; |
| 8 |
--give-primary-font: '<?= $primaryFont; ?>'; |
| 9 |
} |
| 10 |
|