@cryptiklemur/lattice 1.24.1 → 1.24.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.
@@ -92,15 +92,12 @@ export function getChartColors(): ChartColors {
92
92
  var error = b08 || oklch(css("--color-error"));
93
93
  var orange = b09 || warning;
94
94
  var magenta = b0F || secondary;
95
- var contentRaw = css("--color-base-content");
95
+ var b03 = css("--base03");
96
+ var b04 = css("--base04");
97
+ var b02 = css("--base02");
96
98
 
97
- var tickFill = contentRaw
98
- ? "oklch(" + contentRaw + " / 0.5)"
99
- : "oklch(0.9 0.02 280 / 0.5)";
100
-
101
- var gridStroke = contentRaw
102
- ? "oklch(" + contentRaw + " / 0.12)"
103
- : "oklch(0.9 0.02 280 / 0.12)";
99
+ var tickFill = b04 || b03 || "#9ea8c7";
100
+ var gridStroke = b02 || "#44475a";
104
101
 
105
102
  _cache = {
106
103
  primary,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.24.1",
3
+ "version": "1.24.2",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",