/*
  Theme: Coolors — blue & amber
  Built from the coolors.co palette: coolors.co/437fc7-6daffe-edf6ff-ffffff-b9732f
  Crisp white/pale-blue surfaces, a confident mid-blue accent, and a warm amber-brown
  as the secondary accent.

  Note: the coolors palette itself has no dark tone (needed for buttons, dark nav
  sections, dashboard sidebar, etc.), so --ink/--vault/--vault-2 below are a dark
  navy derived from the palette's blue rather than a literal palette color. Adjust
  them if you'd like a different dark shade.

  This file only holds this theme's colors/fonts. Shared layout rules live in
  common.css. To use this theme, load both in index.html (common.css first):
    <link rel="stylesheet" href="themes/common.css">
    <link rel="stylesheet" href="themes/theme-coolors.css">

  To create a variant of this theme: copy this file, change the hex values in :root
  below (keep the variable names identical), give it a new filename.
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');


:root{
    --paper:#FFFFFF;
    --paper-dim:#EDF6FF;
    --ink:#122033;
    --ink-soft:#3C5170;
    --muted:#7C93AC;
    --brass:#437FC7;
    --brass-light:#6DAFFE;
    --steel:#B9732F;
    --vault:#122033;
    --vault-2:#1B2E48;
    --line:rgba(18,32,51,0.12);
    --line-dark:rgba(255,255,255,0.14);
    --radius:10px;

    /* Fonts — no fonts specified by the palette, so defaulting to the same
       clean, corporate-trustworthy pairing used by the other premier themes. */
    --font-display:'Manrope', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'JetBrains Mono', monospace;
  }
