claude-contextline 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -134,8 +134,8 @@ var darkTheme = {
134
134
  // Red, white (100%+)
135
135
  };
136
136
  var fulcrumTheme = {
137
- directory: { bg: "#0064f4", fg: "#ffffff" },
138
- // Accent blue, white
137
+ directory: { bg: "#f90013", fg: "#ffffff" },
138
+ // Destructive red, white
139
139
  git: { bg: "#121212", fg: "#81aefa" },
140
140
  // Secondary, light blue
141
141
  model: { bg: "#090909", fg: "#659dfb" },
@@ -144,8 +144,8 @@ var fulcrumTheme = {
144
144
  // Muted, light blue
145
145
  warning: { bg: "#f84331", fg: "#ffffff" },
146
146
  // Warning red-orange, white (80%+)
147
- critical: { bg: "#f90013", fg: "#ffffff" }
148
- // Destructive red, white (100%+)
147
+ critical: { bg: "#0064f4", fg: "#ffffff" }
148
+ // Accent blue, white (100%+)
149
149
  };
150
150
  function getTheme(name) {
151
151
  if (name === "fulcrum") return fulcrumTheme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-contextline",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Powerline statusline for Claude Code showing context window usage",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",