import { SemanticColorScheme } from '../tokens/colors/type.mjs'; import { ComponentScheme } from '../tokens/component/type.mjs'; import { EffectScheme } from '../tokens/effect/type.mjs'; type Brand = "scc" | "nbc" | "hanghae" | "ipk" | "b2b"; type ThemeMode = "Dark" | "Light"; type ThemeName = `${Brand}${ThemeMode}`; type ColorThemeScheme = Record; type EffectThemeScheme = Record; type ComponentThemeScheme = Record; type ThemeScheme = SemanticColorScheme & EffectScheme; export type { Brand, ColorThemeScheme, ComponentThemeScheme, EffectThemeScheme, ThemeName, ThemeScheme };