Skip to content

Commit

Permalink
Standardize hex color codes to uppercase letters
Browse files Browse the repository at this point in the history
  • Loading branch information
eecavanna committed Aug 7, 2024
1 parent 6625bd7 commit affe069
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions refscan/templates/graph.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,51 +72,51 @@
selector: "node.outgoer",
style: {
fontWeight: "bold",
color: "#00ff00", // text color
backgroundColor: "#00ff00",
color: "#00FF00", // text color
backgroundColor: "#00FF00",
}
},
{
selector: "edge.outgoer",
style: {
lineColor: "#00ff00",
targetArrowColor: "#00ff00",
lineColor: "#00FF00",
targetArrowColor: "#00FF00",
width: 3,
}
},
{
selector: "node.incomer",
style: {
fontWeight: "bold",
color: "#ffA500", // text color
backgroundColor: "#ffA500",
color: "#FFA500", // text color
backgroundColor: "#FFA500",
}
},
{
selector: "edge.incomer",
style: {
lineColor: "#ffA500",
targetArrowColor: "#ffA500",
lineColor: "#FFA500",
targetArrowColor: "#FFA500",
width: 3,
}
},
{
selector: "node.incomer.outgoer", // a node that is both an incomer and an outgoer
style: {
fontWeight: "bold",
color: "#00ff00", // text color
backgroundColor: "#00ff00",
color: "#00FF00", // text color
backgroundColor: "#00FF00",
borderWidth: 3,
borderStyle: "solid",
borderColor: "#ffA500",
borderColor: "#FFA500",
}
},
{
selector: "node.inFocus",
style: {
fontWeight: "bold",
color: "#0000ff", // text color
backgroundColor: "#0000ff"
color: "#0000FF", // text color
backgroundColor: "#0000FF"
}
}
],
Expand Down

0 comments on commit affe069

Please sign in to comment.