1 ; file: colors_zelenuha_dmn.scm
 2 ; type: lepton-schematic color scheme
 3 ; copyright (c) 2019-2021 dmn <graahnul.grom@gmail.com>
 4 ; license: GPLv2+
 5 ;
 6 ; Dark color scheme created with View->Color Scheme Editor.
 7 ;
 8 ; Usage: add the following to your gschemrc configuration file:
 9 ;   ( primitive-load "/path/to/colors_zelenuha_dmn.scm" )
10 ;
11 
12 (display-color-map '(
13   (background           "#002b36ff")
14   (pin                  "#c18f5fff")
15   (net-endpoint         "#00B330af")
16   (graphic              "#cc9d47ff")
17   (net                  "#bebebeff")
18   (attribute            "#abababff")
19   (logic-bubble         "#ef653bff")
20   (dots-grid            "#006680ff")
21   (detached-attribute   "#ef5121ff")
22   (text                 "#00A2CC")
23   ; (text                 "#799aa9ff") ; default darkbg cs text color
24   (bus                  "#26c3d9ff")
25   (select               "#c7ec10ff")
26   (bounding-box         "#76e665ff")
27   (zoom-box             "#ff94e9ff")
28   (stroke               "#ffe5b5ff")
29   (lock                 "#919191ff")
30   (output-background    "#d7e842ff")
31   (freestyle1           "#97a547ff")
32   (freestyle2           "#c18f5fff")
33   (freestyle3           "#ca5d31ff")
34   (freestyle4           "#76e665ff")
35   (junction             "#ffffffff")
36   (mesh-grid-major      "#003947ff")
37   (mesh-grid-minor      "#003240ff")
38 ))
39 
40 (display-outline-color-map '(
41   (background           "#002b36af")
42   (pin                  "#c18f5faf")
43   (net-endpoint         "#00B330af")
44   (graphic              "#cc9d47af")
45   (net                  "#bebebeaf")
46   (attribute            "#abababaf")
47   (logic-bubble         "#ef653baf")
48   (dots-grid            "#006680af")
49   (detached-attribute   "#ef5121af")
50   (text                 "#799aa9af")
51   (bus                  "#26c3d9af")
52   (select               "#c7ec10af")
53   (bounding-box         "#76e665af")
54   (zoom-box             "#ff94e9af")
55   (stroke               "#ffe5b5af")
56   (lock                 "#919191af")
57   (output-background    "#d7e842af")
58   (freestyle1           "#97a547af")
59   (freestyle2           "#c18f5faf")
60   (freestyle3           "#ca5d31af")
61   (freestyle4           "#76e665af")
62   (junction             "#ffffffaf")
63   (mesh-grid-major      "#003947af")
64   (mesh-grid-minor      "#003240af")
65 ))
66