Node colorization for frontend/backend

This commit is contained in:
space-nuko
2023-04-30 17:29:27 -07:00
parent 7880c68d7f
commit 5b4254c054
5 changed files with 68 additions and 16 deletions

View File

@@ -24,9 +24,6 @@ function addComfyInput(node: LGraphNode, inputName: string, extraInfo: Partial<I
for (const [k, v] of Object.entries(extraInfo))
input[k] = v
input.serialize = true;
input.shape = BuiltInSlotShape.CARD_SHAPE;
input.color_off = "lightblue"
input.color_on = "lightblue"
return input;
}