mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-18 05:32:44 +00:00
22 lines
1.6 KiB
TypeScript
22 lines
1.6 KiB
TypeScript
import type { HudColorOverrides } from '../config.js';
|
|
export declare const RESET = "\u001B[0m";
|
|
export declare function green(text: string): string;
|
|
export declare function yellow(text: string): string;
|
|
export declare function red(text: string): string;
|
|
export declare function cyan(text: string): string;
|
|
export declare function magenta(text: string): string;
|
|
export declare function dim(text: string): string;
|
|
export declare function claudeOrange(text: string): string;
|
|
export declare function model(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function project(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function git(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function gitBranch(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function label(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function custom(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function warning(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function critical(text: string, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function getContextColor(percent: number, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function getQuotaColor(percent: number, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function quotaBar(percent: number, width?: number, colors?: Partial<HudColorOverrides>): string;
|
|
export declare function coloredBar(percent: number, width?: number, colors?: Partial<HudColorOverrides>): string;
|
|
//# sourceMappingURL=colors.d.ts.map
|