2024-05-31 16:20:17 +02:00

18 lines
317 B
TypeScript

export type ThemeMode = 'light' | 'dark'
export interface Theme {
background: string,
space: number,
text: string
}
export const darkTheme: Theme = {
space: 10,
background: "#2f3136",
text: "#fff"
}
export const lightTheme: Theme = {
space: 10,
background: "#eee",
text: "#000"
}