mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
import { type DefaultTheme } from "styled-components";
|
|
import colors from "styles/defaultTheme/colors";
|
|
import formats from "styles/defaultTheme/formats";
|
|
import sizes from "styles/defaultTheme/sizes";
|
|
|
|
const defaultTheme: DefaultTheme = {
|
|
colors,
|
|
formats,
|
|
name: "Dark",
|
|
sizes,
|
|
};
|
|
|
|
export default defaultTheme;
|