[Subgraph] Use color palette colors for subgraph io node slot labels (#1176)

This commit is contained in:
Christian Byrne
2025-07-30 01:24:00 -07:00
committed by GitHub
parent f936ffcaf7
commit 04b03e22f8

View File

@@ -137,7 +137,7 @@ export abstract class SubgraphSlot extends SlotBase implements SubgraphIO, Hover
if (!this.displayName) return
const [x, y] = this.labelPos
ctx.fillStyle = this.isPointerOver ? "white" : "#AAA"
ctx.fillStyle = this.isPointerOver ? "white" : (LiteGraph.NODE_TEXT_COLOR || "#AAA")
ctx.fillText(this.displayName, x, y)
}