/*
 * ArcOS brand theme — overrides Metronic's blue primary with the Arc Enviro
 * green, in light and dark mode. Load AFTER style.bundle.css in every layout.
 *
 * Palette: primary #1B9C5E, active/hover #0C6B3D, pale tint #E8F5EE.
 */

:root,
[data-bs-theme='light'] {
    --bs-primary: #1b9c5e;
    --bs-primary-active: #0c6b3d;
    --bs-primary-light: #e8f5ee;
    --bs-primary-inverse: #ffffff;
    --bs-primary-rgb: 27, 156, 94;
    --bs-text-primary: #1b9c5e;
    --bs-primary-bg-subtle: #d3efe1;
    --bs-primary-border-subtle: #a8dfc4;
    --bs-primary-text-emphasis: #0c6b3d;
    --bs-link-color: #1b9c5e;
    --bs-link-color-rgb: 27, 156, 94;
    --bs-link-hover-color: #0c6b3d;
    --bs-link-hover-color-rgb: 12, 107, 61;
}

[data-bs-theme='dark'] {
    --bs-primary: #1b9c5e;
    --bs-primary-active: #26b56f;
    --bs-primary-light: #172b1f;
    --bs-primary-inverse: #ffffff;
    --bs-primary-rgb: 27, 156, 94;
    --bs-text-primary: #26b56f;
    --bs-primary-bg-subtle: #0e2c1d;
    --bs-primary-border-subtle: #14572f;
    --bs-primary-text-emphasis: #66d19a;
    --bs-link-color: #26b56f;
    --bs-link-color-rgb: 38, 181, 111;
    --bs-link-hover-color: #66d19a;
    --bs-link-hover-color-rgb: 102, 209, 154;
}
