Skip to content

Commit

Permalink
feat: Add title bar theme
Browse files Browse the repository at this point in the history
Close #1119
  • Loading branch information
equinusocio committed Apr 12, 2017
1 parent d3c9c9e commit 431b28c
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 3 deletions.
11 changes: 11 additions & 0 deletions Material-Theme-Darker.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@
"border_color": [27, 27, 27]
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [97, 97, 97],
"bg": [33, 33, 33]
},


/* @DIALOG POPUP
* Dialog popup style and progressbar
========================================================================= */
Expand Down
11 changes: 11 additions & 0 deletions Material-Theme-Lighter.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@
"border_color": [230, 230, 230]
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [167, 173, 176],
"bg": [250, 250, 250]
},


/* @ DIALOG POPUP
* Dialog popup style and progressbar
========================================================================= */
Expand Down
10 changes: 10 additions & 0 deletions Material-Theme-Palenight.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@
"border_color": [32, 34, 48]
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [103, 110, 149],
"bg": [41, 45, 62]
},


// @ DIALOG POPUP
// Dialog popup style and progressbar
Expand Down
11 changes: 11 additions & 0 deletions Material-Theme.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@
"border_color": [34, 45, 51]
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [96, 125, 139],
"bg": [38, 50, 56]
},


// @ DIALOG POPUP
// Dialog popup style and progressbar
// =========================================================================
Expand Down
12 changes: 11 additions & 1 deletion sources/themes/darker/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,14 @@
"class": "grid_layout_control",
"border_size": 1,
"border_color": [27, 27, 27]
},
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [<%= ui.foreground.primary.rgb %>],
"bg": [<%= ui.background.primary.rgb %>]
},
12 changes: 11 additions & 1 deletion sources/themes/default/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,14 @@
"class": "grid_layout_control",
"border_size": 1,
"border_color": [34, 45, 51]
},
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [<%= ui.foreground.primary.rgb %>],
"bg": [<%= ui.background.primary.rgb %>]
},
12 changes: 11 additions & 1 deletion sources/themes/lighter/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,14 @@
"class": "grid_layout_control",
"border_size": 1,
"border_color": [230, 230, 230]
},
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [<%= ui.foreground.primary.rgb %>],
"bg": [<%= ui.background.primary.rgb %>]
},
10 changes: 10 additions & 0 deletions sources/themes/palenight/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,13 @@
"border_size": 1,
"border_color": [32, 34, 48]
},

// @TITLE BAR
// App title bar
// =========================================================================

{
"class": "title_bar",
"fg": [<%= ui.foreground.primary.rgb %>],
"bg": [<%= ui.background.primary.rgb %>]
},

0 comments on commit 431b28c

Please sign in to comment.