@coherenceplatform/sdk
Version:
Coherence SDK for embedding AI-powered chat into your applications
66 lines • 2.32 kB
TypeScript
export namespace DEFAULT_THEME {
let darkMode: boolean;
let fontSize: string;
namespace light {
let background: string;
let foreground: string;
let card: string;
let cardForeground: string;
let primary: string;
let primaryForeground: string;
let secondary: string;
let secondaryForeground: string;
let muted: string;
let mutedForeground: string;
let accent: string;
let accentForeground: string;
let destructive: string;
let destructiveForeground: string;
let border: string;
let input: string;
let ring: string;
}
namespace dark {
let background_1: string;
export { background_1 as background };
let foreground_1: string;
export { foreground_1 as foreground };
let card_1: string;
export { card_1 as card };
let cardForeground_1: string;
export { cardForeground_1 as cardForeground };
let primary_1: string;
export { primary_1 as primary };
let primaryForeground_1: string;
export { primaryForeground_1 as primaryForeground };
let secondary_1: string;
export { secondary_1 as secondary };
let secondaryForeground_1: string;
export { secondaryForeground_1 as secondaryForeground };
let muted_1: string;
export { muted_1 as muted };
let mutedForeground_1: string;
export { mutedForeground_1 as mutedForeground };
let accent_1: string;
export { accent_1 as accent };
let accentForeground_1: string;
export { accentForeground_1 as accentForeground };
let destructive_1: string;
export { destructive_1 as destructive };
let destructiveForeground_1: string;
export { destructiveForeground_1 as destructiveForeground };
let border_1: string;
export { border_1 as border };
let input_1: string;
export { input_1 as input };
let ring_1: string;
export { ring_1 as ring };
}
}
export function hexToHsl(hex: any): string;
export function createCSSVariablesStyle(theme: any): {
'--primary-color': any;
'--font-size': any;
'--theme-mode': string;
};
//# sourceMappingURL=theme.d.ts.map