claude-statusline-powerline
Version:
Beautiful powerline-style statusline for Claude Code with git integration, session tracking, and cost monitoring
22 lines • 800 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GruvboxTheme = void 0;
const base_1 = require("./base");
class GruvboxTheme extends base_1.BaseTheme {
constructor() {
super(...arguments);
this.name = 'gruvbox';
this.palette = {
primary: '#458588', // Gruvbox blue
secondary: '#b16286', // Gruvbox purple
success: '#98971a', // Gruvbox green
warning: '#d79921', // Gruvbox yellow
error: '#cc241d', // Gruvbox red
neutral: '#928374', // Gruvbox gray
text_light: '#ebdbb2', // Gruvbox light foreground
text_dark: '#282828', // Gruvbox dark background
};
}
}
exports.GruvboxTheme = GruvboxTheme;
//# sourceMappingURL=gruvbox.js.map