/* Light color scheme (Default) */
/* Can be forced with data-theme="light" */
[data-theme=light],
:root:not([data-theme=dark]),
:host:not([data-theme=dark]) {
  --pico-text-selection-color: rgba(177, 177, 247, 0.25);
  --pico-primary: #2F5479;
  --pico-primary-background: #2F5479;
  --pico-primary-underline: #FF9500;
  --pico-primary-hover: #28444D;
  --pico-primary-hover-background: #28444D;
  --pico-primary-focus: rgba(232, 128, 26, 0.5);
  --pico-primary-inverse: #FFFFFF;
}

/* Dark color scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {

  :root:not([data-theme]),
  :host:not([data-theme]) {
    --pico-text-selection-color: rgba(47, 84, 121, 0.25);
    --pico-primary: #B1B1F7;
    --pico-primary-background: #B1B1F7;
    --pico-primary-underline: #FF9500;
    --pico-primary-hover: #FF9500;
    --pico-primary-hover-background: #FF9500;
    --pico-primary-focus: rgba(238, 237, 216, 0.5);
    --pico-primary-inverse: #28444D;
  }
}

/* Dark color scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme=dark] {
  --pico-text-selection-color: rgba(47, 84, 121, 0.25);
  --pico-primary: #B1B1F7;
  --pico-primary-background: #B1B1F7;
  --pico-primary-underline: #FF9500;
  --pico-primary-hover: #FF9500;
  --pico-primary-hover-background: #FF9500;
  --pico-primary-focus: rgba(238, 237, 216, 0.5);
  --pico-primary-inverse: #28444D;
}
