SchematicColorScheme constructor
- required Color background,
- required Color nodeBackground,
- required Color nodeBorder,
- required Color nodeText,
- required Color portStroke,
- required Color wire,
- required Color wireHighlight,
- required Color externalPortFill,
- required Color junctionPoint,
- required Color operatorFill,
- required Color constantFill,
The color scheme for our schematic viewer.
Implementation
const SchematicColorScheme({
required this.background,
required this.nodeBackground,
required this.nodeBorder,
required this.nodeText,
required this.portStroke,
required this.wire,
required this.wireHighlight,
required this.externalPortFill,
required this.junctionPoint,
required this.operatorFill,
required this.constantFill,
});