/* Heartucate brand accent colors, injected via nginx (not part of the
   Vaultwarden image/container - survives every image update untouched).
   Maps onto the web-vault's real CSS custom properties: --color-primary-600
   is "color of links and buttons", -700 is their hover state, -300 is
   menu-item hover (per comments in Vaultwarden's compiled styles.css).
   Values are space-separated RGB, consumed as rgb(var(...) / <alpha-value>). */

:root {
  --color-primary-100: 252 233 225; /* light tint of Primary Orange */
  --color-primary-300: 214 68 59;   /* Primary Red - menu hover */
  --color-primary-600: 237 110 55;  /* Primary Orange - links/buttons */
  --color-primary-700: 137 50 114;  /* Primary Purple - hover/pressed */
}

.theme_dark {
  --color-primary-100: 47 22 11;    /* dark tint of Primary Orange */
  --color-primary-300: 214 68 59;   /* Primary Red - menu hover */
  --color-primary-600: 237 110 55;  /* Primary Orange - links/buttons */
  --color-primary-700: 137 50 114;  /* Primary Purple - hover/pressed */
}
