claude-statusline-powerline
Version:
Beautiful powerline-style statusline for Claude Code with git integration, session tracking, and cost monitoring
22 lines • 816 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NightOwlTheme = void 0;
const base_1 = require("./base");
class NightOwlTheme extends base_1.BaseTheme {
constructor() {
super(...arguments);
this.name = 'night-owl';
this.palette = {
primary: '#82aaff', // Night Owl blue
secondary: '#c792ea', // Night Owl purple
success: '#addb67', // Night Owl green
warning: '#f78c6c', // Night Owl orange
error: '#ef5350', // Night Owl red
neutral: '#637777', // Night Owl comment
text_light: '#d6deeb', // Night Owl foreground
text_dark: '#011627', // Night Owl background
};
}
}
exports.NightOwlTheme = NightOwlTheme;
//# sourceMappingURL=night-owl.js.map