claude-statusline-powerline
Version:
Beautiful powerline-style statusline for Claude Code with git integration, session tracking, and cost monitoring
22 lines • 797 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MonokaiTheme = void 0;
const base_1 = require("./base");
class MonokaiTheme extends base_1.BaseTheme {
constructor() {
super(...arguments);
this.name = 'monokai';
this.palette = {
primary: '#66d9ef', // Monokai cyan
secondary: '#ae81ff', // Monokai purple
success: '#a6e22e', // Monokai green
warning: '#e6db74', // Monokai yellow
error: '#f92672', // Monokai pink/red
neutral: '#75715e', // Monokai comment
text_light: '#f8f8f2', // Monokai foreground
text_dark: '#272822', // Monokai background
};
}
}
exports.MonokaiTheme = MonokaiTheme;
//# sourceMappingURL=monokai.js.map