gschem: change "Close without save" key-accel to "w"
[geda-gaf/whiteaudio.git] / libgeda / lib / print-colormap-darkbg
blobb38cfd68f68e9ec8faaf2ed8bdc9d450362f6070
1 ;                                                         -*-Scheme-*-
3 ; Dark background color map for printing
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 (print-color-map
18  '((background         #f)
19    (pin                "#ffffff")
20    (net-endpoint       "#ff0000")
21    (graphic            "#00ff00")
22    (net                "#0000ff")
23    (attribute          "#ffff00")
24    (logic-bubble       "#00ffff")
25    (grid               #f)
26    (detached-attribute "#ff0000")
27    (text               "#00ff00")
28    (bus                "#00ff00")
29    (select             #f)
30    (bounding-box       #f)
31    (zoom-box           #f)
32    (stroke             #f)
33    (lock               "#bebebe")
34    (output-background  "#000000")
35    (junction           "#ffff00")
36    (freestyle1         #f)
37    (freestyle2         #f)
38    (freestyle3         #f)
39    (freestyle4         #f)
40    ))