Shows a big status bar badge and optionally recolors your title/status bar based on regex rules. Stay in the right branch—every time.
Works great in Cursor too. First match wins on regex color rules.
The current branch is prominently displayed in the status bar with custom colors.
Theme branches like main, hotfix\/.*, feature\/.*, release\/.* with background/foreground colors.
Updates workbench.colorCustomizations to recolor the title bar and status bar per rule.
Branch Beacon: Copy Current Branch and Branch Beacon: Refresh keep you fast and focused.
First match wins: rules are evaluated top‑down for predictable theming.
"branchHighlighter.showStatusBar": true,
"branchHighlighter.updateTitleBarColors": true,
"branchHighlighter.rules": [
{ "pattern": "^(main|master|prod)$", "bg": "#1d9f61", "fg": "#ffffff" },
{ "pattern": "^stage|preprod|release(\\/.*)?$", "bg": "#ff9800", "fg": "#000000" },
{ "pattern": "^hotfix|bugfix(\\/.*)?$", "bg": "#e53935", "fg": "#ffffff" },
{ "pattern": "^feature(\\/.*)?$", "bg": "#3f51b5", "fg": "#ffffff" }
],
"branchHighlighter.defaultColors": { "bg": "#444444", "fg": "#ffffff" }
See repository README for all options and examples.