/*
 * Chartmetric brand tokens
 * Drop this file in and reference the variables, e.g. color: var(--cm-green);
 * Values pulled from the Chartmetric web app + Flow (chartmetric-one) themes.
 */
:root {
  /* --- Chartmetric core brand --- */
  --cm-green: #01da79;              /* primary brand green */
  --cm-blue: #0b9de3;              /* primary brand blue */
  --cm-teal-accent: #00c89b;       /* teal accent (cm-teal-500 family) */

  /* Signature brand gradient (green -> blue) */
  --cm-gradient: linear-gradient(99deg, #01da79, #0b9de3);
  /* Softer marketing variant used in the app theme */
  --cm-gradient-soft: linear-gradient(135deg, #01da7a, #0ba2dd);

  /* --- Neutrals / surfaces --- */
  --cm-bg-light: #f5f5fc;          /* light page background */
  --cm-bg-dark: #121212;           /* dark page background */
  --cm-ink: #100d2f;               /* near-black text */
  --cm-white: #ffffff;

  /* --- Status colors --- */
  --cm-positive: #0e9f6e;
  --cm-negative: #f05252;
  --cm-warning: #cc5f58;
  --cm-error: #ea4335;

  /* --- Flow (chartmetric-one) --- */
  --flow-green: #75c206;           /* Flow brand green (HSL 86 94% 39%) */

  /* --- Type --- */
  --cm-font: 'Inter', sans-serif;
}
