/*
 * dddk — single CSS entrypoint.
 *
 *   import '@perhapxin/dddk/styles.css';
 *
 * Includes the design tokens (CSS custom properties) for light + dark
 * + system-preference. Component-specific CSS (palette, subtitle, magic
 * pointer, mobile chrome, agent cursor) is injected at runtime by the
 * respective modules — they read from the tokens defined here.
 *
 * Want a different look? Override the tokens in your own stylesheet:
 *
 *   import '@perhapxin/dddk/styles.css';
 *   import './my-theme.css';   // your overrides
 *
 *   // my-theme.css
 *   :root { --dddk-accent: #6366f1; --dddk-radius: 4px; }
 *   [data-theme='midnight'] { --dddk-bg: #000; ... }
 *
 * See docs/14-theming.md for the full token list + custom-mode examples.
 */

@import './tokens.css';
