claude-statusline-powerline
Version:
Beautiful powerline-style statusline for Claude Code with git integration, session tracking, and cost monitoring
22 lines • 842 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SolarizedLightTheme = void 0;
const base_1 = require("./base");
class SolarizedLightTheme extends base_1.BaseTheme {
constructor() {
super(...arguments);
this.name = 'solarized-light';
this.palette = {
primary: '#268bd2', // Solarized blue
secondary: '#6c71c4', // Solarized violet
success: '#859900', // Solarized green
warning: '#b58900', // Solarized yellow
error: '#dc322f', // Solarized red
neutral: '#657b83', // Solarized base01
text_light: '#fdf6e3', // Solarized base3
text_dark: '#002b36', // Solarized base03
};
}
}
exports.SolarizedLightTheme = SolarizedLightTheme;
//# sourceMappingURL=solarized-light.js.map