daedalOS/styles/themes.ts
2023-11-18 21:02:03 -08:00

9 lines
242 B
TypeScript

import { type DefaultTheme } from "styled-components";
import defaultTheme from "styles/defaultTheme";
const themes = { defaultTheme };
export type ThemeName = keyof typeof themes;
export default themes as Record<ThemeName, DefaultTheme>;