/* theme.css — shared design tokens for kiralu.moe */

:root {
  /* Core palette */
  --blue:     #5aa0cc;
  --blue2:    #3d84b8;
  --text:     #2a5472;
  --text2:    #527a98;
  --text3:    #90b4cc;
  --bow:      #aacce8;   /* solid usage */

  /* RGB channels for rgba() composition */
  --blue-rgb: 90, 160, 204;
  --bow-rgb:  170, 204, 232;
}

/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }

/* Shared scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(var(--blue-rgb), 0.2); border-radius: 2px; }
