new default colour based on new palette

This commit is contained in:
Sam Hewitt 2016-05-10 18:25:48 -04:00
parent 8f57e983df
commit 82503f8303
24 changed files with 1906 additions and 1747 deletions

View File

@ -1075,7 +1075,7 @@ StScrollBar {
#dash { #dash {
font-size: 9pt; font-size: 9pt;
color: #dbdee0; color: #dbdee0;
/*background-color: #636E73; */ /*background-color: #546e7a; */
background-color: #454d50; background-color: #454d50;
padding: 4px 0; padding: 4px 0;
border: 1px solid rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);

View File

@ -17,7 +17,7 @@
# Paper GTK2 Theme # Paper GTK2 Theme
gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#555555\ntooltip_fg_color:#FFFFFF\nmenubar_color:#636E73\nselected_bg_color:#347D9F\nselected_fg_color:#FFFFFF\ntext_color:#555555\nwm_color:#636E73\nunfocused_wm_color:#5A6367\nbg_color:#EFEFEF\ninsensitive_bg_color:#efefef\ntooltip_bg_color:#333333\npanel_bg_color:#576165\npanel_fg_color:#efefef\nlink_color:#347D9F" gtk-color-scheme = "base_color:#FFFFFF\nfg_color:#555555\ntooltip_fg_color:#FFFFFF\nmenubar_color:#546e7a\nselected_bg_color:#347D9F\nselected_fg_color:#FFFFFF\ntext_color:#555555\nwm_color:#546e7a\nunfocused_wm_color:#5A6367\nbg_color:#EFEFEF\ninsensitive_bg_color:#efefef\ntooltip_bg_color:#333333\npanel_bg_color:#576165\npanel_fg_color:#efefef\nlink_color:#347D9F"
gtk-auto-mnemonics = 1 gtk-auto-mnemonics = 1
gtk-primary-button-warps-slider = 1 gtk-primary-button-warps-slider = 1

View File

@ -19,7 +19,7 @@
@define-color terminal #dbdee0; @define-color terminal #dbdee0;
@define-color terminal_background alpha(#002B36, 0.9); @define-color terminal_background alpha(#002B36, 0.9);
@define-color terminal_text #839495; @define-color terminal_text #839495;
@define-color terminal_window #636E73; @define-color terminal_window #546e7a;
@define-color terminal_window_text #dbdee0; @define-color terminal_window_text #dbdee0;
@define-color backdrop_terminal_window_text shade(@terminal_window_text, 0.8); @define-color backdrop_terminal_window_text shade(@terminal_window_text, 0.8);
@define-color insensitive_terminal_window_text shade(@terminal_window_text, 0.95); @define-color insensitive_terminal_window_text shade(@terminal_window_text, 0.95);

View File

@ -16,7 +16,7 @@
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/. * with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
*/ */
@define-color nautilus #636E73; @define-color nautilus #546e7a;
@define-color disk_space_unknown #888a85; @define-color disk_space_unknown #888a85;
@define-color disk_space_used #9FB0B9; @define-color disk_space_used #9FB0B9;
@define-color disk_space_free #D8D8D8; @define-color disk_space_free #D8D8D8;

View File

@ -20,7 +20,7 @@
@define-color pantheonTerminal #3B4245; @define-color pantheonTerminal #3B4245;
@define-color terminal_background alpha(#002B36, 0.9); @define-color terminal_background alpha(#002B36, 0.9);
@define-color terminal_text #839495; @define-color terminal_text #839495;
@define-color terminal_window #636E73; @define-color terminal_window #546e7a;
@define-color terminal_window_text #dbdee0; @define-color terminal_window_text #dbdee0;
@define-color backdrop_terminal_window_text shade(@terminal_window_text, 0.8); @define-color backdrop_terminal_window_text shade(@terminal_window_text, 0.8);
@define-color insensitive_terminal_window_text shade(@terminal_window_text, 0.95); @define-color insensitive_terminal_window_text shade(@terminal_window_text, 0.95);

View File

@ -20,7 +20,7 @@
* Unity Colors * * Unity Colors *
****************/ ****************/
@define-color unity #636E73; /* Unity window border color */ @define-color unity #546e7a; /* Unity window border color */
@define-color backdrop_unity #5A6367; /* Backdrop Unity window border color */ @define-color backdrop_unity #5A6367; /* Backdrop Unity window border color */
@define-color unity_text #dbdee0; /* Unity window text color */ @define-color unity_text #dbdee0; /* Unity window text color */
@define-color backdrop_unity_text #909598; /* Backdrop Unity window text color */ @define-color backdrop_unity_text #909598; /* Backdrop Unity window text color */

View File

@ -2,12 +2,12 @@
// it gets @if ed depending on $variant // it gets @if ed depending on $variant
// Main definitions // Main definitions
$base_color: if($variant == 'light', #ffffff, #636E73); $base_color: if($variant == 'light', #ffffff, #6a7981);
$bg_color: if($variant == 'light', #f7f7f7, #4F585C); $bg_color: if($variant == 'light', #f7f7f7, #4F585C);
$fg_color: if($variant == 'light', #444, lighten(#e4e6e7, 10%)); $fg_color: if($variant == 'light', #444, lighten(#e4e6e7, 10%));
$text_color: if($variant == 'light', $fg_color, $fg_color); $text_color: if($variant == 'light', $fg_color, $fg_color);
$headerbar_bg_color: if($variant == 'light', #636E73, #3B4245); $headerbar_bg_color: if($variant == 'light', #546e7a, #3B4245);
$headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.5)); $headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.2));
// Primary colors // Primary colors
$red: #f34235; $red: #f34235;
@ -21,7 +21,7 @@ $selected_fg_color: #ffffff;
$selected_bg_color: if($variant == 'light', #347D9F, lighten(#347D9F,10%)); $selected_bg_color: if($variant == 'light', #347D9F, lighten(#347D9F,10%));
$selected_borders_color: darken($selected_bg_color, 10%); $selected_borders_color: darken($selected_bg_color, 10%);
$borders_color: if($variant == 'light', darken($bg_color,15%), darken($bg_color,10%)); $borders_color: if($variant == 'light', darken($bg_color,15%), darken($bg_color,10%));
$borders_edge: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.9)); $borders_edge: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.7));
$link_color: blue; $link_color: blue;
$link_visited_color:transparentize($link_color,0.5); $link_visited_color:transparentize($link_color,0.5);
$top_highlight: $borders_edge; $top_highlight: $borders_edge;

