styles.php 871 B

123456789101112131415161718
  1. <?php
  2. $styles = (new \App\Settings('styles'))->getAll();
  3. ?>
  4. <style>
  5. :root {
  6. /* Color variables from admin panel */
  7. --body-bg-color: <?= $styles['body_bg_color'] ?? '#0A0A0A' ?>;
  8. --text-color: <?= $styles['text_color'] ?? '#FFFFFF' ?>;
  9. --header-color: <?= $styles['header_color'] ?? '#1E1E1E' ?>;
  10. --content-bg-color: <?= $styles['content_bg_color'] ?? '#1A1A1A' ?>;
  11. --content-border-color: <?= $styles['content_border_color'] ?? '#E4E4E4' ?>;
  12. --link-color: <?= $styles['link_color'] ?? '#4A9EFF' ?>;
  13. --accent-color: <?= $styles['accent_color'] ?? '#FF6B35' ?>;
  14. --table-bg-color: <?= $styles['table_bg_color'] ?? '#1A1A1A' ?>;
  15. --table-header-color: <?= $styles['table_header_color'] ?? '#2A2A2A' ?>;
  16. --footer-bg-color: <?= $styles['footer_bg_color'] ?? '#1E1E1E' ?>;
  17. }
  18. </style>