claude-contextline 1.3.0 → 1.3.2
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.
- package/dist/index.js +10 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -134,18 +134,18 @@ var darkTheme = {
|
|
|
134
134
|
// Red, white (100%+)
|
|
135
135
|
};
|
|
136
136
|
var fulcrumTheme = {
|
|
137
|
-
directory: { bg: "#
|
|
138
|
-
//
|
|
139
|
-
git: { bg: "#121212", fg: "#
|
|
140
|
-
// Secondary,
|
|
141
|
-
model: { bg: "#090909", fg: "#
|
|
142
|
-
// Card,
|
|
143
|
-
context: { bg: "#161616", fg: "#
|
|
144
|
-
// Muted,
|
|
137
|
+
directory: { bg: "#f90013", fg: "#ffffff" },
|
|
138
|
+
// Destructive red, white
|
|
139
|
+
git: { bg: "#121212", fg: "#0064f4" },
|
|
140
|
+
// Secondary, accent blue
|
|
141
|
+
model: { bg: "#090909", fg: "#f84331" },
|
|
142
|
+
// Card, warning red-orange
|
|
143
|
+
context: { bg: "#161616", fg: "#0064f4" },
|
|
144
|
+
// Muted, accent blue
|
|
145
145
|
warning: { bg: "#f84331", fg: "#ffffff" },
|
|
146
146
|
// Warning red-orange, white (80%+)
|
|
147
|
-
critical: { bg: "#
|
|
148
|
-
//
|
|
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;
|