Remove ALL Peacock colors and settings
Completely removes all Peacock color customizations and settings from your project and global configuration. Use this when you want a clean slate or to undo all Peacock changes.
/plugin marketplace add b-open-io/claude-peacock/plugin install peacock@b-open-ioComplete removal of all Peacock color customizations and settings. More thorough than reset. Matches VSCode Peacock extension's removeAllPeacockColors command.
/peacock:remove-all-colors
Check for .vscode/settings.json:
ls .vscode/settings.json 2>/dev/null || echo "not found"
If exists, remove all Peacock properties:
jq 'del(.["peacock.color"]) |
del(.workbench.colorCustomizations)' \
.vscode/settings.json > .vscode/settings.json.tmp
mv .vscode/settings.json.tmp .vscode/settings.json
# Remove if empty
if jq -e '. == {}' .vscode/settings.json 2>/dev/null; then
rm .vscode/settings.json
rmdir .vscode 2>/dev/null || true
fi
Remove favorites file:
rm ~/.claude/.peacock-favorites.json 2>/dev/null || true
Remove config file if exists:
rm ~/.claude/.peacock-config 2>/dev/null || true
Output:
✅ All Peacock colors and settings removed
Removed:
• Project colors (.vscode/settings.json)
• Favorites (~/.claude/.peacock-favorites.json)
• Configuration (~/.claude/.peacock-config)
The statusline will show default colors.
iTerm2 tab color will reset to default.
To start fresh:
/peacock:change-color #8d0756
/peacock:add-recommended
</instructions>