Skip to content

Commit

Permalink
feat(statemap): better colors
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrusu authored and joshuef committed Aug 31, 2022
1 parent 8badef3 commit 1abeb80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sn_node/src/node/mod.rs
Expand Up @@ -788,8 +788,8 @@ mod core {
let nanos = start_dur.subsec_nanos();
let name = self.name();
let states = json!({
"waiting-for-cmd": { "value": 0, "color": "#DAF7A6" },
"processing-cmd": { "value": 1, "color": "#f9f9f9" },
"waiting-for-cmd": { "value": 0, "color": "#f9f9f9" },
"processing-cmd": { "value": 1, "color": "#850101" },
});

let metadata = json!({
Expand Down

0 comments on commit 1abeb80

Please sign in to comment.