/* Cyan color for light color scheme (Default) */
/* Can be forced with data-theme="light" */
:host(:not([data-theme=dark])),
:root:not([data-theme=dark]),
[data-theme=light] {
  --pico-text-selection-color: rgba(5, 134, 134, 0.25);
  --pico-primary: rgb(5, 134, 134) !important;
  --pico-primary-background: rgb(5, 134, 134) !important;
  --pico-primary-border: rgb(5, 134, 134) !important;
  --pico-primary-underline: rgba(5, 134, 134, 0.5);
  --pico-primary-hover: #014343 !important;
  --pico-primary-hover-background: #015050 !important;
  --pico-primary-hover-border: #015050 !important;
  --pico-primary-hover-underline: #014343;
  --pico-primary-focus: rgba(5, 134, 134, 0.5);
  --pico-primary-inverse: #fff;
}

/* Cyan color for dark color scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {
  :host(:not([data-theme])),
  :root:not([data-theme]) {
    --pico-text-selection-color: rgba(5, 134, 134, 0.1875);
    --pico-primary: rgb(5, 134, 134) !important;
    --pico-primary-background: rgb(5, 134, 134) !important;
    --pico-primary-border: rgb(5, 134, 134) !important;
    --pico-primary-underline: rgba(5, 134, 134, 0.5);
    --pico-primary-hover: #0ab1b1 !important;
    --pico-primary-hover-background: #05a2a2 !important;
    --pico-primary-hover-border: #05a2a2 !important;
    --pico-primary-hover-underline: #0ab1b1;
    --pico-primary-focus: rgba(5, 134, 134, 0.375);
    --pico-primary-inverse: #fff;
  }
}

/* Cyan color for dark color scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme=dark] {
  --pico-text-selection-color: rgba(5, 134, 134, 0.1875);
  --pico-primary: rgb(5, 134, 134) !important;
  --pico-primary-background: rgb(5, 134, 134) !important;
  --pico-primary-border: rgb(5, 134, 134) !important;
  --pico-primary-underline: rgba(5, 134, 134, 0.5);
  --pico-primary-hover: #0ab1b1 !important;
  --pico-primary-hover-background: #05a2a2 !important;
  --pico-primary-hover-border: #05a2a2 !important;
  --pico-primary-hover-underline: #0ab1b1;
  --pico-primary-focus: rgba(5, 134, 134, 0.375);
  --pico-primary-inverse: #fff;
}