gschem: Introduce B/W colour scheme
[geda-gaf/pcjc2.git] / gschem / lib / gschem-colormap-bw
blob179fd4ba8ac1611f3d2d8da5278ff01fa375a69e
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            "#000000")
22    (net                "#000000")
23    (attribute          "#000000")
24    (logic-bubble       "#000000")
25    (dots-grid          "#7f7f7f")
26    (mesh-grid-major    "#e1e1e1")
27    (mesh-grid-minor    "#e8e8e8")
28    (detached-attribute "#ff0000")
29    (text               "#000000")
30    (bus                "#000000")
31    (select             "#b22222")
32    (bounding-box       "#ffa500")
33    (stroke             "#a020f0")
34    (zoom-box           "#008b8b")
35    (lock               "#666666")
36    (output-background  #f)
37    (junction           "#000000")
38    (freestyle1         #f)
39    (freestyle2         #f)
40    (freestyle3         #f)
41    (freestyle4         #f)
42    ))
44 (display-outline-color-map
45  '((background         "#f0f0f0")
46    (pin                "#4d4d4d")
47    (net-endpoint       "#cdcdcd")
48    (graphic            "#008b00")
49    (net                "#0000cd")
50    (attribute          "#4d4d4d")
51    (logic-bubble       "#008b8b")
52    (dots-grid          #f)
53    (mesh-grid-major    #f)
54    (mesh-grid-minor    #f)
55    (detached-attribute "#cd0000")
56    (text               "#008b00")
57    (bus                "#00cd00")
58    (select             "#b22222")
59    (bounding-box       "#ffa500")
60    (zoom-box           "#008b8b")
61    (stroke             "#a020f0")
62    (lock               "#a9a9a9")
63    (output-background  #f)
64    (junction           "#7e26cd")
65    (freestyle1         #f)
66    (freestyle2         #f)
67    (freestyle3         #f)
68    (freestyle4         #f)
69    ))