urandom / darkness-e17

Darkness theme for E17

This URL has Read+Write access

darkness-e17 / e / toolbar.edc
100644 128 lines (127 sloc) 3.047 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* vim: set sw=3: */
group {
   name: "e/toolbar/default/base";
   parts {
      part {
         name: "outer_bg";
         mouse_events: 0;
         type: RECT;
         description {
            state: "default" 0.0;
            color: 0 0 0 255;
         }
      }
      part {
         name: "border";
         mouse_events: 0;
         type: RECT;
         description {
            state: "default" 0.0;
            color: DARKNESS_DARK_BLUE 100;
         }
      }
      part {
         name: "inner_bg";
         mouse_events: 0;
         type: RECT;
         description {
            state: "default" 0.0;
            rel1.offset: 2 2;
            rel2.offset: -3 -3;
            color: 15 15 15 255;
         }
      }
      part {
         name: "gradient";
         mouse_events: 0;
type: GRADIENT;
         description {
            state: "default" 0.0;
gradient {
spectrum: "blue_glow";
type: "linear";
}
fill {
angle: 0;
spread: 0.5;
}
         }
         description {
            state: "left" 0.0;
            inherit: "default" 0.0;
            fill.angle: 90;
         }
         description {
            state: "bottom" 0.0;
            inherit: "default" 0.0;
            fill.angle: 180;
         }
         description {
            state: "right" 0.0;
            inherit: "default" 0.0;
            fill.angle: 270;
         }
      }
      part {
         name: "e.swallow.content";
         type: SWALLOW;
         description {
            state: "default" 0.0;
            rel1.offset: 3 3;
            rel2.offset: -4 -4;
         }
         description {
            state: "bottom" 0.0;
            inherit: "default" 0.0;
            rel1.offset: 3 3;
            rel2.offset: -4 -4;
         }
         description {
            state: "left" 0.0;
            inherit: "default" 0.0;
            rel1.offset: 3 3;
            rel2.offset: -4 -4;
         }
         description {
            state: "right" 0.0;
            inherit: "default" 0.0;
            rel1.offset: 3 3;
            rel2.offset: -4 -4;
         }
      }
   }
   programs {
      program {
         name: "orient1";
         signal: "e,state,orientation,top";
         source: "e";
         action: STATE_SET "default" 0.0;
         target: "gradient";
         target: "e.swallow.content";
      }
      program {
         name: "orient2";
         signal: "e,state,orientation,bottom";
         source: "e";
         action: STATE_SET "bottom" 0.0;
         target: "gradient";
         target: "e.swallow.content";
      }
      program {
         name: "orient3";
         signal: "e,state,orientation,left";
         source: "e";
         action: STATE_SET "left" 0.0;
         target: "gradient";
         target: "e.swallow.content";
      }
      program {
         name: "orient4";
         signal: "e,state,orientation,right";
         source: "e";
         action: STATE_SET "right" 0.0;
         target: "gradient";
         target: "e.swallow.content";
      }
   }
}