/* Placeholder for brand-specific selectors if needed.
   Most colors are set via CSS variables written to :root by JS. */

.mode-dark {
  /* Optionally use this to force dark mode styles if not relying on media queries. */
}

/* RGB color variables for transparency effects in chat.css */
:root {
  /* Digital Grease RGB values */
  --primary-rgb: 7, 147, 255;        /* #0793FF */
  --secondary-rgb: 51, 204, 119;     /* #33cc77 */
  --accent-rgb: 245, 166, 35;        /* #f5a623 */

  /* Tsunami Swami RGB values (overridden by brand.json palette) */
  --primary-ts-rgb: 0, 90, 163;      /* #005aa3 light mode */
  --primary-ts-dark-rgb: 90, 167, 255; /* #5aa7ff dark mode */
}

