mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-23 02:45:38 -06:00
de1dfab03e
* refactor: move terminal core into package * refactor: move terminal module files * fix: clean terminal package CI followups * test: update lint suppression allowlist * fix: ship terminal core runtime aliases
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
// Lobster palette tokens for CLI/UI theming. Use this palette for all CLI color output.
|
|
// Keep in sync with docs/cli/index.md (CLI palette section).
|
|
export const LOBSTER_PALETTE = {
|
|
accent: "#FF5A2D",
|
|
accentBright: "#FF7A3D",
|
|
accentDim: "#D14A22",
|
|
info: "#FF8A5B",
|
|
success: "#2FBF71",
|
|
warn: "#FFB020",
|
|
error: "#E23D2D",
|
|
muted: "#8B7F77",
|
|
} as const;
|