Set project to a random vibrant Peacock color
Applies a random vibrant Peacock color to your project's VS Code settings. Use this to quickly refresh your workspace theme without manually picking colors.
/plugin marketplace add b-open-io/claude-peacock/plugin install peacock@b-open-ioQuickly set your project to a random vibrant Peacock color. Matches VSCode Peacock extension's changeColorToRandom command.
/peacock:random-color
Choose randomly from this vibrant palette:
Store selected color as BASE_COLOR.
Activity Bar (lighter): Convert hex to RGB, add 40 to each component, cap at 255
Text color: Calculate luminance: L = (0.2126R + 0.7152G + 0.0722*B) / 255 Use #e7e7e7 if L < 0.5, else #15202b
Badge (complementary): Simple complementary: swap dominant RGB channel
Check if file exists:
ls .vscode/settings.json 2>/dev/null || echo "not found"
Create or update with Peacock colors (same format as /peacock:change-color).
Output:
✅ Random Peacock color applied: <hex> (<color_name>)
Applied to:
• Title Bar: <base_hex>
• Status Bar: <base_hex>
• Activity Bar: <lighter_hex>
Reload VSCode window:
Cmd+Shift+P → "Developer: Reload Window"
</instructions>