blob: 35c647ad68d42063e7385130f2290dd7a5559daa (
plain) (
tree)
|
|
import { createContext } from 'react';
interface ContextInterface {
title?: string;
name?: string;
subtitle?: string;
tagline?: string;
icon?: React.ReactNode;
colors?: {
main: string;
secondary: string;
secondary_alt: string;
type: string;
type_alt: string;
dark: string;
};
}
const ThemeContext = createContext({});
export { ThemeContext, ContextInterface };
|