/*
 * TNN.Common.Blazor - Design System Entry Point
 *
 * Single import for consumers:
 *   <link rel="stylesheet" href="_content/TNN.Common.Blazor/css/tnn-blazor.css" />
 *
 * Override theming by setting <html data-theme="..."> and defining the matching
 * block in your own CSS. Minimal override:
 *
 *   [data-theme="my-app"] {
 *     --tnn-seed-accent-h: 280;    -- accent hue (purple)
 *     --tnn-seed-accent-c: 0.18;   -- accent chroma
 *     --tnn-seed-neutral-h: 250;   -- neutral hue
 *     --tnn-seed-neutral-c: 0.015; -- neutral chroma
 *     --tnn-radius-md: 0.375rem;   -- optional shape override
 *     --tnn-density: 0.92;         -- optional density override
 *   }
 *
 * Component CSS reads only semantic tokens, so changing seeds in one place
 * re-skins every component instantly.
 */

@import "./tnn-primitives.css";
@import "./tnn-semantics.css";
@import "./tnn-themes.css";
@import "./tnn-components.css";
