Avoid GNUism '\|' by using extended REs.
[geda-gaf.git] / gschem / lib / gschem-colormap-darkbg
blob715687dfd0af214811e145f9d88521234a43d495
1 ;                                                         -*-Scheme-*-
3 ; Dark 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         "#000000")
19    (pin                "#ffffff")
20    (net-endpoint       "#ff0000")
21    (graphic            "#00ff00")
22    (net                "#0000ff")
23    (attribute          "#ffff00")
24    (logic-bubble       "#00ffff")
25    (dots-grid          "#bebebe")
26    (origin             "#303030")
27    (mesh-grid-major    "#1e1e1e")
28    (mesh-grid-minor    "#171717")
29    (detached-attribute "#ff0000")
30    (text               "#00ff00")
31    (bus                "#00ff00")
32    (select             "#ffa500")
33    (place-origin       "#c00000")
34    (bounding-box       "#ffa500")
35    (zoom-box           "#00ffff")
36    (stroke             "#e5e5e5")
37    (lock               "#bebebe")
38    (output-background  #f)
39    (junction           "#ffff00")
40    (freestyle1         #f)
41    (freestyle2         #f)
42    (freestyle3         #f)
43    (freestyle4         #f)
44    ))
46 (display-outline-color-map
47  '((background         #f)
48    (pin                "#ababab")
49    (net-endpoint       "#00ab00")
50    (graphic            "#00ab00")
51    (net                "#0000ab")
52    (attribute          "#abab00")
53    (logic-bubble       "#00abab")
54    (dots-grid          #f)
55    (origin             #f)
56    (mesh-grid-major    #f)
57    (mesh-grid-minor    #f)
58    (detached-attribute "#ab0000")
59    (text               "#00ab00")
60    (bus                "#00ab00")
61    (select             "#ffa500")
62    (place-origin       "#c00000")
63    (bounding-box       "#ffa500")
64    (zoom-box           "#00ffff")
65    (stroke             "#e5e5e5")
66    (lock               "#a9a9a9")
67    (output-background  #f)
68    (junction           "#abab00")
69    (freestyle1         #f)
70    (freestyle2         #f)
71    (freestyle3         #f)
72    (freestyle4         #f)
73    ))