1 ( use-modules ( lepton color-map ) )
 2 
 3 ;
 4 ; Light background color map for gschem
 5 ;
 6 
 7 ;  ;'s are comments
 8 ;  Keywords are case sensitive (guile feature)
 9 ;  Colors are not case sensitive
10 ;
11 
12 ; Colors may be specified in "#RRGGBB" or "#RRGGBBAA" format. If the alpha
13 ; value is not specified, full opacity is assumed.
14 ;
15 ; If a color is #f (not a string; Scheme 'false'), then objects of
16 ; that color will never be drawn.
17 
18 (display-color-map
19  '((background         "#f0f0f0")
20    (pin                "#000000")
21    (net-endpoint       "#ff0000")
22    (graphic            "#008b00")
23    (net                "#0000ee")
24    (attribute          "#000000")
25    (logic-bubble       "#008b8b")
26    (dots-grid          "#7f7f7f")
27    (mesh-grid-major    "#e1e1e1")
28    (mesh-grid-minor    "#e8e8e8")
29    (detached-attribute "#ff0000")
30    (text               "#008b00")
31    (bus                "#00ee00")
32    (select             "#b22222")
33    (bounding-box       "#ffa500")
34    (stroke             "#a020f0")
35    (zoom-box           "#008b8b")
36    (lock               "#666666")
37    (output-background  #f)
38    (junction           "#a020f0")
39    (freestyle1         "#26bb92")
40    (freestyle2         "#9b0d80")
41    (freestyle3         "#177cd8")
42    (freestyle4         "#000000")
43    ))
44 
45 (display-outline-color-map
46  '((background         #f)
47    (pin                "#4d4d4d")
48    (net-endpoint       "#cdcdcd")
49    (graphic            "#008b00")
50    (net                "#0000cd")
51    (attribute          "#4d4d4d")
52    (logic-bubble       "#008b8b")
53    (dots-grid          #f)
54    (mesh-grid-major    #f)
55    (mesh-grid-minor    #f)
56    (detached-attribute "#cd0000")
57    (text               "#008b00")
58    (bus                "#00cd00")
59    (select             "#b22222")
60    (bounding-box       "#ffa500")
61    (zoom-box           "#008b8b")
62    (stroke             "#a020f0")
63    (lock               "#a9a9a9")
64    (output-background  #f)
65    (junction           "#7e26cd")
66    (freestyle1         "#26bb92")
67    (freestyle2         "#9b0d80")
68    (freestyle3         "#177cd8")
69    (freestyle4         "#000000")
70    ))