forked from
oppi.li/claude-code
source dump of claude code
1/**
2 * Color command - minimal metadata only.
3 * Implementation is lazy-loaded from color.ts to reduce startup time.
4 */
5import type { Command } from '../../commands.js'
6
7const color = {
8 type: 'local-jsx',
9 name: 'color',
10 description: 'Set the prompt bar color for this session',
11 immediate: true,
12 argumentHint: '<color|default>',
13 load: () => import('./color.js'),
14} satisfies Command
15
16export default color