3
1

custom_style.php 227 B

1234567
  1. <?php if (isset($branding["enabled"]) && $branding["enabled"] == 1 && !empty($branding["accent_color"])): ?>
  2. <style>
  3. :root {
  4. --kanboard-accent-color: <?= $branding["accent_color"] ?>;
  5. }
  6. </style>
  7. <?php endif ?>