40
40
/// @prop {Color} text-color [rgba(0, 0, 0, .72)] - Sets the text color for most elements in the dock manager. Used as the default joystick icon color.
41
41
$_light-dock-manager : (
42
42
accent-color : #fff ,
43
+ active-color : (
44
+ igx-color : primary,
45
+ ),
46
+ background-color : #e5e7e9 ,
43
47
border-color : #f3f5f7 ,
44
- button-text : rgba (0 , 0 , 0 , .72 ),
48
+ button-text : (
49
+ igx-color : (grays, 800 ),
50
+ ),
45
51
context-menu-background-active : null,
46
52
context-menu-background : null,
47
53
context-menu-color-active : #000 ,
@@ -61,7 +67,6 @@ $_light-dock-manager: (
61
67
pane-header-text : null,
62
68
pinned-header-background : null,
63
69
pinned-header-text : null,
64
- primary-color : #e5e7e9 ,
65
70
splitter-background : #d3d6d9 ,
66
71
splitter-handle : null,
67
72
tab-background-active : #f3f5f7 ,
@@ -70,19 +75,155 @@ $_light-dock-manager: (
70
75
tab-border-color : null,
71
76
tab-text-active : null,
72
77
tab-text : null,
73
- text-color : rgba (0 , 0 , 0 , .72 ),
78
+ text-color : (
79
+ igx-color : (grays, 800 ),
80
+ ),
74
81
);
75
82
76
83
/// Generates a fluent dock-manager schema.
77
84
/// @type {Map}
78
85
/// @requires {function} extend
79
86
/// @requires $_light-dock-manager
80
- $_fluent-dock-manager : extend ($_light-dock-manager );
87
+ $_fluent-dock-manager : extend (
88
+ $_light-dock-manager , (
89
+ background-color : (
90
+ igx- color: surface,
91
+ ),
92
+ border-color : (
93
+ igx- color: surface,
94
+ ),
95
+ button- text: (
96
+ igx- color: (grays, 800 ),
97
+ ),
98
+ context- menu- background- active: (
99
+ igx- color: (grays, 200 ),
100
+ hexrgba: (),
101
+ ),
102
+ context- menu- color- active: (
103
+ igx- color: (grays, 800 ),
104
+ ),
105
+ context- menu- color: (
106
+ igx- color: (grays, 800 ),
107
+ ),
108
+ dock- background: (
109
+ igx- color: surface,
110
+ ),
111
+ floating- pane- border- color: (
112
+ igx- color: (grays, 400 ),
113
+ hexrgba: (),
114
+ ),
115
+ joystick- background- active: (
116
+ igx- color: (grays, 200 ),
117
+ hexrgba: (),
118
+ ),
119
+ joystick- border- color: (
120
+ igx- color: (grays, 400 ),
121
+ hexrgba: (),
122
+ ),
123
+ joystick- icon- color: (
124
+ igx- color: (grays, 800 ),
125
+ ),
126
+ joystick- icon- color- active: (
127
+ igx- color: (grays, 800 ),
128
+ ),
129
+ pane- content- background: (
130
+ igx- color: surface,
131
+ ),
132
+ pane- header- background: (
133
+ igx- color: surface,
134
+ ),
135
+ splitter- background: (
136
+ igx- color: (grays, 100 ),
137
+ hexrgba: (),
138
+ ),
139
+ splitter- handle: #ccc ,
140
+ tab- background- active: (
141
+ igx- color: surface,
142
+ ),
143
+ tab- background: (
144
+ igx- color: surface,
145
+ ),
146
+ tab- border- color- active: (
147
+ igx- color: surface,
148
+ ),
149
+ tab- border- color: (
150
+ igx- color: surface,
151
+ ),
152
+ tab- text- active: (
153
+ igx- color: primary,
154
+ ),
155
+ tab- text: (
156
+ igx- color: (grays, 700 )
157
+ ),
158
+ text- color: (
159
+ igx- color: (grays, 800 )
160
+ ),
161
+ )
162
+ );
81
163
82
164
/// Generates a bootstrap dock-manager schema.
83
165
/// @type {Map}
84
166
/// @requires {function} extend
85
167
/// @requires $_light-dock-manager
86
168
/// @requires $_bootstrap-shape-dock-manager
87
- $_bootstrap-dock-manager : extend ($_light-dock-manager );
169
+ $_bootstrap-dock-manager : extend (
170
+ $_light-dock-manager , (
171
+ border-color : (
172
+ igx- color: surface
173
+ ),
174
+ button- text: (
175
+ igx- color: primary,
176
+ ),
177
+ context- menu- background- active: (
178
+ igx- color: primary,
179
+ ),
180
+ context- menu- color- active: #fff ,
181
+ context- menu- color: (
182
+ igx- color: primary,
183
+ ),
184
+ dock- background: #f8f9fa ,
185
+ floating- pane- border- color: (
186
+ igx- color: (grays, 300 ),
187
+ ),
188
+ joystick- background- active: (
189
+ igx- color: primary,
190
+ ),
191
+ joystick- border- color: (
192
+ igx- color: (grays, 300 ),
193
+ ),
194
+ joystick- icon- color: (
195
+ igx- color: primary,
196
+ ),
197
+ joystick- icon- color- active: #fff ,
198
+ pane- content- background: (
199
+ igx- color: surface
200
+ ),
201
+ pinned- header- background: #f8f9fa ,
202
+ pane- header- background: #f8f9fa ,
203
+ primary- color: #f8f9fa ,
204
+ splitter- background: #e9ecef ,
205
+ splitter- handle: #bdc6d0 ,
206
+ tab- background- active: (
207
+ igx- color: surface
208
+ ),
209
+ tab- background: (
210
+ igx- color: surface
211
+ ),
212
+ tab- border- color- active: (
213
+ igx- color: (grays, 300 )
214
+ ),
215
+ tab- border- color: (
216
+ igx- color: surface
217
+ ),
218
+ tab- text- active: (
219
+ igx- color: (grays, 800 )
220
+ ),
221
+ tab- text: (
222
+ igx- color: primary,
223
+ ),
224
+ text- color: (
225
+ igx- color: (grays, 800 )
226
+ ),
227
+ )
228
+ );
88
229
0 commit comments