From b08f438d64256858f3824e6acfd8258127490cb0 Mon Sep 17 00:00:00 2001 From: Wesley Bomar Date: Fri, 13 Jan 2023 14:52:56 -0600 Subject: [PATCH] feat(demo): statuses, add backup & tweak colors --- fractal.config.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/fractal.config.js b/fractal.config.js index 3acb2fe73..0189986d5 100644 --- a/fractal.config.js +++ b/fractal.config.js @@ -16,22 +16,27 @@ fractal.components.set('statuses', { prototype: { label: "Prototype", description: "Do not implement.", - color: "#999999" + color: "#666666" }, wip: { label: "Work in Progress", description: "Work in progress. Implement with caution.", - color: "#CC9933" + color: "#999933" + }, + backup: { + label: "Backup", + description: "If regular variations fail.", + color: "#996633" }, ready: { label: "Ready", description: "Ready to implement.", - color: "#339933" + color: "#339966" }, deprecated: { label: 'Deprecated', description: 'Do not implement.', - color: '#990000' + color: '#800000' } });