claude-statusline-powerline
Version:
Beautiful powerline-style statusline for Claude Code with git integration, session tracking, and cost monitoring
22 lines • 759 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ElectricTheme = void 0;
const base_1 = require("./base");
class ElectricTheme extends base_1.BaseTheme {
constructor() {
super(...arguments);
this.name = 'electric';
this.palette = {
primary: '#ff00ff', // Electric magenta
secondary: '#00ffff', // Electric cyan
success: '#00ff00', // Electric green
warning: '#ffff00', // Electric yellow
error: '#ff0080', // Electric pink
neutral: '#8080ff', // Electric blue
text_light: '#ffffff',
text_dark: '#000000',
};
}
}
exports.ElectricTheme = ElectricTheme;
//# sourceMappingURL=electric.js.map