zyros
Version:
A developer-friendly static site generator built with Next.js and Tailwind CSS. Transform a simple JSON file into a beautiful, fast static website.
26 lines (23 loc) • 559 B
TypeScript
export interface Theme {
name: string;
background: string;
text: string;
accent: string;
muted: string;
border: string;
card: string;
hover: string;
primary: string;
secondary: string;
}
export interface ThemeConfig {
themes: Record<string, Theme>;
defaultTheme: string;
}
export type ThemeName = 'light' | 'dark' | 'minimal' | 'ocean' | 'sunset' | 'forest' | 'midnight' | 'neon';
export interface CustomTheme extends Theme {
custom: true;
author?: string;
version?: string;
description?: string;
}