Set project color from your favorites
Select and apply a color from your saved favorites to the project. Use when you want to quickly switch to a previously saved color scheme.
/plugin marketplace add b-open-io/claude-peacock/plugin install peacock@b-open-ioChoose a Peacock color from your saved favorites. Matches VSCode Peacock extension's changeColorToFavorite command.
/peacock:favorite-color
Check for favorites file:
ls ~/.claude/.peacock-favorites.json 2>/dev/null || echo "not found"
If not found or empty:
❌ No favorite colors saved yet
Save your first favorite:
/peacock:change-color #8d0756
/peacock:save-favorite
Or add recommended favorites:
/peacock:add-favorites
Stop execution.
Read favorites:
jq -c . ~/.claude/.peacock-favorites.json
If array is empty, show same error above.
Use AskUserQuestion tool:
Question:
Maximum 4 options shown. If more than 4 favorites, show most recent 4.
Take selected color and apply to project using same logic as /peacock:change-color:
.vscode/settings.jsonOutput:
✅ Applied favorite: <name> (<hex>)
Applied to:
• Title Bar: <hex>
• Status Bar: <hex>
• Activity Bar: <lighter_hex>
Reload VSCode window:
Cmd+Shift+P → "Developer: Reload Window"
</instructions>