UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

10 lines (9 loc) 328 B
import { Themes, Theme } from "./types"; export * from "./types"; export * from "./light"; export * from "./dark"; /** The default theme id */ export declare const DefaultThemeId: Themes; /** The default them definition */ export declare const DefaultTheme: Theme; export declare function resolveTheme(themeId?: Themes): Theme;