/** * Synthwave Industrial Dark theme for xterm.js. * * Matches mks-dev-environment design system from globals.css: * - background: #241B2F (220 25% 15%) * - primary: #D40C67 (330 85% 43%) * - success: #44ffaa (142 100% 62%) * * Color palette optimized for dark terminal with high contrast * and cyberpunk/synthwave aesthetic. * * @module components/devenv/terminal/theme */ import type { ITerminalTheme } from './Terminal.types'; /** * Synthwave Industrial Dark theme for xterm.js. * * Features: * - Deep purple background (#241B2F) matching design system * - Primary magenta cursor (#D40C67) with glow effect support * - High-contrast ANSI colors for readability * - Cyan selection with transparency for visual feedback */ export declare const SYNTHWAVE_TERMINAL_THEME: ITerminalTheme; /** * Get terminal theme with optional overrides. * * Allows customizing the Synthwave theme while preserving * the default color scheme. Useful for per-session theming. * * @param overrides - Partial theme properties to override * @returns Complete terminal theme with applied overrides * * @example * ```ts * const customTheme = getTerminalTheme({ * cursor: '#00ff00', * fontSize: 16, * }); * ``` */ export declare function getTerminalTheme(overrides?: Partial): ITerminalTheme; //# sourceMappingURL=Terminal.theme.d.ts.map