/* theme.css */
:root {
    --primary-color: #4BC17A;
    --headline-color: #333;
    --text-color: #555;
    --border-color: #dfe6e9;
    --background-color: #fff;
    --textarea-background: rgba(255, 255, 255, 0.8);
    --empty-background: #f0f0f0;
    --header-bg: #ffffff;
    --footer-bg: #ffffff;
    --hamburger-color: #555;
  }
  
  .dark-mode {
    --headline-color: #f0f0f0;
    --text-color: #e0e0e0;
    --border-color: #4a4a4a;
    --background-color: #1a1a1a;
    --textarea-background: rgba(40, 40, 40, 0.8);
    --empty-background: #2a2a2a;
    --header-bg: #2d2d2d;
    --footer-bg: #2d2d2d;
    --hamburger-color: #e0e0e0;
  }