SchematicColorScheme constructor

const SchematicColorScheme({
  1. required Color background,
  2. required Color nodeBackground,
  3. required Color nodeBorder,
  4. required Color nodeText,
  5. required Color portStroke,
  6. required Color wire,
  7. required Color wireHighlight,
  8. required Color externalPortFill,
  9. required Color junctionPoint,
  10. required Color operatorFill,
  11. 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,
});