1 ( use-modules ( lepton color-map ) )
 2 
 3 ;
 4 ; Dark 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         "#000000")
20    (pin                "#ffffff")
21    (net-endpoint       "#ff0000")
22    (graphic            "#00ff00")
23    (net                "#0000ff")
24    (attribute          "#ffff00")
25    (logic-bubble       "#00ffff")
26    (dots-grid          "#bebebe")
27    (mesh-grid-major    "#1e1e1e")
28    (mesh-grid-minor    "#171717")
29    (detached-attribute "#ff0000")
30    (text               "#00ff00")
31    (bus                "#00ff00")
32    (select             "#ffa500")
33    (bounding-box       "#ffa500")
34    (zoom-box           "#00ffff")
35    (stroke             "#e5e5e5")
36    (lock               "#bebebe")
37    (output-background  #f)
38    (junction           "#ffff00")
39    (freestyle1         "#308a8e")
40    (freestyle2         "#d02f2f")
41    (freestyle3         "#b93ac1")
42    (freestyle4         "#cccccc")
43    ))
44 
45 (display-outline-color-map
46  '((background         #f)
47    (pin                "#ababab")
48    (net-endpoint       "#00ab00")
49    (graphic            "#00ab00")
50    (net                "#0000ab")
51    (attribute          "#abab00")
52    (logic-bubble       "#00abab")
53    (dots-grid          #f)
54    (mesh-grid-major    #f)
55    (mesh-grid-minor    #f)
56    (detached-attribute "#ab0000")
57    (text               "#00ab00")
58    (bus                "#00ab00")
59    (select             "#ffa500")
60    (bounding-box       "#ffa500")
61    (zoom-box           "#00ffff")
62    (stroke             "#e5e5e5")
63    (lock               "#a9a9a9")
64    (output-background  #f)
65    (junction           "#abab00")
66    (freestyle1         "#308a8e")
67    (freestyle2         "#d02f2f")
68    (freestyle3         "#b93ac1")
69    (freestyle4         "#cccccc")
70    ))