variables.css 334 B

1234567891011121314
  1. /* ======================= Variables ======================= */
  2. body {
  3. --header-height: 2.5rem;
  4. {% for key in theme %}
  5. --{{key}}: {{theme[key]}};
  6. {% endfor %}
  7. --box-shadow: -1px 1px var(--box-shadow-spread) var(--box-shadow-spread) rgba(0,0,0,calc(var(--box-shadow-strength)));
  8. --progress-bar-background: var(--accent);
  9. }