From bdbdf7f58607bb98999e17ace8a743267a06cd9d Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 20 Jul 2023 16:42:05 +0200 Subject: Schematic rendering WIP --- gerbonara/cad/kicad/schematic_colors.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 gerbonara/cad/kicad/schematic_colors.py (limited to 'gerbonara/cad/kicad/schematic_colors.py') diff --git a/gerbonara/cad/kicad/schematic_colors.py b/gerbonara/cad/kicad/schematic_colors.py new file mode 100644 index 0000000..4bcbe7b --- /dev/null +++ b/gerbonara/cad/kicad/schematic_colors.py @@ -0,0 +1,12 @@ + +class Colorscheme: + class KiCad: + wire = 'black' + bus = 'black' + lines = 'black' + no_connect = 'black' + text = 'black' + values = 'black' + labels = 'black' + fill = '#cccccc' + -- cgit