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.
- package/dist/index.js +4 -4
- 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: "#
|
|
138
|
-
//
|
|
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: "#
|
|
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;
|