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