/* ISP design tokens shared by the public website (frontend.css). */

:root {
    --isp-font-family: 'Play', sans-serif;

    --isp-body-bg: #0f141b;
    --isp-content-text: #e4ecf7;
    --isp-content-text-strong: #f3f7fc;
    --isp-muted-text: rgba(201, 214, 232, .86);
    --isp-divider: rgba(255, 255, 255, .08);

    --isp-nav-active-line: #6fb1ff;
    --isp-topbar-bg: #0d131b;
    --isp-card-bg: #131a23;
}

html[data-bs-theme='light'] {
    --isp-body-bg: #f4f7fc;
    --isp-content-text: #1a2430;
    --isp-content-text-strong: #0f172a;
    --isp-muted-text: rgba(51, 65, 85, .88);
    --isp-divider: rgba(17, 24, 39, .12);

    --isp-nav-active-line: #2563eb;
    --isp-topbar-bg: #ffffff;
    --isp-card-bg: #ffffff;
}