/* Lumen palette adapted to current project token contract */
:root {
  /* surface */
  --surface-background: black;
  --surface-block-1: #161a1f;
  --surface-block-2: #181818;
  --surface-block-3: #222;
  --surface-invert: white;

  /* warning */
  --surface-warning-soft: rgba(248, 154, 19, .12);
  --surface-warning-hard: #f89a13;

  /* success */
  --surface-success-soft: rgba(29, 200, 69, .12);
  --surface-success-hard: #1dc845;

  /* error */
  --surface-error-soft: rgba(234, 21, 21, .12);
  --surface-error-hard: #ea1515;

  /* state - opacity */
  --state-block-2-hover: #2d2d2d;
  --state-block-2-pressed: #121212;

  /* text&icon */
  --text-primary: white;
  --text-secondary: #8a8a8a;
  --text-invert: #161a1f;
  --text-accent: #8abdff;
  --text-warning: #f89a13;
  --text-error: #ea1515;
  --text-success: #1dc845;

  /* box-shadow для инпута */
  --text-accent-rgba: rgba(138, 189, 255, .25);

  /* border */
  --border-invert: white;
  --border-neutral: #2d2d2d;
  --border-warning: rgba(248, 154, 19, .12);
  --border-error: rgba(234, 21, 21, .12);
  --border-success: rgba(29, 200, 69, .12);
}
