mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
9 lines
242 B
TypeScript
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>;
|