File tree Expand file tree Collapse file tree 7 files changed +30
-42
lines changed Expand file tree Collapse file tree 7 files changed +30
-42
lines changed Original file line number Diff line number Diff line change @@ -90,12 +90,12 @@ If you want to enable the white panels and inputs you can install the addon pack
90
90
91
91
// Panels
92
92
"material_theme_accent_scrollbars" : true , // Enable accent color for scrollbars
93
- "material_theme_accent_titlebar" : true , // Enable accent color for title bar
94
93
"material_theme_bright_scrollbars" : true , // Bright scrollbars puck color
95
94
"material_theme_compact_panel" : true , // Set minimal padding for the search panel
96
95
"material_theme_contrast_mode" : true , // Enable sidebar and panels contrast mode
97
96
"material_theme_panel_separator" : true , // Show bottom panel separator
98
97
"material_theme_small_statusbar" : true , // Set small status bar
98
+ "material_theme_titlebar" : true , // Enable title bar (OS X 10.10+)
99
99
100
100
// Sidebar
101
101
"material_theme_arrow_folders" : true , // Replace folder icons with arrows
Original file line number Diff line number Diff line change 193
193
"layer1.texture" : " Material Theme/assets/commons/thumb_horizontal.png" ,
194
194
"layer1.opacity" : 0.2
195
195
},
196
+
197
+ // Title bar (OS X 10.10+)
198
+
199
+ {
200
+ "class" : " title_bar" ,
201
+ "settings" : [" material_theme_titlebar" ],
202
+ "platforms" : [" osx" ],
203
+ "fg" : [<%= ui.foreground.primary.rgb %> ],
204
+ "bg" : [<%= ui.background.primary.rgb %> ]
205
+ },
206
+
207
+ {
208
+ "class" : " title_bar" ,
209
+ "settings" : [" material_theme_titlebar" , " material_theme_contrast_mode" ],
210
+ "platforms" : [" osx" ],
211
+ "fg" : [<%= ui.foreground.primary.rgb %> ],
212
+ "bg" :
213
+ <% if (ui.variant.id == "darker") { %>
214
+ [26 , 26 , 26 ]
215
+ <% } else if (ui.variant.id == "lighter") { %>
216
+ [245 , 245 , 245 ]
217
+ <% } else if (ui.variant.id == "palenight") { %>
218
+ [33 , 36 , 50 ]
219
+ <% } else { %>
220
+ [30 , 40 , 45 ]
221
+ <% } %>
222
+ },
Original file line number Diff line number Diff line change 18
18
"border_size" : 1 ,
19
19
"border_color" : [27 , 27 , 27 ]
20
20
},
21
-
22
- // @TITLE BAR
23
- // App title bar
24
- // =========================================================================
25
-
26
- {
27
- "class" : " title_bar" ,
28
- "fg" : [175 , 189 , 196 ],
29
- "bg" : [<%= ui.background.primary.rgb %> ]
30
- },
Original file line number Diff line number Diff line change 18
18
"border_size" : 1 ,
19
19
"border_color" : [34 , 45 , 51 ]
20
20
},
21
-
22
- // @TITLE BAR
23
- // App title bar
24
- // =========================================================================
25
-
26
- {
27
- "class" : " title_bar" ,
28
- "fg" : [175 , 189 , 196 ],
29
- "bg" : [<%= ui.background.primary.rgb %> ]
30
- },
Original file line number Diff line number Diff line change 18
18
"border_size" : 1 ,
19
19
"border_color" : [230 , 230 , 230 ]
20
20
},
21
-
22
- // @TITLE BAR
23
- // App title bar
24
- // =========================================================================
25
-
26
- {
27
- "class" : " title_bar" ,
28
- "fg" : [144 , 164 , 174 ],
29
- "bg" : [<%= ui.background.primary.rgb %> ]
30
- },
Original file line number Diff line number Diff line change 18
18
"border_size" : 1 ,
19
19
"border_color" : [32 , 34 , 48 ]
20
20
},
21
-
22
- // @TITLE BAR
23
- // App title bar
24
- // =========================================================================
25
-
26
- {
27
- "class" : " title_bar" ,
28
- "fg" : [166 , 172 , 205 ],
29
- "bg" : [<%= ui.background.primary.rgb %> ]
30
- },
Original file line number Diff line number Diff line change 62
62
'material_theme_contrast_mode' ,
63
63
'material_theme_bright_scrollbars' ,
64
64
'material_theme_accent_scrollbars' ,
65
- 'material_theme_accent_titlebar'
65
+ 'material_theme_titlebar'
66
+ # 'material_theme_accent_titlebar'
66
67
],
67
68
)
68
69
)
You can’t perform that action at this time.
0 commit comments