export type tTheme = "dark" | "light";

export interface iThemeContext {
    readonly theme: tTheme;
}
