Skip to content

Commit

Permalink
feat(demo): statuses, add backup & tweak colors
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Jan 13, 2023
1 parent f9ae138 commit b08f438
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions fractal.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
});

Expand Down

0 comments on commit b08f438

Please sign in to comment.