View File

@ -54,7 +54,7 @@ CheeseThumbView /* Cheese */
* Terminal * * Terminal *
************/ ************/
$gnome_terminal: #636E73; $gnome_terminal: #546e7a;
$terminal_bg_color: transparentize(#002B36, 0.1); $terminal_bg_color: transparentize(#002B36, 0.1);
$terminal_fg_color: #839495; $terminal_fg_color: #839495;

View File

@ -2,7 +2,7 @@
* Unity * * Unity *
*********/ *********/
$unity_color: #636E73; /* Unity window border color */ $unity_color: #546e7a; /* Unity window border color */
$backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */ $backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */
$unity_text_color: #dbdee0; /* Unity window text color */ $unity_text_color: #dbdee0; /* Unity window text color */
$backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */ $backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */

File diff suppressed because it is too large Load Diff

View File

@ -2454,12 +2454,12 @@ GraniteWidgetsWelcome {
padding: 0 8px; padding: 0 8px;
border: none; border: none;
border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
background-color: #636E73; background-color: #546e7a;
color: #ffffff; color: #ffffff;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); } box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); }
.titlebar:backdrop:not(headerbar), .titlebar:backdrop:not(headerbar),
.header-bar:backdrop { .header-bar:backdrop {
background-color: #636E73; background-color: #546e7a;
color: rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.5);
box-shadow: inset 0 1px rgba(255, 255, 255, 0); box-shadow: inset 0 1px rgba(255, 255, 255, 0);
transition: 200ms ease-out; } transition: 200ms ease-out; }
@ -2519,7 +2519,7 @@ GraniteWidgetsWelcome {
.default-decoration.titlebar:not(headerbar), .default-decoration.titlebar:not(headerbar),
.header-bar.default-decoration { .header-bar.default-decoration {
padding: 6px; padding: 6px;
background-color: #636E73; background-color: #546e7a;
color: #ffffff; } color: #ffffff; }
.default-decoration.titlebar:not(headerbar) .maximized, .default-decoration.titlebar:not(headerbar) .maximized,
.header-bar.default-decoration .maximized { .header-bar.default-decoration .maximized {
@ -2527,7 +2527,7 @@ GraniteWidgetsWelcome {
border-radius: 0; } border-radius: 0; }
.default-decoration.titlebar:backdrop:not(headerbar), .default-decoration.titlebar:backdrop:not(headerbar),
.header-bar.default-decoration:backdrop { .header-bar.default-decoration:backdrop {
background-color: #576165; background-color: #4a606b;
color: rgba(255, 255, 255, 0.5); } color: rgba(255, 255, 255, 0.5); }
.titlebar:not(headerbar) .entry, .titlebar:not(headerbar) .entry,
.header-bar .entry { .header-bar .entry {
@ -2725,12 +2725,12 @@ GraniteWidgetsWelcome {
.titlebar:not(headerbar) .button.titlebutton:active, .titlebar:not(headerbar) .button.titlebutton:active,
.header-bar .button.titlebutton:active { .header-bar .button.titlebutton:active {
background-color: #ffffff; background-color: #ffffff;
color: #636E73; color: #546e7a;
border-radius: 50%; border-radius: 50%;
box-shadow: none; } box-shadow: none; }
.titlebar:not(headerbar) .button.titlebutton:active GtkImage, .titlebar:not(headerbar) .button.titlebutton:active GtkImage,
.header-bar .button.titlebutton:active GtkImage { .header-bar .button.titlebutton:active GtkImage {
color: #636E73; } color: #546e7a; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel, .titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel,
.header-bar .button.menu-button .menu .menuitem GtkLabel { .header-bar .button.menu-button .menu .menuitem GtkLabel {
color: #444; } color: #444; }
@ -2810,13 +2810,13 @@ GraniteWidgetsWelcome {
window.csd > .titlebar:not(headerbar) { window.csd > .titlebar:not(headerbar) {
padding: 0; padding: 0;
background-color: #636E73; background-color: #546e7a;
background-image: none; background-image: none;
border-style: none; border-style: none;
border-color: transparent; border-color: transparent;
box-shadow: none; } box-shadow: none; }
window.csd > .titlebar:not(headerbar):backdrop { window.csd > .titlebar:not(headerbar):backdrop {
background-color: #576165; } background-color: #4a606b; }
/************** /**************
* GtkInfoBar * * GtkInfoBar *
@ -3179,10 +3179,10 @@ GtkLevelBar,
-GtkWidget-window-dragging: true; -GtkWidget-window-dragging: true;
padding: 0px; padding: 0px;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
background-color: #636E73; background-color: #546e7a;
color: #ffffff; } color: #ffffff; }
.menubar:backdrop { .menubar:backdrop {
background-color: #576165; } background-color: #4a606b; }
.menubar > .menuitem { .menubar > .menuitem {
padding: 4px 8px; } padding: 4px 8px; }
.menubar > .menuitem:hover { .menubar > .menuitem:hover {
@ -4287,10 +4287,10 @@ GtkSwitch {
.toolbar { .toolbar {
-GtkWidget-window-dragging: true; -GtkWidget-window-dragging: true;
padding: 0px; padding: 0px;
background-color: #636E73; background-color: #546e7a;
color: #ffffff; } color: #ffffff; }
.toolbar:backdrop { .toolbar:backdrop {
background-color: #576165; background-color: #4a606b;
color: rgba(255, 255, 255, 0.5); } color: rgba(255, 255, 255, 0.5); }
.osd .toolbar { .osd .toolbar {
@ -5131,10 +5131,10 @@ VteTerminal {
TerminalWindow .titlebar, TerminalWindow .titlebar,
TerminalWindow .header-bar { TerminalWindow .header-bar {
background-color: #636E73; } background-color: #546e7a; }
TerminalWindow .titlebar:backdrop, TerminalWindow .titlebar:backdrop,
TerminalWindow .header-bar:backdrop { TerminalWindow .header-bar:backdrop {
background-color: #4b5458; } background-color: #3f535c; }
/************ /************
* Nautilus * * Nautilus *
@ -5725,59 +5725,59 @@ UnityDecoration {
/* Size property, space of the title that can be faded */ /* Size property, space of the title that can be faded */
-UnityDecoration-title-alignment: 0.0; -UnityDecoration-title-alignment: 0.0;
/* Float from 0.0 to 1.0, to align the title */ /* Float from 0.0 to 1.0, to align the title */
background-color: #636E73; background-color: #546e7a;
color: #dbdee0; } color: #dbdee0; }
UnityDecoration .top { UnityDecoration .top {
padding: 0 5px 0 5px; padding: 0 5px 0 5px;
border-radius: 4px 4px 0px 0px; border-radius: 4px 4px 0px 0px;
box-shadow: none; box-shadow: none;
border: 1px solid #636E73; border: 1px solid #546e7a;
border-bottom-width: 0; border-bottom-width: 0;
background-color: #636E73; background-color: #546e7a;
color: #dbdee0; color: #dbdee0;
border-top: 1px solid rgba(255, 255, 255, 0.1); } border-top: 1px solid rgba(255, 255, 255, 0.1); }
UnityDecoration .top:backdrop { UnityDecoration .top:backdrop {
border-bottom-width: 0; border-bottom-width: 0;
background-color: #4b5458; background-color: #3f535c;
color: #c0c5c8; color: #c0c5c8;
border-top: 1px solid rgba(255, 255, 255, 0.1); } border-top: 1px solid rgba(255, 255, 255, 0.1); }
UnityDecoration .top .menuitem { UnityDecoration .top .menuitem {
color: #dbdee0; } color: #dbdee0; }
UnityDecoration .top .menuitem:backdrop { UnityDecoration .top .menuitem:backdrop {
background-color: #4b5458; background-color: #3f535c;
color: #c0c5c8; } color: #c0c5c8; }
UnityDecoration.left, UnityDecoration.left,
UnityDecoration.right { UnityDecoration.right {
background-repeat: repeat-x; background-repeat: repeat-x;
background-color: #626c71; background-color: #536c78;
background-size: 1px 120px; background-size: 1px 120px;
background-clip: border-box; background-clip: border-box;
background-image: linear-gradient(to bottom, #636E73, #626c71); } background-image: linear-gradient(to bottom, #546e7a, #536c78); }
UnityDecoration.bottom { UnityDecoration.bottom {
background-size: 1px; background-size: 1px;
background-repeat: repeat-x; background-repeat: repeat-x;
background-color: #626c71; } background-color: #536c78; }
UnityDecoration.left:backdrop, UnityDecoration.left:backdrop,
UnityDecoration.right:backdrop, UnityDecoration.right:backdrop,
UnityDecoration.bottom:backdrop { UnityDecoration.bottom:backdrop {
background-size: 1px; background-size: 1px;
background-repeat: repeat-x; background-repeat: repeat-x;
background-color: #4b5458; } background-color: #3f535c; }
/************** /**************
* Unity Panel * * Unity Panel *
***************/ ***************/
UnityPanelWidget, UnityPanelWidget,
.unity-panel { .unity-panel {
background-color: #343a3c; background-color: #2a383e;
color: #dbdee0; } color: #dbdee0; }
UnityPanelWidget:backdrop, UnityPanelWidget:backdrop,
.unity-panel:backdrop { .unity-panel:backdrop {
background-color: #1c1f21; background-color: #161c1f;
color: #c0c5c8; } color: #c0c5c8; }
.unity-panel.menuitem, .unity-panel.menuitem,
@ -5791,7 +5791,7 @@ UnityPanelWidget:backdrop,
.unity-panel.menu.menubar, .unity-panel.menu.menubar,
.unity-panel .menu .menubar { .unity-panel .menu .menubar {
background-color: #343a3c; background-color: #2a383e;
color: #dbdee0; } color: #dbdee0; }
.unity-panel.menubar:backdrop, .unity-panel.menubar:backdrop,
@ -5811,7 +5811,7 @@ UnityPanelWidget:backdrop,
.unity-panel.menubar.menuitem:hover, .unity-panel.menubar.menuitem:hover,
.unity-panel.menubar .menuitem:hover { .unity-panel.menubar .menuitem:hover {
border-radius: 0; border-radius: 0;
background-color: #616b70; background-color: #526b77;
color: #dbdee0; color: #dbdee0;
box-shadow: none; } box-shadow: none; }

View File

@ -2,12 +2,12 @@
// it gets @if ed depending on $variant // it gets @if ed depending on $variant
// Main definitions // Main definitions
$base_color: if($variant == 'light', #ffffff, #636E73); $base_color: if($variant == 'light', #ffffff, #6a7981);
$bg_color: if($variant == 'light', #f7f7f7, #4F585C); $bg_color: if($variant == 'light', #f7f7f7, #4F585C);
$fg_color: if($variant == 'light', #444, lighten(#e4e6e7, 10%)); $fg_color: if($variant == 'light', #444, lighten(#e4e6e7, 10%));
$text_color: if($variant == 'light', $fg_color, $fg_color); $text_color: if($variant == 'light', $fg_color, $fg_color);
$headerbar_bg_color: if($variant == 'light', #636E73, #3B4245); $headerbar_bg_color: if($variant == 'light', #546e7a, #3B4245);
$headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.5)); $headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.2));
// Primary colors // Primary colors
$red: #f34235; $red: #f34235;

View File

@ -54,7 +54,7 @@ CheeseThumbView /* Cheese */
* Terminal * * Terminal *
************/ ************/
$gnome_terminal: #636E73; $gnome_terminal: #546e7a;
$terminal_bg_color: transparentize(#002B36, 0.1); $terminal_bg_color: transparentize(#002B36, 0.1);
$terminal_fg_color: #839495; $terminal_fg_color: #839495;

View File

@ -2,7 +2,7 @@
* Unity * * Unity *
*********/ *********/
$unity_color: #636E73; /* Unity window border color */ $unity_color: #546e7a; /* Unity window border color */
$backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */ $backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */
$unity_text_color: #dbdee0; /* Unity window text color */ $unity_text_color: #dbdee0; /* Unity window text color */
$backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */ $backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */

File diff suppressed because it is too large Load Diff

View File

@ -2454,12 +2454,12 @@ GraniteWidgetsWelcome {
padding: 0 8px; padding: 0 8px;
border: none; border: none;
border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
background-color: #636E73; background-color: #546e7a;
color: #ffffff; color: #ffffff;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); } box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); }
.titlebar:backdrop:not(headerbar), .titlebar:backdrop:not(headerbar),
.header-bar:backdrop { .header-bar:backdrop {
background-color: #636E73; background-color: #546e7a;
color: rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.5);
box-shadow: inset 0 1px rgba(255, 255, 255, 0); box-shadow: inset 0 1px rgba(255, 255, 255, 0);
transition: 200ms ease-out; } transition: 200ms ease-out; }
@ -2519,7 +2519,7 @@ GraniteWidgetsWelcome {
.default-decoration.titlebar:not(headerbar), .default-decoration.titlebar:not(headerbar),
.header-bar.default-decoration { .header-bar.default-decoration {
padding: 6px; padding: 6px;
background-color: #636E73; background-color: #546e7a;
color: #ffffff; } color: #ffffff; }
.default-decoration.titlebar:not(headerbar) .maximized, .default-decoration.titlebar:not(headerbar) .maximized,
.header-bar.default-decoration .maximized { .header-bar.default-decoration .maximized {
@ -2527,7 +2527,7 @@ GraniteWidgetsWelcome {
border-radius: 0; } border-radius: 0; }
.default-decoration.titlebar:backdrop:not(headerbar), .default-decoration.titlebar:backdrop:not(headerbar),
.header-bar.default-decoration:backdrop { .header-bar.default-decoration:backdrop {
background-color: #576165; background-color: #4a606b;
color: rgba(255, 255, 255, 0.5); } color: rgba(255, 255, 255, 0.5); }
.titlebar:not(headerbar) .entry, .titlebar:not(headerbar) .entry,
.header-bar .entry { .header-bar .entry {
@ -2725,12 +2725,12 @@ GraniteWidgetsWelcome {
.titlebar:not(headerbar) .button.titlebutton:active, .titlebar:not(headerbar) .button.titlebutton:active,
.header-bar .button.titlebutton:active { .header-bar .button.titlebutton:active {
background-color: #ffffff; background-color: #ffffff;
color: #636E73; color: #546e7a;
border-radius: 50%; border-radius: 50%;
box-shadow: none; } box-shadow: none; }
.titlebar:not(headerbar) .button.titlebutton:active GtkImage, .titlebar:not(headerbar) .button.titlebutton:active GtkImage,
.header-bar .button.titlebutton:active GtkImage { .header-bar .button.titlebutton:active GtkImage {
color: #636E73; } color: #546e7a; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel, .titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel,
.header-bar .button.menu-button .menu .menuitem GtkLabel { .header-bar .button.menu-button .menu .menuitem GtkLabel {
color: #444; } color: #444; }
@ -2810,13 +2810,13 @@ GraniteWidgetsWelcome {
window.csd > .titlebar:not(headerbar) { window.csd > .titlebar:not(headerbar) {
padding: 0; padding: 0;
background-color: #636E73; background-color: #546e7a;
background-image: none; background-image: none;
border-style: none; border-style: none;
border-color: transparent; border-color: transparent;
box-shadow: none; } box-shadow: none; }
window.csd > .titlebar:not(headerbar):backdrop { window.csd > .titlebar:not(headerbar):backdrop {
background-color: #576165; } background-color: #4a606b; }
/************** /**************
* GtkInfoBar * * GtkInfoBar *
@ -3179,10 +3179,10 @@ GtkLevelBar,
-GtkWidget-window-dragging: true; -GtkWidget-window-dragging: true;
padding: 0px; padding: 0px;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
background-color: #636E73; background-color: #546e7a;
color: #ffffff; } color: #ffffff; }
.menubar:backdrop { .menubar:backdrop {
background-color: #576165; } background-color: #4a606b; }
.menubar > .menuitem { .menubar > .menuitem {
padding: 4px 8px; } padding: 4px 8px; }
.menubar > .menuitem:hover { .menubar > .menuitem:hover {
@ -4287,10 +4287,10 @@ GtkSwitch {
.toolbar { .toolbar {
-GtkWidget-window-dragging: true; -GtkWidget-window-dragging: true;
padding: 0px; padding: 0px;
background-color: #636E73; background-color: #546e7a;
color: #ffffff; } color: #ffffff; }
.toolbar:backdrop { .toolbar:backdrop {
background-color: #576165; background-color: #4a606b;
color: rgba(255, 255, 255, 0.5); } color: rgba(255, 255, 255, 0.5); }
.osd .toolbar { .osd .toolbar {
@ -5129,10 +5129,10 @@ VteTerminal {
TerminalWindow .titlebar, TerminalWindow .titlebar,
TerminalWindow .header-bar { TerminalWindow .header-bar {
background-color: #636E73; } background-color: #546e7a; }
TerminalWindow .titlebar:backdrop, TerminalWindow .titlebar:backdrop,
TerminalWindow .header-bar:backdrop { TerminalWindow .header-bar:backdrop {
background-color: #4b5458; } background-color: #3f535c; }
/************ /************
* Nautilus * * Nautilus *
@ -5723,59 +5723,59 @@ UnityDecoration {
/* Size property, space of the title that can be faded */ /* Size property, space of the title that can be faded */
-UnityDecoration-title-alignment: 0.0; -UnityDecoration-title-alignment: 0.0;
/* Float from 0.0 to 1.0, to align the title */ /* Float from 0.0 to 1.0, to align the title */
background-color: #636E73; background-color: #546e7a;
color: #dbdee0; } color: #dbdee0; }
UnityDecoration .top { UnityDecoration .top {
padding: 0 5px 0 5px; padding: 0 5px 0 5px;
border-radius: 4px 4px 0px 0px; border-radius: 4px 4px 0px 0px;
box-shadow: none; box-shadow: none;
border: 1px solid #636E73; border: 1px solid #546e7a;
border-bottom-width: 0; border-bottom-width: 0;
background-color: #636E73; background-color: #546e7a;
color: #dbdee0; color: #dbdee0;
border-top: 1px solid rgba(255, 255, 255, 0.1); } border-top: 1px solid rgba(255, 255, 255, 0.1); }
UnityDecoration .top:backdrop { UnityDecoration .top:backdrop {
border-bottom-width: 0; border-bottom-width: 0;
background-color: #4b5458; background-color: #3f535c;
color: #c0c5c8; color: #c0c5c8;
border-top: 1px solid rgba(255, 255, 255, 0.1); } border-top: 1px solid rgba(255, 255, 255, 0.1); }
UnityDecoration .top .menuitem { UnityDecoration .top .menuitem {
color: #dbdee0; } color: #dbdee0; }
UnityDecoration .top .menuitem:backdrop { UnityDecoration .top .menuitem:backdrop {
background-color: #4b5458; background-color: #3f535c;
color: #c0c5c8; } color: #c0c5c8; }
UnityDecoration.left, UnityDecoration.left,
UnityDecoration.right { UnityDecoration.right {
background-repeat: repeat-x; background-repeat: repeat-x;
background-color: #626c71; background-color: #536c78;
background-size: 1px 120px; background-size: 1px 120px;
background-clip: border-box; background-clip: border-box;
background-image: linear-gradient(to bottom, #636E73, #626c71); } background-image: linear-gradient(to bottom, #546e7a, #536c78); }
UnityDecoration.bottom { UnityDecoration.bottom {
background-size: 1px; background-size: 1px;
background-repeat: repeat-x; background-repeat: repeat-x;
background-color: #626c71; } background-color: #536c78; }
UnityDecoration.left:backdrop, UnityDecoration.left:backdrop,
UnityDecoration.right:backdrop, UnityDecoration.right:backdrop,
UnityDecoration.bottom:backdrop { UnityDecoration.bottom:backdrop {
background-size: 1px; background-size: 1px;
background-repeat: repeat-x; background-repeat: repeat-x;
background-color: #4b5458; } background-color: #3f535c; }
/************** /**************
* Unity Panel * * Unity Panel *
***************/ ***************/
UnityPanelWidget, UnityPanelWidget,
.unity-panel { .unity-panel {
background-color: #343a3c; background-color: #2a383e;
color: #dbdee0; } color: #dbdee0; }
UnityPanelWidget:backdrop, UnityPanelWidget:backdrop,
.unity-panel:backdrop { .unity-panel:backdrop {
background-color: #1c1f21; background-color: #161c1f;
color: #c0c5c8; } color: #c0c5c8; }
.unity-panel.menuitem, .unity-panel.menuitem,
@ -5789,7 +5789,7 @@ UnityPanelWidget:backdrop,
.unity-panel.menu.menubar, .unity-panel.menu.menubar,
.unity-panel .menu .menubar { .unity-panel .menu .menubar {
background-color: #343a3c; background-color: #2a383e;
color: #dbdee0; } color: #dbdee0; }
.unity-panel.menubar:backdrop, .unity-panel.menubar:backdrop,
@ -5809,7 +5809,7 @@ UnityPanelWidget:backdrop,
.unity-panel.menubar.menuitem:hover, .unity-panel.menubar.menuitem:hover,
.unity-panel.menubar .menuitem:hover { .unity-panel.menubar .menuitem:hover {
border-radius: 0; border-radius: 0;
background-color: #616b70; background-color: #526b77;
color: #dbdee0; color: #dbdee0;
box-shadow: none; } box-shadow: none; }

View File

@ -2,34 +2,34 @@
// it gets @if ed depending on $variant // it gets @if ed depending on $variant
// Main definitions // Main definitions
$base_color: if($variant == 'light', #ffffff, #636E73); $base_color: if($variant == 'light', #ffffff, #6a7981);
$bg_color: if($variant == 'light', #f7f7f7, #4F585C); $bg_color: if($variant == 'light', #f7f7f7, #4F585C);
$fg_color: if($variant == 'light', #444, #e4e6e7); $fg_color: if($variant == 'light', #444, lighten(#e4e6e7, 10%));
$text_color: if($variant == 'light', $fg_color, $fg_color); $text_color: if($variant == 'light', $fg_color, $fg_color);
$headerbar_bg_color: if($variant == 'light', #636E73, #3B4245); $headerbar_bg_color: if($variant == 'light', #546e7a, #3B4245);
$headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.2)); $headerbar_fg_color: if($variant == 'light', #ffffff, transparentize(#ffffff, 0.2));
// Primary colors // Primary colors
$red: #f34235; $red: #f34235;
$orange: #fe9700; $orange: #fe9700;
$yellow: #feea3a; $yellow: #fec006;
$green: #1ea362; $green: #4bae4f;
$blue: #2095f2; $blue: #2095f2;
$purple: #9b26af; $purple: #9b26af;
$selected_fg_color: #ffffff; $selected_fg_color: #ffffff;
$selected_bg_color: if($variant == 'light', lighten(#347D9F, 10%), darken(#9fb0b9,20%)); $selected_bg_color: if($variant == 'light', #347D9F, lighten(#347D9F,10%));
$selected_borders_color: if($variant== 'light', darken($selected_bg_color, 10%), darken($selected_bg_color, 30%)); $selected_borders_color: darken($selected_bg_color, 10%);
$borders_color: if($variant == 'light', darken($bg_color,20%), darken($bg_color,12%)); $borders_color: if($variant == 'light', darken($bg_color,15%), darken($bg_color,10%));
$borders_edge: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.7)); $borders_edge: if($variant == 'light', transparentize(white, 0.8), transparentize(white, 0.9));
$link_color: blue; $link_color: blue;
$link_visited_color:transparentize($link_color,0.5); $link_visited_color:transparentize($link_color,0.5);
$top_highlight: $borders_edge; $top_highlight: $borders_edge;
$bottom_highlight: if($variant == 'light', transparentize(white, 0.2), transparentize(white, 0.9)); $bottom_highlight: if($variant == 'light', transparentize(white, 0.7), transparentize(white, 0.9));
$dark_fill: mix($borders_color, $bg_color, 35%); $dark_fill: mix($borders_color, $bg_color, 35%);
$menu_color: if($variant == 'light', $base_color, mix($bg_color, $base_color, 20%)); $menu_color: if($variant == 'light', $base_color, mix($bg_color, $base_color, 20%));
$popover_bg_color: $bg_color; $popover_bg_color: $base_color;
$popover_hover_color: lighten($bg_color, 5%); $popover_hover_color: lighten($popover_bg_color, 5%);
$selection_mode_headerbar_bg_color: #347D9F; $selection_mode_headerbar_bg_color: #347D9F;
@ -53,7 +53,7 @@ $sidebar_bg_color: mix($bg_color, $base_color, 50%);
$base_hover_color: transparentize($fg_color, 0.95); $base_hover_color: transparentize($fg_color, 0.95);
$tooltip_borders_color: transparentize(white, 0.9); $tooltip_borders_color: transparentize(white, 0.9);
$shadow_color: transparentize(black, 0.9); $shadow_color: transparentize(black, 0.8);
$drop_target_color: #4e9a06; $drop_target_color: #4e9a06;
@ -64,10 +64,9 @@ $info_color: $blue;
$question_color: $green; $question_color: $green;
// Panel colors // Panel colors
$panel_bg_color: darken($headerbar_bg_color, 10%); $panel_bg_color: transparentize(black, 0.3);
$backdrop_panel_color: darken($panel_bg_color,10%); $panel_fg_color: white;
$panel_fg_color: $headerbar_fg_color; $panel_borders_color: transparentize(black, 0.8);
$backdrop_panel_fg_color: darken($panel_fg_color,10%);
// Insensitive state colors // Insensitive state colors
$insensitive_fg_color: mix($fg_color, $bg_color, 50%); $insensitive_fg_color: mix($fg_color, $bg_color, 50%);
@ -80,7 +79,7 @@ $backdrop_base_color: if($variant == 'light', darken($base_color, 1%), lighten($
$backdrop_text_color: mix($text_color, $backdrop_base_color, 80%); $backdrop_text_color: mix($text_color, $backdrop_base_color, 80%);
$backdrop_bg_color: $bg_color; $backdrop_bg_color: $bg_color;
$backdrop_headerbar_bg_color: darken($headerbar_bg_color, 5%); $backdrop_headerbar_bg_color: darken($headerbar_bg_color, 5%);
$backdrop_headerbar_fg_color: transparentize($headerbar_fg_color, 0.5); $backdrop_headerbar_fg_color: if($variant == 'light', transparentize($headerbar_fg_color, 0.5), transparentize($headerbar_fg_color, 0.2));
$backdrop_fg_color: mix($fg_color, $backdrop_bg_color, 50%); $backdrop_fg_color: mix($fg_color, $backdrop_bg_color, 50%);
$backdrop_insensitive_color: if($variant == 'light', darken($backdrop_bg_color, 15%), lighten($backdrop_bg_color, 15%)); $backdrop_insensitive_color: if($variant == 'light', darken($backdrop_bg_color, 15%), lighten($backdrop_bg_color, 15%));
$backdrop_selected_bg_color: if($variant == 'light', lighten($selected_bg_color, 5%), lighten($selected_bg_color, 5%)); $backdrop_selected_bg_color: if($variant == 'light', lighten($selected_bg_color, 5%), lighten($selected_bg_color, 5%));

View File

@ -54,11 +54,19 @@ CheeseThumbView /* Cheese */
* Terminal * * Terminal *
************/ ************/
$gnome_terminal: #636E73; $gnome_terminal: #546e7a;
$terminal_bg_color: transparentize(#002B36, 0.1);
$terminal_fg_color: #839495;
TerminalScreen,
VteTerminal {
background-color: $terminal_bg_color;
color: $terminal_fg_color;
}
TerminalWindow { TerminalWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_terminal; background-color: $gnome_terminal;
&:backdrop { &:backdrop {
@ -83,7 +91,7 @@ NautilusCanvasView {
.nautilus-circular-button { .nautilus-circular-button {
border-radius: 20px; border-radius: 20px;
-gtk-outline-radius: 20px; outline-radius: 20px;
} }
.disk-space-display { .disk-space-display {
@ -108,7 +116,7 @@ NautilusCanvasView {
.nautilus-desktop { .nautilus-desktop {
color: $fg_color; color: $fg_color;
.nautilus-canvas-item { .nautilus-canvas-item {
border-radius: 5px; border-radius: 5px;
@ -120,7 +128,7 @@ NautilusCanvasView {
text-shadow: none; text-shadow: none;
} }
&:hover { &:prelight {
color: $fg_color; color: $fg_color;
text-shadow: none; text-shadow: none;
} }
@ -156,7 +164,7 @@ $gnome_builder: #CBBB2E;
GbGreeterWindow, GbGreeterWindow,
GbWorkbench { GbWorkbench {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_builder; background-color: $gnome_builder;
&:backdrop { &:backdrop {
@ -177,7 +185,7 @@ MathWindow {
border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
.titlebar, .titlebar,
.header-bar, headerbar,
.toolbar { .toolbar {
background-color: $gnome_calculator; background-color: $gnome_calculator;
@ -238,7 +246,7 @@ $gnome_calendar: #75A3F6;
GcalWindow { GcalWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_calendar; background-color: $gnome_calendar;
&:backdrop { &:backdrop {
@ -255,7 +263,7 @@ $cheese: #ad7fa8;
CheeseWindow { CheeseWindow {
.titlebar, .titlebar,
.header-bar, headerbar,
.toolbar { .toolbar {
background-color: $cheese; background-color: $cheese;
@ -273,7 +281,7 @@ $gnome_contacts: #2095F2;
ContactsWindow { ContactsWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_contacts; background-color: $gnome_contacts;
&:backdrop { &:backdrop {
@ -291,7 +299,7 @@ $gnome_clocks: #4BAE4F;
ClocksWindow { ClocksWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_clocks; background-color: $gnome_clocks;
&:backdrop { &:backdrop {
@ -309,7 +317,7 @@ $gnome_disks: #8561C5;
GduWindow { GduWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_disks; background-color: $gnome_disks;
&:backdrop { &:backdrop {
@ -327,7 +335,7 @@ $gnome_baobab: #CC5E55;
BaobabWindow { BaobabWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_baobab; background-color: $gnome_baobab;
&:backdrop { &:backdrop {
@ -344,7 +352,7 @@ $gnome_documents: #C2352A;
#Documents { #Documents {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_documents; background-color: $gnome_documents;
&:backdrop { &:backdrop {
@ -361,7 +369,7 @@ $gnome_epiphany: #6573C3;
EphyWindow { EphyWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_epiphany; background-color: $gnome_epiphany;
&:backdrop { &:backdrop {
@ -390,14 +398,17 @@ $gedit: #DC4836;
GeditWindow { GeditWindow {
.titlebar, .titlebar,
.header-bar, headerbar {
.gedit-headerbar-paned {
background-color: $gedit; background-color: $gedit;
&:backdrop { &:backdrop {
background-color: darken($gedit,10%); background-color: darken($gedit,10%);
} }
} }
> .entry {
@extend %entry;
}
} }
/************** /**************
@ -409,7 +420,7 @@ $gnome_logs: #009587;
GlWindow, GlWindow,
LogviewWindow { LogviewWindow {
.titlebar, .titlebar,
.header-bar, headerbar,
.toolbar { .toolbar {
background-color: $gnome_logs; background-color: $gnome_logs;
@ -427,7 +438,7 @@ $gnome_music: #fe9700;
gnomemusic+window+Window { gnomemusic+window+Window {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_music; background-color: $gnome_music;
&:backdrop { &:backdrop {
@ -446,7 +457,7 @@ $bijiben: #ebdd4d;
BjbMainToolbar, BjbMainToolbar,
BjbWindowBase { BjbWindowBase {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $bijiben; background-color: $bijiben;
&:backdrop { &:backdrop {
@ -463,7 +474,7 @@ $gnome_photos: #D30101;
PhotosMainWindow { PhotosMainWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_photos; background-color: $gnome_photos;
&:backdrop { &:backdrop {
@ -478,7 +489,7 @@ PhotosMainWindow {
$polari: #4BAE4F; $polari: #4BAE4F;
.titlebar, .titlebar,
.header-bar { headerbar {
&.polari-titlebar-left, &.polari-titlebar-left,
&.polari-titlebar-right { &.polari-titlebar-right {
background-color: $polari; background-color: $polari;
@ -497,7 +508,7 @@ $gnome_settings: #5F7C8A;
CcWindow { CcWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_settings; background-color: $gnome_settings;
&:backdrop { &:backdrop {
@ -518,7 +529,7 @@ $gnome_software: #1A77C2;
#window_software { #window_software {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_software; background-color: $gnome_software;
&:backdrop { &:backdrop {
@ -535,7 +546,7 @@ $gnome_system_monitor: #6fbe72;
#gnome-system-monitor { #gnome-system-monitor {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $gnome_system_monitor; background-color: $gnome_system_monitor;
&:backdrop { &:backdrop {
@ -545,6 +556,23 @@ $gnome_system_monitor: #6fbe72;
} }
/********
* ToDo *
********/
$gnome_todo: #3262A1;
GtdWindow {
.titlebar,
headerbar {
background-color: $gnome_todo;
&:backdrop {
background-color: darken($gnome_todo,10%);
}
}
}
/******** /********
* Yelp * * Yelp *
********/ ********/
@ -553,7 +581,7 @@ $yelp: #435ece;
YelpWindow { YelpWindow {
.titlebar, .titlebar,
.header-bar { headerbar {
background-color: $yelp; background-color: $yelp;
&:backdrop { &:backdrop {

View File

@ -2,7 +2,7 @@
* Unity * * Unity *
*********/ *********/
$unity_color: #636E73; /* Unity window border color */ $unity_color: #546e7a; /* Unity window border color */
$backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */ $backdrop_unity_color: darken($unity_color,10%); /* Backdrop Unity window border color */
$unity_text_color: #dbdee0; /* Unity window text color */ $unity_text_color: #dbdee0; /* Unity window text color */
$backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */ $backdrop_unity_text_color: darken($unity_text_color,10%); /* Backdrop Unity window text color */

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -187,7 +187,6 @@ headerbar {
&.menu-button, &.menu-button,
&.text-button, &.text-button,
&.image-button, &.image-button,
&.titlebutton,
&.linked, &.linked,
&.flat { &.flat {
background-color: transparent; background-color: transparent;
@ -365,6 +364,41 @@ headerbar {
border-radius:0; border-radius:0;
} }
} }
// Title Button
&.titlebutton {
background-color:transparent;
background-image: none;
border-radius:50%;
border: none;
box-shadow: none;
icon-shadow: none;
margin: 0;
padding: 1px;
text-shadow: none;
color:$headerbar_fg_color;
&:hover {
background-color:transparentize($headerbar_fg_color, 0.9);
color:lighten($headerbar_fg_color, 10%);
}
&:backdrop {
background-color:transparent;
color:$backdrop_headerbar_fg_color;
}
&:active {
background-color:$headerbar_fg_color;
color:$headerbar_bg_color;
border-radius:50%;
box-shadow:none;
GtkImage {
color:$headerbar_bg_color;
}
}
}
} }
// Separator // Separator

View File

@ -28,9 +28,9 @@
<!-- CONSTANTS --> <!-- CONSTANTS -->
<constant name="C_titlebar" value="#636E73" /> <constant name="C_titlebar" value="#546e7a" />
<constant name="C_titlebar_unfocused" value="#5A6367" /> <constant name="C_titlebar_unfocused" value="#5A6367" />
<constant name="C_border_focused" value="#636E73" /> <constant name="C_border_focused" value="#546e7a" />
<constant name="C_border_unfocused" value="#5A6367" /> <constant name="C_border_unfocused" value="#5A6367" />
<constant name="C_title_focused" value="#dbdee0" /> <constant name="C_title_focused" value="#dbdee0" />
<constant name="C_title_unfocused" value="#999FA1" /> <constant name="C_title_unfocused" value="#999FA1" />

View File

@ -2,6 +2,6 @@
static char * bottom_active_xpm[] = { static char * bottom_active_xpm[] = {
"1 2 2 1", "1 2 2 1",
" c None", " c None",
". c #636E73", ". c #546e7a",
".", ".",
"."}; "."};