@agentdao/core
Version:
Core functionality, skills, and ready-made UI components for AgentDAO - Web3 subscriptions, content generation, social media, help support, live chat, RSS fetching, web search, and agent pricing integration
8 lines (7 loc) • 373 B
TypeScript
import { Theme } from './types';
export declare const lightTheme: Theme;
export declare const darkTheme: Theme;
export declare const defaultTheme: Theme;
export declare function createTheme(overrides: Partial<Theme>): Theme;
export declare function getTheme(preference: 'light' | 'dark' | 'auto'): Theme;
export declare function generateCSSVariables(theme: Theme): string;