@tenonhq/dovetail-dashboard 0.0.15 → 0.0.17
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/package.json +1 -1
- package/public/app.js +3 -2
- package/public/claude-plans.css +522 -202
- package/public/claude-plans.html +6 -1
- package/public/claude-plans.js +35 -1
- package/public/index.html +8 -3
- package/public/styles.css +316 -272
- package/public/tokens.css +162 -0
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -578,8 +578,9 @@ function renderTaskList() {
|
|
|
578
578
|
|
|
579
579
|
var priorityHtml = "";
|
|
580
580
|
if (task.priority) {
|
|
581
|
-
|
|
582
|
-
var
|
|
581
|
+
// Tenon tertiary + status palette (see tokens.css)
|
|
582
|
+
var colors = { urgent: "#d92b2b", high: "#f16b19", normal: "#f4dc00", low: "#76d6ff" };
|
|
583
|
+
var color = colors[task.priority] || "#9caaa1";
|
|
583
584
|
priorityHtml = '<span class="task-priority-dot" style="background:' + color + '"></span>';
|
|
584
585
|
}
|
|
585
586
|
|