/**
 * Theme loader.
 *
 * Imports every theme file under css/themes/.  Each file sets CSS custom
 * properties on `#gameContainer` (or `[data-theme='...']`).  The active theme
 * is selected at runtime by `GameEngine.setupHeader`, which writes the
 * creator's `ui.interface` onto `#gameContainer` as `data-theme`.
 *
 * To add a new theme:
 *   1. Create css/themes/<name>.css following the same token structure.
 *   2. Add an @import line below.
 *   3. Add <name> to the KNOWN_THEMES set in src/lib/schema.ts.
 *   4. Create img/<name>/ with the HUD art (falls back to img/wood/).
 */

@import url('themes/wood.css');
@import url('themes/wood-levelup.css');
@import url('themes/wood-quest.css');
@import url('themes/wood-building.css');
@import url('themes/wood-options.css');

@import url('themes/futuristic.css');
