:root {
  --theme-primary: #ec4899;
  --theme-primary-dark: #be185d;
  --theme-surface: #fff7fb;
  --color-primary: var(--theme-primary);
  --color-primary-dark: var(--theme-primary-dark);
}

body {
  background:
    repeating-linear-gradient(45deg, #fff7fb 0, #fff7fb 26px, #ffeef7 26px, #ffeef7 52px);
}

.panel {
  border-style: dashed;
}

.refs .ref-item {
  border-style: solid;
  border-color: #f7bfd9;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-text: #f1f5f9;
    --color-text-secondary: #cbd5e1;
    --color-border: #334155;
  }
}
