diff options
author | Horst3180 | 2015-06-07 01:25:41 +0200 |
---|---|---|
committer | Horst3180 | 2015-06-07 01:25:41 +0200 |
commit | f9bd2f1d9b20f17c6607be7f7208fe0b6f53909f (patch) | |
tree | abfe0860a0456cc9b19a5ba724fdb4b984755ca3 | |
parent | 3c8122ddac8c07b2c19a840c0e929a9756475119 (diff) | |
download | solarc-theme-f9bd2f1d9b20f17c6607be7f7208fe0b6f53909f.tar.gz solarc-theme-f9bd2f1d9b20f17c6607be7f7208fe0b6f53909f.tar.xz solarc-theme-f9bd2f1d9b20f17c6607be7f7208fe0b6f53909f.zip |
more dark theme work
63 files changed, 682 insertions, 637 deletions
diff --git a/common/gtk-3.0/3.16/_applications.scss b/common/gtk-3.0/3.16/_applications.scss index 6c41b73..4adc039 100644 --- a/common/gtk-3.0/3.16/_applications.scss +++ b/common/gtk-3.0/3.16/_applications.scss @@ -40,8 +40,8 @@ TerminalWindow { .notebook { &.header.top { - box-shadow: inset 0 1px darken(opacify($header_bg, 1), 7%), - inset 0 -1px lighten($borders_color, 5%); + box-shadow: inset 0 1px if($variant == 'light', darken(opacify($header_bg, 1), 7%), darken(opacify($header_bg, 1), 5%)), + inset 0 -1px if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); } tab { @@ -52,15 +52,15 @@ TerminalWindow { } &.reorderable-page.top:hover { - border-bottom-color: darken(opacify($header_bg, 1), 7%); + border-bottom-color: if($variant == 'light', darken(opacify($header_bg, 1), 7%), darken(opacify($header_bg, 1), 5%)); } &.reorderable-page.top:active, &.reorderable-page.top:active:hover { background-color: opacify($header_bg, 1); - border-color: darken(opacify($header_bg, 1), 7%); + border-color: if($variant == 'light', darken(opacify($header_bg, 1), 7%), darken(opacify($header_bg, 1), 5%)); - &:backdrop { background-color: lighten($header_bg, 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } } @@ -166,7 +166,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { // // Gedit // -.gedit-headerbar-paned { color: darken($header_bg, 7%); } +.gedit-headerbar-paned { color: if($variant == 'light', darken($header_bg, 7%), darken($header_bg, 5%)); } .open-document-selector-treeview.view { padding: 3px 6px 3px 6px; @@ -690,8 +690,8 @@ PantheonTerminalPantheonTerminalWindow.background { .notebook { &.header.top { - box-shadow: inset 0 1px darken(opacify($header_bg, 1), 7%), - inset 0 -1px lighten($borders_color, 5%); + box-shadow: inset 0 1px if($variant == 'light', darken($header_bg, 7%), darken($header_bg, 5%)), + inset 0 -1px if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); } } } diff --git a/common/gtk-3.0/3.16/_colors.scss b/common/gtk-3.0/3.16/_colors.scss index 728a77f..358dccc 100644 --- a/common/gtk-3.0/3.16/_colors.scss +++ b/common/gtk-3.0/3.16/_colors.scss @@ -2,7 +2,7 @@ // it gets @if ed depending on $variant -$base_color: if($variant =='light', #ffffff, #272A30); +$base_color: if($variant =='light', #ffffff, #292D33); $text_color: if($variant == 'light', #5c616c, #D3DAE3); $bg_color: if($variant =='light', #f9fafb, #2F343B); $fg_color: if($variant =='light', #5c616c, #D3DAE3); @@ -38,7 +38,7 @@ $tooltip_fg: #edf5fb; $tooltip_borders_color: transparentize(white, 0.9); //insensitive state derived colors -$insensitive_fg_color: transparentize($fg_color, 0.45); +$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); $insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); @@ -50,10 +50,11 @@ $button_bg: if($variant == 'light', lighten($bg_color, 1%), darken($bg_color, 2% $button_border: $entry_border; $header_bg: if($transparency == 'true' and $variant == 'light', transparentize(#e7e8eb, 0.05), #e7e8eb); - @if $variant==dark { $header_bg: if($transparency == 'true', transparentize(#272A30, 0.04), #272A30); } -$header_fg: saturate(transparentize($fg_color, 0.2), 10%); +$header_bg_backdrop: if($variant == 'light', lighten($header_bg, 3%), lighten($header_bg, 1.5%)); + +$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.3), 10%)); $dark_sidebar_bg: if($transparency == 'true', $osd_bg_color, opacify($osd_bg_color, 1)); $dark_sidebar_fg: $osd_fg_color; diff --git a/common/gtk-3.0/3.16/_common.scss b/common/gtk-3.0/3.16/_common.scss index 7ca39c0..771530c 100644 --- a/common/gtk-3.0/3.16/_common.scss +++ b/common/gtk-3.0/3.16/_common.scss @@ -985,7 +985,7 @@ GtkComboBox { border-image: linear-gradient(to bottom, opacify($header_bg, 1), darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } .separator { @extend %header_separator; } @@ -1023,7 +1023,7 @@ GtkComboBox { border-width: 0 0 1px; border-style: solid; border-radius: 0; - border-color: darken($header_bg, 7%); + border-color: if($variant == 'light', darken($header_bg, 7%), darken($header_bg, 5%)); color: $header_fg; background-color: opacify($header_bg, 1); @@ -1032,9 +1032,9 @@ GtkComboBox { &:backdrop { color: transparentize($header_fg, 0.3); - background-color: lighten(opacify($header_bg, 1), 3%); + background-color: opacify($header_bg_backdrop, 1); - .csd & { background-color: lighten($header_bg, 3%); } // Transparent header-bars only in csd windows + .csd & { background-color: $header_bg_backdrop; } // Transparent header-bars only in csd windows } .title { @@ -1117,7 +1117,7 @@ GtkComboBox { .maximized & { background-color: opacify($header_bg, 1); - &:backdrop { background-color: opacify(lighten($header_bg, 3%), 1); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } &.default-decoration { @@ -1126,7 +1126,7 @@ GtkComboBox { background-color: opacify($header_bg, 1); border-bottom-width: 0; - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } @@ -1142,15 +1142,15 @@ GtkComboBox { &:backdrop { color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg, 1); + background-color: opacify($header_bg_backdrop, 1); - .csd & { background-color: lighten($header_bg, 3%); } + .csd & { background-color: $header_bg_backdrop; } } .maximized & { background-color: opacify($header_bg, 1); - &:backdrop { background-color: opacify(lighten($header_bg, 3%), 1); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } } } @@ -1486,7 +1486,7 @@ column-header.button.dnd { // for treeview-like derive widgets background-color: opacify($header_bg, 1); color: $header_fg; - &:backdrop { background-color: lighten(opacify($header_bg, 1), 3%); } + &:backdrop { background-color: opacify($header_bg_backdrop, 1); } & > .menuitem { padding: 6px 8px; @@ -1508,7 +1508,7 @@ column-header.button.dnd { // for treeview-like derive widgets margin: 4px; padding: 0; border-radius: 0; - background-color: $base_color; + background-color: if($variant == 'light', $base_color, darken($base_color, 3%)); border: 1px solid $borders_color; .csd & { @@ -1521,8 +1521,8 @@ column-header.button.dnd { // for treeview-like derive widgets padding: 5px; &:hover { color: $fg_color; - background-color: transparentize(black, 0.96); - border: solid transparentize(black, 0.92); + background-color: if($variant == 'light', transparentize(black, 0.96), transparentize(white, 0.95)); + border: solid if($variant == 'light', transparentize(black, 0.92), transparentize(white, 0.93)); border-width: 1px 0 1px 0; } &:insensitive { @@ -1561,7 +1561,7 @@ column-header.button.dnd { // for treeview-like derive widgets border: 1px solid darken($borders_color, 5%); border-radius: 3px; background-clip: border-box; - background-color: $base_color; + background-color: if($variant == 'light', $base_color, darken($base_color, 3%)); box-shadow: 0 2px 6px 1px transparentize(black, 0.93); @@ -1633,7 +1633,7 @@ column-header.button.dnd { // for treeview-like derive widgets &.left { border-right-width: 0; } } - $_header_border: lighten($borders_color, 5%); + $_header_border: if($variant == 'light', lighten($borders_color, 5%), lighten($borders_color, 1%)); &.top { box-shadow: inset 0 -1px $_header_border; // border } @@ -1693,8 +1693,8 @@ column-header.button.dnd { // for treeview-like derive widgets border-width: 1px; border-#{$_tab}-width: 0; border-color: $borders_color; - background-color: transparentize(black, 0.98); - &:hover { background-color: transparentize(black, 0.98); } + background-color: if($variant == 'light', transparentize(black, 0.98), transparentize(black, 0.9)); + &:hover { background-color: if($variant == 'light', transparentize(black, 0.98), transparentize(black, 0.9)); } } } } @@ -1769,7 +1769,7 @@ $_scrollbar_bg_color: darken($base_color, 1%); .slider { margin: 0; background-color: mix($fg_color, $bg_color, 70%); - border: 1px solid transparentize(white, 0.4); + border: 1px solid if($variant == 'light', transparentize(white, 0.4), transparentize(black, 0.7)); background-clip: padding-box; } @@ -2651,8 +2651,8 @@ GtkVolumeButton.button { padding: 8px; } // this needs to be transparent // see bug #722563 - $_wm_border: transparentize(black, 0.9); - $_wm_border_backdrop: transparentize(black, 0.9); + $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.35)); + $_wm_border_backdrop: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.35)); box-shadow: 0 0 0 1px $_wm_border, 0 4px 8px 1px $_wm_border; diff --git a/common/gtk-3.0/3.16/_drawing.scss b/common/gtk-3.0/3.16/_drawing.scss index 0300ce1..6c68215 100644 --- a/common/gtk-3.0/3.16/_drawing.scss +++ b/common/gtk-3.0/3.16/_drawing.scss @@ -57,8 +57,8 @@ // normal header-bar entry // color: $header_fg; - border-color: transparentize($header_fg, 0.7); - background-image: linear-gradient(to bottom, transparentize($base_color, 0.1)); + border-color: if($variant == 'light', transparentize($header_fg, 0.7), darken($borders_color, 4%)); + background-image: linear-gradient(to bottom, if($variant == 'light', transparentize($base_color, 0.1), transparentize(darken($base_color, 4%), 0.1))); background-color: transparent; &.image, &.image:hover { color: inherit; } @@ -78,7 +78,7 @@ // insensitive header-bar entry // color: transparentize($header_fg, 0.45); - background-image: linear-gradient(to bottom, transparentize($base_color, 0.45)); + background-image: linear-gradient(to bottom, if($variant == 'light', transparentize($base_color, 0.45), transparentize(darken($base_color, 2%), 0.45))); } @if $t==osd { @@ -192,8 +192,8 @@ // color: $header_fg; outline-color: transparentize($header_fg, 0.7); - border-color: transparentize($header_fg, 0.7); - background-color: transparentize($button_bg, 0.1); + border-color: if($variant == 'light', transparentize($header_fg, 0.7), darken($borders_color, 1%)); + background-color: if($variant == 'light', transparentize($button_bg, 0.1), transparentize(darken($button_bg, 3%), 0.1)); } @else if $t==header-active { diff --git a/common/gtk-3.0/3.16/assets.svg b/common/gtk-3.0/3.16/assets.svg index 0092a56..65c2617 100644 --- a/common/gtk-3.0/3.16/assets.svg +++ b/common/gtk-3.0/3.16/assets.svg @@ -24,12 +24,12 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.4142136" - inkscape:cx="291.05608" - inkscape:cy="188.23767" + inkscape:zoom="2" + inkscape:cx="379.80628" + inkscape:cy="195.09285" inkscape:document-units="px" inkscape:current-layer="layer1" - showgrid="true" + showgrid="false" showborder="false" inkscape:window-width="1366" inkscape:window-height="720" @@ -3404,7 +3404,7 @@ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2f343b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;enable-background:accumulate" transform="scale(1,-1)" /> <rect - style="display:inline;fill:#202429;fill-opacity:1;stroke:#222529;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="display:inline;fill:#272a30;fill-opacity:1;stroke:#222529;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect11783-3" width="120.99998" height="138" @@ -3488,7 +3488,7 @@ height="1.9999826" width="5" id="rect3977-39-90" - style="fill:#272a30;fill-opacity:1;stroke:none" /> + style="fill:#ffffff;fill-opacity:1;stroke:none" /> <rect ry="0" y="1027.3622" @@ -3496,7 +3496,7 @@ height="7.9999828" width="2" id="rect3979-7-60" - style="fill:#272a30;fill-opacity:1;stroke:none" /> + style="fill:#ffffff;fill-opacity:1;stroke:none" /> </g> <rect style="fill:#eeeeee;fill-opacity:0;stroke:none" @@ -3587,7 +3587,7 @@ height="7.9999828" width="2" id="rect3979-7-3-4" - style="fill:#272a30;fill-opacity:1;stroke:none" + style="fill:#ffffff;fill-opacity:1;stroke:none" transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> </g> <rect @@ -3669,7 +3669,7 @@ height="4" width="4" id="use15101-5-7-55" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#272a30;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" ry="2" /> </g> <g @@ -3734,7 +3734,7 @@ height="7.9999828" width="2" id="rect3979-7-3-9-5" - style="display:inline;fill:#272a30;fill-opacity:1;stroke:none" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none" transform="matrix(0,-1,1,0,0,0)" /> </g> </g> @@ -3773,7 +3773,7 @@ ry="11" rx="11" /> <circle - style="fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:none" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3759-0-75" cx="41" cy="1041.3622" @@ -3793,7 +3793,7 @@ height="1.9999826" width="5" id="rect3977-39-2-13" - style="display:inline;opacity:1;fill:#272a30;fill-opacity:1;stroke:none" /> + style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" /> <rect transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" ry="0" @@ -3802,7 +3802,7 @@ height="7.9999828" width="2" id="rect3979-7-0-65" - style="display:inline;opacity:1;fill:#272a30;fill-opacity:1;stroke:none" /> + style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" /> </g> </g> <g @@ -3839,7 +3839,7 @@ ry="11" rx="11" /> <circle - style="fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:none" + style="fill:#292d33;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3759-7-4" cx="41" cy="1041.3622" @@ -3851,7 +3851,7 @@ inkscape:connector-curvature="0" d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" id="path10839-9-8-2-2-5-46" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:#292d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> <g transform="translate(-704.99998,-618.63782)" @@ -3888,7 +3888,7 @@ ry="11" rx="11" /> <circle - style="fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:none" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3759-0-8-4" cx="41" cy="1041.3622" @@ -3908,7 +3908,7 @@ height="1.9999826" width="5" id="rect3977-39-2-3-6" - style="display:inline;opacity:1;fill:#272a30;fill-opacity:1;stroke:none" /> + style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" /> <rect transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" ry="0" @@ -3917,7 +3917,7 @@ height="7.9999828" width="2" id="rect3979-7-0-6-69" - style="display:inline;opacity:1;fill:#272a30;fill-opacity:1;stroke:none" /> + style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" /> </g> </g> <g @@ -3954,7 +3954,7 @@ ry="11" rx="11" /> <circle - style="fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:none" + style="fill:#292d33;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3759-1-7-3" cx="41" cy="1041.3622" @@ -3966,7 +3966,7 @@ inkscape:connector-curvature="0" d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" id="path10839-9-8-2-2-5-5-5" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> + style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:#292d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> <g transform="translate(220.00001,-229.00001)" @@ -4003,7 +4003,7 @@ id="g5400-2-47"> <rect ry="2" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#272a30;fill-opacity:1;stroke:#454a54;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#292d33;fill-opacity:1;stroke:#454a54;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" id="rect5147-9-1-5-7-6-3-70" width="13" height="12.999997" @@ -4043,7 +4043,7 @@ id="g5428-8-1-7-83-7"> <rect ry="13.246163" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:#454a54;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#292d33;fill-opacity:1;fill-rule:nonzero;stroke:#454a54;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" id="rect5147-9-1-7-7-61" width="27.303804" height="26.835894" @@ -4134,7 +4134,7 @@ height="1.9999826" width="5" id="rect3977-39-0-3" - style="fill:#272a30;fill-opacity:1;stroke:none" /> + style="fill:#ffffff;fill-opacity:1;stroke:none" /> <rect ry="0" y="1027.3622" @@ -4142,7 +4142,7 @@ height="7.9999828" width="2" id="rect3979-7-6-9" - style="fill:#272a30;fill-opacity:1;stroke:none" /> + style="fill:#ffffff;fill-opacity:1;stroke:none" /> </g> <rect style="fill:#eeeeee;fill-opacity:0;stroke:none" @@ -4233,7 +4233,7 @@ height="7.9999828" width="2" id="rect3979-7-3-91-5" - style="fill:#272a30;fill-opacity:1;stroke:none" + style="fill:#ffffff;fill-opacity:1;stroke:none" transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,0,0)" /> </g> <rect @@ -4315,7 +4315,7 @@ height="4" width="4" id="use15101-5-7-2-5" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#272a30;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate" ry="2" /> </g> <g @@ -4380,7 +4380,7 @@ height="7.9999828" width="2" id="rect3979-7-3-9-3-37" - style="display:inline;fill:#272a30;fill-opacity:1;stroke:none" + style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none" transform="matrix(0,-1,1,0,0,0)" /> </g> </g> @@ -4419,7 +4419,7 @@ id="g5400-2-4-7"> <rect ry="2" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#272a30;fill-opacity:1;stroke:#454a54;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#292d33;fill-opacity:1;stroke:#454a54;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" id="rect5147-9-1-5-7-6-3-7-2" width="13" height="13.000001" @@ -4459,7 +4459,7 @@ id="g5428-8-1-7-83-9-6"> <rect ry="13.246163" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#272a30;fill-opacity:1;fill-rule:nonzero;stroke:#454a54;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#292d33;fill-opacity:1;fill-rule:nonzero;stroke:#454a54;stroke-width:2.08222365;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" id="rect5147-9-1-7-7-2-6" width="27.303804" height="26.835888" @@ -4517,7 +4517,7 @@ height="31" width="30.999969" id="rect13851-8-3" - style="fill:#272a30;fill-opacity:1;stroke:#454a54;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + style="fill:#292d33;fill-opacity:1;stroke:#454a54;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" rx="2" /> <g transform="translate(-2.2045153,1.9730481)" @@ -4770,75 +4770,120 @@ </g> <g style="display:inline" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-228.99998,-43.000014)"> + <ellipse + cy="-177.63782" + cx="595" + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-47" + rx="6" + ry="6.0000005" /> + <g + id="g7138-6" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4"> + <g + id="g4092-0-7-0-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <path + style="display:inline;opacity:1;fill:#1b1d21;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-3" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline" id="titlebutton-close-dark" inkscape:label="#g6210" transform="translate(-246.99998,-43.000014)"> <g - id="g4927-9-0" + id="g4927-9-2" style="display:inline;opacity:1" transform="translate(-678,-432.63782)"> <g transform="translate(-103,0)" style="display:inline;opacity:1" - id="g4490-6-5-2-0"> + id="g4490-6-5-2-5"> <g - id="g4092-0-2-21-0-5" + id="g4092-0-2-21-0-9" style="display:inline" transform="translate(58,0)"> <circle r="7" cy="255" cx="1376" - style="fill:#f37076;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-1" /> + style="fill:#f0464e;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-5" /> </g> </g> <g - id="g4778-2-68-3" + id="g4778-2-68-8" transform="translate(1323,246.86719)" style="fill:#ffffff;fill-opacity:1"> <g style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4-4-2" + id="layer9-9-4-4-1" transform="translate(-60,-518)" /> <g - id="layer10-2-1-8-9" + id="layer10-2-1-8-0" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer11-16-4-9-1" + id="layer11-16-4-9-6" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-9" + id="g2996-76-5-96" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(-60,-518)" - id="layer12-4-5-7-5" + id="layer12-4-5-7-9" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(19,-242)" - id="layer4-4-1-9-5-8" + id="layer4-4-1-9-5-6" style="display:inline;fill:#ffffff;fill-opacity:1"> <path inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2-2-2" + id="path10839-9-2-2-7" style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> </g> </g> <g - id="layer13-2-6-11-8" + id="layer13-2-6-11-3" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer14-4-0-33-4" + id="layer14-4-0-33-2" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer15-7-3-0-1" + id="layer15-7-3-0-6" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> </g> @@ -4848,7 +4893,7 @@ x="645" height="16" width="16" - id="rect17883-39-9" + id="rect17883-39-99" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g @@ -4856,27 +4901,33 @@ id="titlebutton-max-dark" inkscape:label="#g6234" transform="translate(-237.99998,-43.000014)"> - <circle - r="7" + <ellipse cy="-177.63782" cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-5" /> + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-6-0" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#1b1d21;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-184.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-2-0" + inkscape:connector-curvature="0" /> <g - id="g7146-8" + id="g7146-16" style="display:inline;opacity:1" transform="translate(-781,-432.63782)"> <g transform="translate(-29,0)" style="display:inline;opacity:1" - id="g4490-2-96-9"> + id="g4490-2-96-8"> <g - id="g4092-0-6-83-9" + id="g4092-0-6-83-7" style="display:inline" transform="translate(58,0)" /> </g> <path - id="path4293-5-95-7" + id="path4293-5-95-1" style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" @@ -4887,119 +4938,80 @@ x="616" height="16" width="16" - id="rect17883-29-9" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-min-dark" - inkscape:label="#g6247" - transform="translate(-228.99998,-43.000014)"> - <circle - r="7" - cy="-177.63782" - cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-8" /> - <g - id="g7138-3" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75-8"> - <g - id="g4092-0-7-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3-6" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32-7" + id="rect17883-29-2" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g style="display:inline" id="titlebutton-close-hover-dark" inkscape:label="#g6260" - transform="translate(-143.99998,-9.0000132)"> + transform="translate(-143.99998,-9.0000138)"> <g - id="g4927-7" + id="g4927-97" style="display:inline;opacity:1" transform="translate(-781,-432.63782)"> <g transform="translate(-103,0)" style="display:inline;opacity:1" - id="g4490-6-9-7"> + id="g4490-6-9-1"> <g - id="g4092-0-2-3-6" + id="g4092-0-2-3-4" style="display:inline" transform="translate(58,0)"> <circle r="7" cy="255" cx="1376" - style="fill:#f79da1;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-8-8" /> + style="fill:#f36f75;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-8-2" /> </g> </g> <g - id="g4778-4-3" + id="g4778-4-0" transform="translate(1323,246.86719)" style="fill:#ffffff;fill-opacity:1"> <g style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-44-0" + id="layer9-9-44-1" transform="translate(-60,-518)" /> <g - id="layer10-2-9-0" + id="layer10-2-9-3" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer11-16-3-4" + id="layer11-16-3-1" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9-9" + id="g2996-9-3" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(-60,-518)" - id="layer12-4-7-5" + id="layer12-4-7-1" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(19,-242)" - id="layer4-4-1-3-2" + id="layer4-4-1-3-3" style="display:inline;fill:#ffffff;fill-opacity:1"> <path inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-5-3" + id="path10839-9-5-0" style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> </g> </g> <g - id="layer13-2-02-5" + id="layer13-2-02-1" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer14-4-7-8" + id="layer14-4-7-9" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer15-7-4-4" + id="layer15-7-4-7" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> </g> @@ -5009,89 +5021,85 @@ x="542" height="16" width="16" - id="rect17883-5-6" + id="rect17883-5-4" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g style="display:inline" id="titlebutton-max-hover-dark" inkscape:label="#g6284" - transform="translate(-134.99998,-9.0000132)"> + transform="translate(-134.99998,-9.0000138)"> <g - id="g4891-1" + id="g4891-5" style="display:inline;opacity:1" transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2" + inkscape:connector-curvature="0" /> <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-12-5"> - <g - id="g4092-0-6-3-0-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-7-2" /> - </g> - </g> - <g - id="g4806-9-4" + id="g4806-9-0" transform="translate(1294,247)" style="fill:#c0e3ff;fill-opacity:1"> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="status" - id="layer9-78-7-3" /> + id="layer9-78-7-6" /> <g transform="translate(-81.0002,-967)" inkscape:label="devices" - id="layer10-3-3-5" + id="layer10-3-3-2" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="apps" - id="layer11-19-75-3" + id="layer11-19-75-1" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="places" - id="layer13-4-9-6" + id="layer13-4-9-2" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="mimetypes" - id="layer14-8-5-5" + id="layer14-8-5-0" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emblems" - id="layer15-5-8-9" /> + id="layer15-5-8-0" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emotes" - id="g71291-1-7-3" /> + id="g71291-1-7-5" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="categories" - id="g4953-7-1-2" /> + id="g4953-7-1-4" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="actions" - id="layer12-3-0-1"> + id="layer12-3-0-0"> <path sodipodi:nodetypes="csscccsscc" inkscape:connector-curvature="0" d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" style="opacity:0.8;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-2" /> + id="path4293-6-7" /> </g> </g> </g> @@ -5100,87 +5108,83 @@ x="513" height="16" width="16" - id="rect17883-0-0" + id="rect17883-0-1" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g style="display:inline" id="titlebutton-min-hover-dark" inkscape:label="#g6308" - transform="translate(-125.99998,-9.0000132)"> + transform="translate(-125.99998,-9.0000138)"> <g - id="g4909-2" + id="g4909-3" style="display:inline;opacity:1" transform="translate(-781,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-6-5"> - <g - id="g4092-0-7-2-8-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-2-4" /> - </g> - </g> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4" + inkscape:connector-curvature="0" /> <g style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0-9" + id="g4834-0-4" transform="translate(1265,247)"> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="status" - id="layer9-3-4-1" /> + id="layer9-3-4-15" /> <g transform="translate(-81.0002,-967)" inkscape:label="devices" - id="layer10-4-1-1" + id="layer10-4-1-8" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="apps" - id="layer11-2-6-3" + id="layer11-2-6-4" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="places" - id="layer13-5-4-5" + id="layer13-5-4-8" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="mimetypes" - id="layer14-6-0-6" + id="layer14-6-0-8" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emblems" - id="layer15-52-1-4" /> + id="layer15-52-1-7" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emotes" - id="g71291-3-9-1" /> + id="g71291-3-9-9" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="categories" - id="g4953-8-2-3" /> + id="g4953-8-2-7" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="actions" - id="layer12-45-6-6"> + id="layer12-45-6-2"> <path sodipodi:nodetypes="ccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.8;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8-5" + id="rect9057-8-2" d="m 86.0002,974 0,2 6,0 0,-2 z" inkscape:connector-curvature="0" /> </g> @@ -5191,80 +5195,80 @@ x="484" height="16" width="16" - id="rect17883-11-0" + id="rect17883-11-4" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g style="display:inline" id="titlebutton-close-active-dark" inkscape:label="#g6332" - transform="translate(-42.999995,7.9999872)"> + transform="translate(-42.999985,7.999986)"> <g - id="g4927-8-7-7" + id="g4927-8-7-4" style="display:inline;opacity:1" transform="translate(-882,-432.63782)"> <g transform="translate(-103,0)" style="display:inline;opacity:1" - id="g4490-6-3-7-4"> + id="g4490-6-3-7-46"> <g - id="g4092-0-2-2-1-3" + id="g4092-0-2-2-1-7" style="display:inline" transform="translate(58,0)"> <circle r="7" cy="255" cx="1376" - style="fill:#ef4048;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9-5" /> + style="fill:#e6262f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-4-9-7" /> </g> </g> <g - id="g4778-3-6-9" + id="g4778-3-6-0" transform="translate(1323,246.86719)" style="fill:#ffffff;fill-opacity:1"> <g style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-6-0-9" + id="layer9-9-6-0-90" transform="translate(-60,-518)" /> <g - id="layer10-2-3-6-0" + id="layer10-2-3-6-6" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer11-16-2-2-9" + id="layer11-16-2-2-6" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0-4" + id="g2996-7-0-2" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(-60,-518)" - id="layer12-4-6-3-3" + id="layer12-4-6-3-5" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(19,-242)" - id="layer4-4-1-4-1-2" + id="layer4-4-1-4-1-7" style="display:inline;fill:#ffffff;fill-opacity:1"> <path inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-8-7-8" + id="path10839-9-8-7-6" style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> </g> </g> <g - id="layer13-2-0-2-5" + id="layer13-2-0-2-8" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer14-4-4-0-3" + id="layer14-4-4-0-5" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer15-7-5-0-1" + id="layer15-7-5-0-0" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> </g> @@ -5274,24 +5278,24 @@ x="441" height="16" width="16" - id="rect17883-02-2" + id="rect17883-02-4" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g style="display:inline" id="titlebutton-max-active-dark" inkscape:label="#g6356" - transform="translate(-33.999995,7.9999872)"> + transform="translate(-33.999985,7.999986)"> <g - id="g4891-4-7" + id="g4891-4-5" style="display:inline;opacity:1" transform="translate(-882,-432.63782)"> <g transform="translate(-132,0)" style="display:inline;opacity:1" - id="g4490-2-9-1-2-1"> + id="g4490-2-9-1-2-4"> <g - id="g4092-0-6-3-6-8-7" + id="g4092-0-6-3-6-8-3" style="display:inline" transform="translate(58,0)"> <circle @@ -5299,64 +5303,64 @@ cy="255" cx="1376" style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-9" /> + id="path4068-7-6-5-1-6-6" /> </g> </g> <g - id="g4806-5-2-6" + id="g4806-5-2-2" transform="translate(1294,247)" style="fill:#c0e3ff;fill-opacity:1"> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="status" - id="layer9-78-2-0-4" /> + id="layer9-78-2-0-0" /> <g transform="translate(-81.0002,-967)" inkscape:label="devices" - id="layer10-3-9-9-5" + id="layer10-3-9-9-51" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="apps" - id="layer11-19-7-6-0" + id="layer11-19-7-6-4" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="places" - id="layer13-4-7-4-7" + id="layer13-4-7-4-0" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="mimetypes" - id="layer14-8-9-7-0" + id="layer14-8-9-7-6" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emblems" - id="layer15-5-4-2-9" /> + id="layer15-5-4-2-4" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emotes" - id="g71291-1-4-6-2" /> + id="g71291-1-4-6-4" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="categories" - id="g4953-7-0-8-2" /> + id="g4953-7-0-8-22" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="actions" - id="layer12-3-7-2-9"> + id="layer12-3-7-2-3"> <path sodipodi:nodetypes="csscccsscc" inkscape:connector-curvature="0" d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-2" /> + id="path4293-4-9-0" /> </g> </g> </g> @@ -5365,24 +5369,24 @@ x="412" height="16" width="16" - id="rect17883-79-92" + id="rect17883-79-3" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> </g> <g style="display:inline" id="titlebutton-min-active-dark" inkscape:label="#g6414" - transform="translate(-24.999995,7.9999872)"> + transform="translate(-24.999985,7.999986)"> <g - id="g4909-1-8" + id="g4909-1-2" style="display:inline;opacity:1" transform="translate(-882,-432.63782)"> <g transform="translate(-161,0)" style="display:inline;opacity:1" - id="g4490-3-6-1-4-3"> + id="g4490-3-6-1-4-1"> <g - id="g4092-0-7-2-0-0-9" + id="g4092-0-7-2-0-0-94" style="display:inline" transform="translate(58,0)"> <circle @@ -5390,62 +5394,62 @@ cy="255" cx="1376" style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-9" /> + id="path4068-7-3-0-3-6-8" /> </g> </g> <g style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-0" + id="g4834-9-3-8" transform="translate(1265,247)"> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="status" - id="layer9-3-9-1-4" /> + id="layer9-3-9-1-0" /> <g transform="translate(-81.0002,-967)" inkscape:label="devices" - id="layer10-4-0-5-1" + id="layer10-4-0-5-8" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="apps" - id="layer11-2-5-2-8" + id="layer11-2-5-2-6" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="places" - id="layer13-5-7-4-1" + id="layer13-5-7-4-2" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" inkscape:label="mimetypes" - id="layer14-6-2-3-5" + id="layer14-6-2-3-2" style="fill:#c0e3ff;fill-opacity:1" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emblems" - id="layer15-52-0-6-1" /> + id="layer15-52-0-6-6" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="emotes" - id="g71291-3-4-6-3" /> + id="g71291-3-4-6-0" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="categories" - id="g4953-8-6-8-0" /> + id="g4953-8-6-8-7" /> <g transform="translate(-81.0002,-967)" style="display:inline;fill:#c0e3ff;fill-opacity:1" inkscape:label="actions" - id="layer12-45-3-7-9"> + id="layer12-45-3-7-96"> <path sodipodi:nodetypes="ccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-6" + id="rect9057-3-5-1" d="m 86.0002,974 0,2 6,0 0,-2 z" inkscape:connector-curvature="0" /> </g> @@ -5453,7 +5457,7 @@ </g> <rect style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-7" + id="rect17883-79-9-2" width="16" height="16" x="383" @@ -5465,78 +5469,74 @@ style="display:inline;opacity:0.7" transform="translate(-246.99998,-43.000014)"> <g - id="g4927-9-9-3" + id="g4927-9-9-36" style="display:inline;opacity:1" transform="translate(-678,-415.63782)"> + <ellipse + cy="255" + cx="1331" + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-2-3" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#1b1d21;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1331,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-8-1" + inkscape:connector-curvature="0" /> <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-1"> - <g - id="g4092-0-2-21-5" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-5" /> - </g> - </g> - <g - id="g4778-2-9" + id="g4778-2-3" transform="translate(1323,246.86719)" style="fill:#ffffff;fill-opacity:1"> <g style="display:inline;fill:#ffffff;fill-opacity:1" - id="layer9-9-4-8" + id="layer9-9-4-0" transform="translate(-60,-518)" /> <g - id="layer10-2-1-4" + id="layer10-2-1-3" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer11-16-4-3" + id="layer11-16-4-7" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-0" + id="g2996-76-3" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(-60,-518)" - id="layer12-4-5-3" + id="layer12-4-5-5" style="fill:#ffffff;fill-opacity:1"> <g transform="translate(19,-242)" - id="layer4-4-1-9-59" + id="layer4-4-1-9-2" style="display:inline;fill:#ffffff;fill-opacity:1"> <path inkscape:connector-curvature="0" d="m 45,764 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 49,766.59375 51.3125,764.3125 C 51.578125,764.082 51.759172,764.007 52,764 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 C 52.906938,770.46942 52.999992,770.7347 53,771 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 L 49,769.4375 46.71875,771.71875 C 46.530586,771.90694 46.26529,772 46,772 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 L 45.28125,765.75 C 45.070508,765.55537 44.97809,765.28075 45,765 l 0,-1 z" - id="path10839-9-2-5" + id="path10839-9-2-8" style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> </g> </g> </g> <g - id="layer13-2-6-4" + id="layer13-2-6-9" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer14-4-0-0" + id="layer14-4-0-3" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> <g - id="layer15-7-3-1" + id="layer15-7-3-9" transform="translate(-60,-518)" style="fill:#ffffff;fill-opacity:1" /> </g> </g> <rect style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-2-6" + id="rect17883-39-2-4" width="16" height="16" x="645" @@ -5547,27 +5547,33 @@ inkscape:label="#g6521" style="display:inline;opacity:0.7" transform="translate(-237.99998,-43.000014)"> - <circle - r="7" + <ellipse cy="-160.63782" cx="624" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-6-1" /> + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-84-0" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#1b1d21;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 624,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-7-6" + inkscape:connector-curvature="0" /> <g style="display:inline;opacity:1" - id="g7146-1-0" + id="g7146-1-1" transform="translate(-781,-415.63782)"> <g transform="translate(-29,0)" style="display:inline;opacity:1" - id="g4490-2-3"> + id="g4490-2-6"> <g - id="g4092-0-6-1" + id="g4092-0-6-9" style="display:inline" transform="translate(58,0)" /> </g> <path - id="path4293-5-2" + id="path4293-5-6" style="display:inline;opacity:0.5;fill:#525d76;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" inkscape:connector-curvature="0" @@ -5575,7 +5581,7 @@ </g> <rect style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6-0" + id="rect17883-39-6-2" width="16" height="16" x="616" @@ -5586,35 +5592,41 @@ inkscape:label="#g6534" style="display:inline;opacity:0.7" transform="translate(-228.99998,-43.000014)"> - <circle - r="7" + <ellipse cy="-160.63782" cx="595" - style="display:inline;opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-2-5" /> + style="display:inline;opacity:0.9;fill:#22262b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-60-3" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:1;fill:#1b1d21;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 595,-167.63782 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-4-4" + inkscape:connector-curvature="0" /> <g style="display:inline;opacity:1" - id="g7138-0-2" + id="g7138-0-7" transform="translate(-781,-415.63782)"> <g transform="translate(-58,0)" style="display:inline;opacity:1" - id="g4490-3-4"> + id="g4490-3-6"> <g - id="g4092-0-7-2" + id="g4092-0-7-6" style="display:inline" transform="translate(58,0)" /> </g> <path inkscape:connector-curvature="0" d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-0" + id="rect9057-4-09" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" /> </g> <rect style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3-4" + id="rect17883-39-3-46" width="16" height="16" x="587" diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png Binary files differindex fdd87ad..11047e9 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png Binary files differindex c02cd10..41faf59 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png Binary files differindex 7daccf4..024b806 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png Binary files differindex 1cddcd2..f26d85d 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png Binary files differindex 200b83b..315b044 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png Binary files differindex 0170e05..23c658d 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png Binary files differindex bbc11aa..14aff93 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png Binary files differindex 641ad3c..dfed81e 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png Binary files differindex a65cc6b..8282bcc 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png Binary files differindex 76857c5..8e27e30 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png Binary files differindex 4048958..afe72de 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png Binary files differindex 894dbc1..88e53cf 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png Binary files differindex 220a0a6..4eba18b 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png Binary files differindex 981f1da..c8b8035 100644 --- a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-dark.png b/common/gtk-3.0/3.16/assets/radio-checked-dark.png Binary files differindex a4bbf93..4ddb8a6 100644 --- a/common/gtk-3.0/3.16/assets/radio-checked-dark.png +++ b/common/gtk-3.0/3.16/assets/radio-checked-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png b/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png Binary files differindex 99f4bd5..a78d7df 100644 --- a/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png +++ b/common/gtk-3.0/3.16/assets/radio-checked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png Binary files differindex dddceae..a166ea3 100644 --- a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png Binary files differindex 0f6edcb..e4a7c3d 100644 --- a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-dark.png b/common/gtk-3.0/3.16/assets/radio-mixed-dark.png Binary files differindex 7691c7e..9d9ebf5 100644 --- a/common/gtk-3.0/3.16/assets/radio-mixed-dark.png +++ b/common/gtk-3.0/3.16/assets/radio-mixed-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png Binary files differindex 967cbc7..985528c 100644 --- a/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png +++ b/common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png Binary files differindex 23be295..3af92cd 100644 --- a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png Binary files differindex 5dd5b85..2803be0 100644 --- a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png Binary files differindex b3b51d1..1795598 100644 --- a/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png Binary files differindex de36c69..752b399 100644 --- a/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png Binary files differindex ee69dba..2228557 100644 --- a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png Binary files differindex 1b56191..e0f116e 100644 --- a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-dark.png b/common/gtk-3.0/3.16/assets/switch-active-dark.png Binary files differindex 239144b..5b0e6af 100644 --- a/common/gtk-3.0/3.16/assets/switch-active-dark.png +++ b/common/gtk-3.0/3.16/assets/switch-active-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-dark@2.png Binary files differindex 9ca9293..8278006 100644 --- a/common/gtk-3.0/3.16/assets/switch-active-dark@2.png +++ b/common/gtk-3.0/3.16/assets/switch-active-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png Binary files differindex b808940..52ae5eb 100644 --- a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png Binary files differindex 5a77ea8..af407a4 100644 --- a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-dark.png b/common/gtk-3.0/3.16/assets/switch-dark.png Binary files differindex 23f3c82..956b263 100644 --- a/common/gtk-3.0/3.16/assets/switch-dark.png +++ b/common/gtk-3.0/3.16/assets/switch-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-dark@2.png b/common/gtk-3.0/3.16/assets/switch-dark@2.png Binary files differindex a0e18e9..f5b61e2 100644 --- a/common/gtk-3.0/3.16/assets/switch-dark@2.png +++ b/common/gtk-3.0/3.16/assets/switch-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png b/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png Binary files differindex 58489b2..c02a0bb 100644 --- a/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png +++ b/common/gtk-3.0/3.16/assets/switch-insensitive-dark.png diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png Binary files differindex 424bf3c..bb1ff3e 100644 --- a/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png +++ b/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png Binary files differindex 6d2fc72..4df4c2f 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png Binary files differindex 4e4b471..1882b92 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png Binary files differindex bdf8571..c4a46e6 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png Binary files differindex 247f3a9..7a73385 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png Binary files differindex 4ac9243..e77abb7 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png Binary files differindex e1c4b76..565d697 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png Binary files differindex 157eaac..9afc188 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png Binary files differindex 6eb2d20..84b3eb0 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png Binary files differindex a5f1a6b..a6b41cf 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png Binary files differindex 496e930..9df6069 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png Binary files differindex 53c0c1a..5f16d04 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png Binary files differindex 9bf6191..683ad78 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png Binary files differindex 31ca8c2..295b52e 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png Binary files differindex ee52dfa..4ad707d 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-max-hover-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png Binary files differindex 7adf89b..9d5ab35 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png Binary files differindex 754dedb..01203d1 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-backdrop-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png Binary files differindex 4aeb64f..65a55a4 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png Binary files differindex 1b6e7a9..da3994a 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-dark@2.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png Binary files differindex 96b9e3c..b5e70bd 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark.png diff --git a/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png Binary files differindex fd4ac19..c8ace6a 100644 --- a/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png +++ b/common/gtk-3.0/3.16/assets/titlebutton-min-hover-dark@2.png diff --git a/common/gtk-3.0/3.16/gtk-contained-dark.css b/common/gtk-3.0/3.16/gtk-contained-dark.css index 8b26026..a096609 100644 --- a/common/gtk-3.0/3.16/gtk-contained-dark.css +++ b/common/gtk-3.0/3.16/gtk-contained-dark.css @@ -55,14 +55,14 @@ color: #D3DAE3; } .gtkstyle-fallback:insensitive { background-color: #343941; - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .gtkstyle-fallback:selected { background-color: #5294E2; color: #ffffff; } .view { color: #D3DAE3; - background-color: #272A30; } + background-color: #292D33; } .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { color: rgba(211, 218, 227, 0.55); } .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { @@ -76,13 +76,13 @@ .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { color: #D3DAE3; } .label:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { opacity: 0.55; } GtkAssistant .sidebar { - background-color: #272A30; + background-color: #292D33; border-top: 1px solid #1d2024; } GtkAssistant .sidebar:dir(ltr) { border-right: 1px solid #1d2024; } @@ -97,7 +97,7 @@ GtkAssistant .sidebar .label.highlight { color: #ffffff; } GtkTextView { - background-color: #2b2f35; } + background-color: #2c3037; } .grid-child { padding: 3px; @@ -140,8 +140,8 @@ GtkTextView { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: #D3DAE3; border-color: #454a54; - background-color: #272A30; - background-image: linear-gradient(to bottom, #272A30); } + background-color: #292D33; + background-image: linear-gradient(to bottom, #292D33); } .header-bar .entry { padding: 6px 11px; } .entry.image { @@ -151,25 +151,25 @@ GtkTextView { padding: 2px; color: #D3DAE3; border-color: #454a54; - background-color: #272A30; - background-image: linear-gradient(to bottom, #272A30); + background-color: #292D33; + background-image: linear-gradient(to bottom, #292D33); border: none; border-radius: 0; } .entry:focus { color: #D3DAE3; border-color: #5294E2; - background-color: #272A30; - background-image: linear-gradient(to bottom, #272A30); } + background-color: #292D33; + background-image: linear-gradient(to bottom, #292D33); } .entry:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); - background-color: rgba(39, 42, 48, 0.55); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + background-color: rgba(41, 45, 51, 0.55); + background-image: linear-gradient(to bottom, rgba(41, 45, 51, 0.55)); } .entry:selected, .entry:selected:focus { background-color: #5294E2; color: #ffffff; } .entry.progressbar { - margin: 2px; + margin: 2px 12px; border-radius: 0; border-width: 0 0 2px; border-color: #5294E2; @@ -191,7 +191,7 @@ GtkTextView { .entry.error { color: white; border-color: #FC4138; - background-image: linear-gradient(to bottom, #d13c36); } + background-image: linear-gradient(to bottom, #d13d37); } .entry.error:focus { background-image: linear-gradient(to bottom, #FC4138); color: white; } @@ -201,7 +201,7 @@ GtkTextView { .entry.warning { color: white; border-color: #F27835; - background-image: linear-gradient(to bottom, #c96834); } + background-image: linear-gradient(to bottom, #c96934); } .entry.warning:focus { background-image: linear-gradient(to bottom, #F27835); color: white; } @@ -209,26 +209,26 @@ GtkTextView { background-color: white; color: #F27835; } .entry.image { - color: #b0b6bf; } + color: #b1b7bf; } .entry.image:hover { color: #D3DAE3; } .entry.image:active { color: #5294E2; } .linked.vertical > .entry { - border-bottom-color: #24272c; + border-bottom-color: #25292e; box-shadow: none; } .linked.vertical > .entry:focus { border-color: #5294E2; box-shadow: 0 -1px 0 0 #5294E2; } .linked.vertical > .entry:insensitive { - border-bottom-color: #24272c; } + border-bottom-color: #25292e; } .linked.vertical > .entry:first-child { - border-bottom-color: #24272c; } + border-bottom-color: #25292e; } .linked.vertical > .entry:first-child:focus { border-bottom-color: #5294E2; box-shadow: none; } .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #24272c; } + border-bottom-color: #25292e; } .linked.vertical > .entry:last-child { border-bottom-color: rgba(0, 0, 0, 0.14); } .linked.vertical > .entry:last-child:focus { @@ -284,7 +284,7 @@ GtkTextView { background-color: transparent; background-image: none; } .button:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .button:insensitive > GtkLabel { @@ -487,7 +487,7 @@ GtkTextView { border-color: #5294E2; background-color: #5294E2; } .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { @@ -632,7 +632,7 @@ GtkTextView { .spinbutton .button:hover { color: #5294E2; } .spinbutton .button:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .spinbutton .button:active { background-color: #5294E2; color: #ffffff; } @@ -652,7 +652,7 @@ GtkTextView { border-color: #5294E2; background-color: #2a2f35; } .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { @@ -673,7 +673,7 @@ GtkTextView { border-color: #5294E2; background-color: #2a2f35; } .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { @@ -705,7 +705,7 @@ GtkComboBox { padding-top: 3px; padding-bottom: 4px; } GtkComboBox:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { -GtkWidget-wide-separators: true; } GtkComboBox.combobox-entry .entry { @@ -742,14 +742,14 @@ GtkComboBox { background-color: rgba(60, 64, 73, 0.95); } .primary-toolbar { - color: rgba(207, 218, 231, 0.8); + color: rgba(207, 218, 231, 0.7); background-color: #272a30; box-shadow: none; border-width: 0 0 1px 0; border-style: solid; border-image: linear-gradient(to bottom, #272a30, rgba(23, 25, 28, 0.96)) 1 0 1 0; } .primary-toolbar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .inline-toolbar { background-color: #282c32; @@ -777,16 +777,16 @@ GtkComboBox { border-width: 0 0 1px; border-style: solid; border-radius: 0; - border-color: rgba(23, 25, 28, 0.96); - color: rgba(207, 218, 231, 0.8); + border-color: rgba(28, 30, 34, 0.96); + color: rgba(207, 218, 231, 0.7); background-color: #272a30; } .csd .header-bar { background-color: rgba(39, 42, 48, 0.96); } .header-bar:backdrop { - color: rgba(207, 218, 231, 0.5); - background-color: #2e3138; } + color: rgba(207, 218, 231, 0.4); + background-color: #2a2e34; } .csd .header-bar:backdrop { - background-color: rgba(46, 49, 56, 0.96); } + background-color: rgba(42, 46, 52, 0.96); } .header-bar .title { padding: 0px 12px; } .header-bar .subtitle { @@ -844,36 +844,50 @@ GtkComboBox { .maximized .header-bar { background-color: #272a30; } .maximized .header-bar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .header-bar.default-decoration { padding-top: 5px; padding-bottom: 5px; background-color: #272a30; border-bottom-width: 0; } .header-bar.default-decoration:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .titlebar { padding-left: 7px; padding-right: 7px; border-radius: 4px 4px 0 0; - color: rgba(207, 218, 231, 0.8); + color: rgba(207, 218, 231, 0.7); + background-color: #272a30; box-shadow: inset 0 1px rgba(46, 49, 56, 0.96); } + .csd .titlebar { + background-color: rgba(39, 42, 48, 0.96); } .titlebar:backdrop { - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); + background-color: #2a2e34; } + .csd .titlebar:backdrop { + background-color: rgba(42, 46, 52, 0.96); } + .maximized .titlebar { + background-color: #272a30; } + .maximized .titlebar:backdrop { + background-color: #2a2e34; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } .primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { -GtkWidget-wide-separators: true; -GtkWidget-separator-width: 1px; border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.05) 25%, rgba(207, 218, 231, 0.05) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { opacity: 0.6; } .primary-toolbar .entry, .header-bar .entry { - color: rgba(207, 218, 231, 0.8); - border-color: rgba(207, 218, 231, 0.1); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.9)); + color: rgba(207, 218, 231, 0.7); + border-color: #141619; + background-image: linear-gradient(to bottom, rgba(32, 35, 40, 0.9)); background-color: transparent; } .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { color: inherit; } @@ -885,31 +899,35 @@ GtkComboBox { background-image: linear-gradient(to bottom, #5294E2); background-clip: border-box; } .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(207, 218, 231, 0.35); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + color: rgba(207, 218, 231, 0.25); + background-image: linear-gradient(to bottom, rgba(36, 40, 45, 0.55)); } .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { background-color: #ffffff; color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } .primary-toolbar .button, .header-bar .button { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); outline-offset: -3px; background-color: rgba(39, 42, 48, 0); border-color: rgba(39, 42, 48, 0); } .primary-toolbar .button:backdrop, .header-bar .button:backdrop { opacity: 0.7; } .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #5294E2; background-color: #5294E2; } .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(207, 218, 231, 0.35); + color: rgba(207, 218, 231, 0.25); background-color: rgba(39, 42, 48, 0); border-color: rgba(39, 42, 48, 0); } .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { @@ -926,10 +944,10 @@ GtkComboBox { .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { @@ -1008,20 +1026,20 @@ GtkComboBox { .primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { color: #ffffff; } .primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(207, 218, 231, 0.8); } + color: rgba(207, 218, 231, 0.7); } .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { background-color: rgba(255, 255, 255, 0.1); border-color: transparent; } .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); } .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { background-color: rgba(0, 0, 0, 0.1); } .primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(207, 218, 231, 0.2); } + color: rgba(207, 218, 231, 0.1); } .primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(207, 218, 231, 0.8); - border-color: rgba(207, 218, 231, 0.1); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.9)); + color: rgba(207, 218, 231, 0.7); + border-color: #141619; + background-image: linear-gradient(to bottom, rgba(32, 35, 40, 0.9)); background-color: transparent; } .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { color: inherit; } @@ -1030,24 +1048,24 @@ GtkComboBox { border-color: #5294E2; background-image: linear-gradient(to bottom, #5294E2); } .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(207, 218, 231, 0.35); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + color: rgba(207, 218, 231, 0.25); + background-image: linear-gradient(to bottom, rgba(36, 40, 45, 0.55)); } .primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { opacity: 0.75; } .primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(207, 218, 231, 0.15); } + background-color: rgba(207, 218, 231, 0.05); } .primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { opacity: 0.75; } .primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { opacity: 0.75; } .primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.05)); } .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0)); } .primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.996)); } + background-image: linear-gradient(to bottom, rgba(40, 44, 50, 0.996)); } .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.976)); } + background-image: linear-gradient(to bottom, rgba(39, 43, 49, 0.976)); } /************ * Pathbars * @@ -1083,7 +1101,7 @@ GtkTreeView.view { border-left-color: #a8c9f0; border-top-color: rgba(211, 218, 227, 0.1); } GtkTreeView.view:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } GtkTreeView.view:insensitive:selected { color: #97beed; } GtkTreeView.view.dnd { @@ -1092,7 +1110,7 @@ GtkTreeView.view { border-color: #92b7e2; } GtkTreeView.view.expander { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #7d8289; } + color: #7e838b; } GtkTreeView.view.expander:dir(rtl) { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } GtkTreeView.view.expander:hover { @@ -1116,8 +1134,8 @@ GtkTreeView.view { border-width: 0; } column-header .button { - color: #b0b6bf; - background-color: #272A30; } + color: #b1b7bf; + background-color: #292D33; } column-header .button:hover { color: #5294E2; box-shadow: none; @@ -1132,7 +1150,7 @@ column-header:last-child .button, column-header:last-child.button { column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { transition: none; color: #5294E2; - box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #272A30, inset -1px 0 #272A30; } + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #292D33, inset -1px 0 #292D33; } column-header .button, column-header .button:hover, column-header .button:active { padding: 3px 6px; @@ -1141,7 +1159,7 @@ column-header .button, column-header .button:hover, column-header .button:active border-radius: 0; border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } column-header .button:active { - background-color: #272A30; } + background-color: #292D33; } column-header .button:insensitive { border-color: #2F343B; background-image: none; } @@ -1153,9 +1171,9 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkWidget-window-dragging: true; padding: 0px; background-color: #272a30; - color: rgba(207, 218, 231, 0.8); } + color: rgba(207, 218, 231, 0.7); } .menubar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .menubar > .menuitem { padding: 6px 8px; border: solid transparent; @@ -1164,14 +1182,14 @@ column-header .button, column-header .button:hover, column-header .button:active background-color: #5294E2; color: #ffffff; } .menubar > .menuitem:insensitive { - color: rgba(207, 218, 231, 0.2); + color: rgba(207, 218, 231, 0.1); border-color: transparent; } .menu, .popup { margin: 4px; padding: 0; border-radius: 0; - background-color: #272A30; + background-color: #22262b; border: 1px solid #1d2024; } .csd .menu, .csd .popup { padding: 4px 0px; @@ -1181,13 +1199,13 @@ column-header .button, column-header .button:hover, column-header .button:active padding: 5px; } .menu .menuitem:hover, .popup .menuitem:hover { color: #D3DAE3; - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); border-width: 1px 0 1px 0; } .menu .menuitem:insensitive, .popup .menuitem:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { - color: rgba(39, 42, 48, 0); } + color: rgba(41, 45, 51, 0); } .menu .menuitem.arrow, .popup .menuitem.arrow { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { @@ -1196,11 +1214,11 @@ column-header .button, column-header .button:hover, column-header .button:active border-style: none; border-radius: 0; } .menu.button.top, .popup.button.top { - border-bottom: 1px solid #383b41; } + border-bottom: 1px solid #393e44; } .menu.button.bottom, .popup.button.bottom { - border-top: 1px solid #383b41; } + border-top: 1px solid #393e44; } .menu.button:hover, .popup.button:hover { - background-color: #383b41; } + background-color: #393e44; } .menu.button:insensitive, .popup.button:insensitive { color: transparent; background-color: transparent; @@ -1217,10 +1235,10 @@ column-header .button, column-header .button:hover, column-header .button:active border: 1px solid #121316; border-radius: 3px; background-clip: border-box; - background-color: #272A30; + background-color: #22262b; box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(39, 42, 48, 0); } + color: rgba(41, 45, 51, 0); } .popover > .list, .popover > .view, .popover > .toolbar, @@ -1247,7 +1265,7 @@ column-header .button, column-header .button:hover, column-header .button:active *****************/ .notebook { padding: 0; - background-color: #26292f; + background-color: #282c32; -GtkNotebook-initial-gap: 10; -GtkNotebook-arrow-spacing: 5; -GtkNotebook-tab-curvature: 0; @@ -1267,7 +1285,7 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.frame.left { border-left-width: 0; } .notebook.header { - background-color: #272A30; } + background-color: #292D33; } .notebook.header.frame { border: 1px solid #1d2024; } .notebook.header.frame.top { @@ -1279,13 +1297,13 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.header.frame.left { border-right-width: 0; } .notebook.header.top { - box-shadow: inset 0 -1px #282c32; } + box-shadow: inset 0 -1px #1f2227; } .notebook.header.bottom { - box-shadow: inset 0 1px #282c32; } + box-shadow: inset 0 1px #1f2227; } .notebook.header.right { - box-shadow: inset 1px 0 #282c32; } + box-shadow: inset 1px 0 #1f2227; } .notebook.header.left { - box-shadow: inset -1px 0 #282c32; } + box-shadow: inset -1px 0 #1f2227; } .notebook tab { border-width: 0; border-style: solid; @@ -1311,9 +1329,9 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-top-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.bottom, .notebook tab.bottom { border-color: transparent; } .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { @@ -1325,9 +1343,9 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-bottom-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.right, .notebook tab.right { border-color: transparent; } .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { @@ -1339,9 +1357,9 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-right-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.left, .notebook tab.left { border-color: transparent; } .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { @@ -1353,14 +1371,14 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-left-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab GtkLabel { padding: 0 2px; - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(211, 218, 227, 0.775); } + color: rgba(211, 218, 227, 0.725); } .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { color: #D3DAE3; } .notebook tab .button { @@ -1373,9 +1391,9 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook tab .button > GtkImage { padding: 2px; } .notebook.arrow { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .notebook.arrow:hover { - color: rgba(211, 218, 227, 0.775); } + color: rgba(211, 218, 227, 0.725); } .notebook.arrow:active { color: #D3DAE3; } .notebook.arrow:insensitive { @@ -1400,7 +1418,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { margin: 0; background-color: #a1a8b0; - border: 1px solid rgba(255, 255, 255, 0.6); + border: 1px solid rgba(0, 0, 0, 0.3); background-clip: padding-box; } .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { border-style: none; @@ -1414,7 +1432,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { opacity: 0.99; } .scrollbar .trough { - background-color: #25282d; + background-color: #272b30; border: 1px none #1d2024; } .scrollbar .slider { background-color: #70767e; } @@ -1455,7 +1473,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbars-junction.frame { border-color: transparent; border-image: linear-gradient(to bottom, #1d2024 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #25282d; } + background-color: #272b30; } .scrollbars-junction:dir(rtl), .scrollbars-junction.frame:dir(rtl) { border-image-slice: 0 1 0 0; } @@ -1615,7 +1633,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { padding: 1px 2px 4px; outline-offset: 0; } GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } /************ * GtkScale * @@ -1633,7 +1651,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { margin: 3px; } .scale.slider { background-clip: border-box; - background-image: linear-gradient(to bottom, #272A30); + background-image: linear-gradient(to bottom, #292D33); border: 1px solid #5294E2; border-radius: 50%; box-shadow: none; } @@ -1641,7 +1659,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { background-image: linear-gradient(to bottom, #5294E2); border-color: #5294E2; } .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #2a2e34); + background-image: linear-gradient(to bottom, #2b3036); border-color: #426896; } .scale.slider:active { background-image: linear-gradient(to bottom, #2679db); @@ -1779,7 +1797,7 @@ GtkScrolledWindow GtkViewport.frame { * Lists * *********/ .list, .list-row { - background-color: #272A30; + background-color: #292D33; border-color: #1d2024; } .list-row, @@ -1820,7 +1838,7 @@ GtkScrolledWindow GtkViewport.frame { border-width: 0 1px 1px; border-style: solid; border-color: rgba(0, 0, 0, 0.2); - background-color: #272A30; + background-color: #292D33; background-clip: padding-box; } /************* @@ -2082,27 +2100,27 @@ GtkVolumeButton.button { .window-frame { border-radius: 4px 4px 0 0; border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 8px 1px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65), 0 4px 8px 1px rgba(0, 0, 0, 0.65); /* this is used for the resize cursor area */ margin: 10px; } .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 5px 2px rgba(0, 0, 0, 0.1); } + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65), 0 4px 5px 2px rgba(0, 0, 0, 0.65); } .window-frame.tiled { border-radius: 0; } .window-frame.ssd { border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } .window-frame.ssd.maximized { border-radius: 0; } .window-frame.csd.popup, .window-frame.csd.menu { border-radius: 3px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.65); } .window-frame.csd.tooltip { border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.65); } .window-frame.csd.message-dialog { border-radius: 3px; - box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); } + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.65); } .window-frame.solid-csd { border-radius: 0; margin: 1px; @@ -2123,10 +2141,10 @@ GtkVolumeButton.button { border-width: 0; } .header-bar .button.titlebutton:hover, .titlebar .button.titlebutton:hover { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, .titlebar .button.titlebutton:active, .titlebar .button.titlebutton:checked { @@ -2265,7 +2283,7 @@ GtkVolumeButton.button { background-position: right center; } GtkHTML { - background-color: #272A30; + background-color: #292D33; color: #D3DAE3; } GtkHTML:active { color: #ffffff; @@ -2281,18 +2299,18 @@ TerminalWindow .notebook tab.reorderable-page:hover { padding-top: 4px; padding-bottom: 4px; } TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #17191c, inset 0 -1px #282c32; } + box-shadow: inset 0 1px #1c1e22, inset 0 -1px #1f2227; } TerminalWindow .notebook tab .active-page GtkLabel { - color: rgba(207, 218, 231, 0.8); } + color: rgba(207, 218, 231, 0.7); } TerminalWindow .notebook tab .active-page GtkLabel:backdrop { - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); } TerminalWindow .notebook tab.reorderable-page.top:hover { - border-bottom-color: #17191c; } + border-bottom-color: #1c1e22; } TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { background-color: #272a30; - border-color: #17191c; } + border-color: #1c1e22; } TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { - background-color: rgba(46, 49, 56, 0.96); } + background-color: #2a2e34; } TerminalWindow .scrollbar.vertical .slider { margin-left: 3px; } TerminalWindow .scrollbar.trough { @@ -2320,7 +2338,7 @@ NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { color: #dce9f9; } NautilusNotebook.notebook { - background-color: #272A30; } + background-color: #292D33; } NautilusNotebook.notebook tab { border-width: 0; border-style: solid; @@ -2355,10 +2373,10 @@ NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sideba color: #1d2024; } NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { border-color: #5294E2; } NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { @@ -2368,11 +2386,11 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { background-color: #5294E2; } .gedit-headerbar-paned { - color: rgba(23, 25, 28, 0.96); } + color: rgba(28, 30, 34, 0.96); } .open-document-selector-treeview.view { padding: 3px 6px 3px 6px; - border-color: #272A30; } + border-color: #292D33; } .open-document-selector-treeview.view:prelight { background-color: rgba(0, 0, 0, 0.05); } .open-document-selector-treeview.view:prelight:selected { @@ -2385,7 +2403,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { /* Only normal state is handle */ .open-document-selector-path-label { - color: #7d8289; + color: #7e838b; font-size: smaller; } .open-document-selector-path-label:selected { color: rgba(255, 255, 255, 0.9); } @@ -2448,7 +2466,7 @@ GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-color: rgba(207, 218, 231, 0.1); + border-color: rgba(207, 218, 231, 0); background-color: rgba(42, 47, 53, 0.9); } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { @@ -2674,9 +2692,9 @@ MarlinViewWindow *:selected:focus { .marlin-pathbar.pathbar { border-radius: 14.5px; - color: rgba(207, 218, 231, 0.8); - border-color: rgba(207, 218, 231, 0.1); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.9)); + color: rgba(207, 218, 231, 0.7); + border-color: #141619; + background-image: linear-gradient(to bottom, rgba(32, 35, 40, 0.9)); background-color: transparent; } .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { color: inherit; } @@ -2685,8 +2703,8 @@ MarlinViewWindow *:selected:focus { border-color: #5294E2; background-image: linear-gradient(to bottom, #5294E2); } .marlin-pathbar.pathbar:insensitive { - color: rgba(207, 218, 231, 0.35); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + color: rgba(207, 218, 231, 0.25); + background-image: linear-gradient(to bottom, rgba(36, 40, 45, 0.55)); } .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { color: #5294E2; } @@ -2694,7 +2712,7 @@ MarlinViewWindow *:selected:focus { border: 1px solid rgba(0, 0, 0, 0.35); border-radius: 3px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, #272A30); + background-image: linear-gradient(to bottom, #292D33); background-color: transparent; } .gala-notification .title, .gala-notification .label { color: #D3DAE3; } @@ -2760,10 +2778,8 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } - PantheonTerminalPantheonTerminalWindow.background .titlebar { - background-color: rgba(39, 42, 48, 0.96); } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #17191c, inset 0 -1px #282c32; } + box-shadow: inset 0 1px rgba(28, 30, 34, 0.96), inset 0 -1px #1f2227; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { @@ -2789,12 +2805,12 @@ UnityDecoration { border-radius: 4px 4px 0 0; padding: 1px 6px 0 6px; background-image: linear-gradient(to bottom, #272a30); - color: rgba(207, 218, 231, 0.8); + color: rgba(207, 218, 231, 0.7); box-shadow: inset 0 1px rgba(46, 49, 56, 0.96); } UnityDecoration.top:backdrop { border-bottom-width: 0; background-image: linear-gradient(to bottom, #2e3138); - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); } UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } @@ -2912,7 +2928,7 @@ GraniteWidgetsStaticNotebook .frame { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } GraniteWidgetsWelcome { - background-color: #272A30; } + background-color: #292D33; } GraniteWidgetsWelcome GtkLabel { color: #81878f; @@ -2936,7 +2952,7 @@ GraniteWidgetsPopOver { margin: 0; } .popover_bg { - background-image: linear-gradient(to bottom, #272A30); + background-image: linear-gradient(to bottom, #292D33); border: 1px solid rgba(0, 0, 0, 0.3); } GraniteWidgetsPopOver .sidebar.view, @@ -3138,7 +3154,7 @@ GeditWindow.background.csd { background-color: rgba(23, 25, 28, 0.96); } .gedit-bottom-panel-paned { - background-color: #272A30; } + background-color: #292D33; } .gedit-document-panel { background-color: rgba(60, 64, 73, 0.95); } @@ -3240,32 +3256,32 @@ GtkFileChooserDialog .action-bar.frame { @define-color theme_fg_color #D3DAE3; @define-color theme_text_color #D3DAE3; @define-color theme_bg_color #2F343B; -@define-color theme_base_color #272A30; +@define-color theme_base_color #292D33; @define-color theme_selected_bg_color #5294E2; @define-color theme_selected_fg_color #ffffff; @define-color fg_color #D3DAE3; @define-color text_color #D3DAE3; @define-color bg_color #2F343B; -@define-color base_color #272A30; +@define-color base_color #292D33; @define-color selected_bg_color #5294E2; @define-color selected_fg_color #ffffff; @define-color insensitive_bg_color #343941; -@define-color insensitive_fg_color rgba(211, 218, 227, 0.55); -@define-color insensitive_base_color #272A30; +@define-color insensitive_fg_color rgba(211, 218, 227, 0.45); +@define-color insensitive_base_color #292D33; @define-color theme_unfocused_fg_color #D3DAE3; @define-color theme_unfocused_text_color #D3DAE3; @define-color theme_unfocused_bg_color #2F343B; -@define-color theme_unfocused_base_color #272A30; +@define-color theme_unfocused_base_color #292D33; @define-color borders #1d2024; @define-color unfocused_borders #1d2024; @define-color warning_color #F27835; @define-color error_color #FC4138; @define-color success_color #73d216; @define-color placeholder_text_color #A8A8A8; -@define-color wm_title rgba(207, 218, 231, 0.8); -@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_title rgba(207, 218, 231, 0.7); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.7), 0.7); @define-color wm_bg #272a30; @define-color wm_bg_unfocused #2e3138; @define-color wm_highlight #30343b; @define-color wm_shadow alpha(black, 0.35); -@define-color content_view_bg #272A30; +@define-color content_view_bg #292D33; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-dark.css b/common/gtk-3.0/3.16/gtk-contained-solid-dark.css index f43e827..ac90757 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid-dark.css +++ b/common/gtk-3.0/3.16/gtk-contained-solid-dark.css @@ -55,14 +55,14 @@ color: #D3DAE3; } .gtkstyle-fallback:insensitive { background-color: #343941; - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .gtkstyle-fallback:selected { background-color: #5294E2; color: #ffffff; } .view { color: #D3DAE3; - background-color: #272A30; } + background-color: #292D33; } .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { color: rgba(211, 218, 227, 0.55); } .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { @@ -76,13 +76,13 @@ .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { color: #D3DAE3; } .label:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { opacity: 0.55; } GtkAssistant .sidebar { - background-color: #272A30; + background-color: #292D33; border-top: 1px solid #1d2024; } GtkAssistant .sidebar:dir(ltr) { border-right: 1px solid #1d2024; } @@ -97,7 +97,7 @@ GtkAssistant .sidebar .label.highlight { color: #ffffff; } GtkTextView { - background-color: #2b2f35; } + background-color: #2c3037; } .grid-child { padding: 3px; @@ -140,8 +140,8 @@ GtkTextView { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: #D3DAE3; border-color: #454a54; - background-color: #272A30; - background-image: linear-gradient(to bottom, #272A30); } + background-color: #292D33; + background-image: linear-gradient(to bottom, #292D33); } .header-bar .entry { padding: 6px 11px; } .entry.image { @@ -151,25 +151,25 @@ GtkTextView { padding: 2px; color: #D3DAE3; border-color: #454a54; - background-color: #272A30; - background-image: linear-gradient(to bottom, #272A30); + background-color: #292D33; + background-image: linear-gradient(to bottom, #292D33); border: none; border-radius: 0; } .entry:focus { color: #D3DAE3; border-color: #5294E2; - background-color: #272A30; - background-image: linear-gradient(to bottom, #272A30); } + background-color: #292D33; + background-image: linear-gradient(to bottom, #292D33); } .entry:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); - background-color: rgba(39, 42, 48, 0.55); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + background-color: rgba(41, 45, 51, 0.55); + background-image: linear-gradient(to bottom, rgba(41, 45, 51, 0.55)); } .entry:selected, .entry:selected:focus { background-color: #5294E2; color: #ffffff; } .entry.progressbar { - margin: 2px; + margin: 2px 12px; border-radius: 0; border-width: 0 0 2px; border-color: #5294E2; @@ -191,7 +191,7 @@ GtkTextView { .entry.error { color: white; border-color: #FC4138; - background-image: linear-gradient(to bottom, #d13c36); } + background-image: linear-gradient(to bottom, #d13d37); } .entry.error:focus { background-image: linear-gradient(to bottom, #FC4138); color: white; } @@ -201,7 +201,7 @@ GtkTextView { .entry.warning { color: white; border-color: #F27835; - background-image: linear-gradient(to bottom, #c96834); } + background-image: linear-gradient(to bottom, #c96934); } .entry.warning:focus { background-image: linear-gradient(to bottom, #F27835); color: white; } @@ -209,26 +209,26 @@ GtkTextView { background-color: white; color: #F27835; } .entry.image { - color: #b0b6bf; } + color: #b1b7bf; } .entry.image:hover { color: #D3DAE3; } .entry.image:active { color: #5294E2; } .linked.vertical > .entry { - border-bottom-color: #24272c; + border-bottom-color: #25292e; box-shadow: none; } .linked.vertical > .entry:focus { border-color: #5294E2; box-shadow: 0 -1px 0 0 #5294E2; } .linked.vertical > .entry:insensitive { - border-bottom-color: #24272c; } + border-bottom-color: #25292e; } .linked.vertical > .entry:first-child { - border-bottom-color: #24272c; } + border-bottom-color: #25292e; } .linked.vertical > .entry:first-child:focus { border-bottom-color: #5294E2; box-shadow: none; } .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #24272c; } + border-bottom-color: #25292e; } .linked.vertical > .entry:last-child { border-bottom-color: rgba(0, 0, 0, 0.14); } .linked.vertical > .entry:last-child:focus { @@ -284,7 +284,7 @@ GtkTextView { background-color: transparent; background-image: none; } .button:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .button:insensitive > GtkLabel { @@ -487,7 +487,7 @@ GtkTextView { border-color: #5294E2; background-color: #5294E2; } .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { @@ -632,7 +632,7 @@ GtkTextView { .spinbutton .button:hover { color: #5294E2; } .spinbutton .button:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .spinbutton .button:active { background-color: #5294E2; color: #ffffff; } @@ -652,7 +652,7 @@ GtkTextView { border-color: #5294E2; background-color: #2a2f35; } .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { @@ -673,7 +673,7 @@ GtkTextView { border-color: #5294E2; background-color: #2a2f35; } .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(211, 218, 227, 0.55); + color: rgba(211, 218, 227, 0.45); border-color: rgba(69, 74, 84, 0.55); background-color: rgba(42, 47, 53, 0.55); } .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { @@ -705,7 +705,7 @@ GtkComboBox { padding-top: 3px; padding-bottom: 4px; } GtkComboBox:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { -GtkWidget-wide-separators: true; } GtkComboBox.combobox-entry .entry { @@ -742,14 +742,14 @@ GtkComboBox { background-color: rgba(60, 64, 73, 0.95); } .primary-toolbar { - color: rgba(207, 218, 231, 0.8); + color: rgba(207, 218, 231, 0.7); background-color: #272a30; box-shadow: none; border-width: 0 0 1px 0; border-style: solid; border-image: linear-gradient(to bottom, #272a30, #17191c) 1 0 1 0; } .primary-toolbar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .inline-toolbar { background-color: #282c32; @@ -777,16 +777,16 @@ GtkComboBox { border-width: 0 0 1px; border-style: solid; border-radius: 0; - border-color: #17191c; - color: rgba(207, 218, 231, 0.8); + border-color: #1c1e22; + color: rgba(207, 218, 231, 0.7); background-color: #272a30; } .csd .header-bar { background-color: #272A30; } .header-bar:backdrop { - color: rgba(207, 218, 231, 0.5); - background-color: #2e3138; } + color: rgba(207, 218, 231, 0.4); + background-color: #2a2e34; } .csd .header-bar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .header-bar .title { padding: 0px 12px; } .header-bar .subtitle { @@ -844,36 +844,50 @@ GtkComboBox { .maximized .header-bar { background-color: #272a30; } .maximized .header-bar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .header-bar.default-decoration { padding-top: 5px; padding-bottom: 5px; background-color: #272a30; border-bottom-width: 0; } .header-bar.default-decoration:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .titlebar { padding-left: 7px; padding-right: 7px; border-radius: 4px 4px 0 0; - color: rgba(207, 218, 231, 0.8); + color: rgba(207, 218, 231, 0.7); + background-color: #272a30; box-shadow: inset 0 1px #2e3138; } + .csd .titlebar { + background-color: #272A30; } .titlebar:backdrop { - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); + background-color: #2a2e34; } + .csd .titlebar:backdrop { + background-color: #2a2e34; } + .maximized .titlebar { + background-color: #272a30; } + .maximized .titlebar:backdrop { + background-color: #2a2e34; } + +.titlebar .titlebar, +.titlebar .titlebar:backdrop { + background-color: transparent; } .primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, .header-bar > GtkBox > .separator.vertical { -GtkWidget-wide-separators: true; -GtkWidget-separator-width: 1px; border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.15) 25%, rgba(207, 218, 231, 0.15) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } + border-image: linear-gradient(to bottom, rgba(207, 218, 231, 0) 25%, rgba(207, 218, 231, 0.05) 25%, rgba(207, 218, 231, 0.05) 75%, rgba(207, 218, 231, 0) 75%) 0 1/0 1px stretch; } .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, .header-bar > GtkBox > .separator.vertical:backdrop { opacity: 0.6; } .primary-toolbar .entry, .header-bar .entry { - color: rgba(207, 218, 231, 0.8); - border-color: rgba(207, 218, 231, 0.1); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.9)); + color: rgba(207, 218, 231, 0.7); + border-color: #141619; + background-image: linear-gradient(to bottom, rgba(32, 35, 40, 0.9)); background-color: transparent; } .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { color: inherit; } @@ -885,31 +899,35 @@ GtkComboBox { background-image: linear-gradient(to bottom, #5294E2); background-clip: border-box; } .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(207, 218, 231, 0.35); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + color: rgba(207, 218, 231, 0.25); + background-image: linear-gradient(to bottom, rgba(36, 40, 45, 0.55)); } .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { background-color: #ffffff; color: #5294E2; } + .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { + border-color: #5294E2; + background-image: none; + background-color: transparent; } .primary-toolbar .button, .header-bar .button { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); outline-offset: -3px; background-color: rgba(39, 42, 48, 0); border-color: rgba(39, 42, 48, 0); } .primary-toolbar .button:backdrop, .header-bar .button:backdrop { opacity: 0.7; } .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #5294E2; background-color: #5294E2; } .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(207, 218, 231, 0.35); + color: rgba(207, 218, 231, 0.25); background-color: rgba(39, 42, 48, 0); border-color: rgba(39, 42, 48, 0); } .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { @@ -926,10 +944,10 @@ GtkComboBox { .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { @@ -1008,20 +1026,20 @@ GtkComboBox { .primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { color: #ffffff; } .primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(207, 218, 231, 0.8); } + color: rgba(207, 218, 231, 0.7); } .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { background-color: rgba(255, 255, 255, 0.1); border-color: transparent; } .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); } .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { background-color: rgba(0, 0, 0, 0.1); } .primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(207, 218, 231, 0.2); } + color: rgba(207, 218, 231, 0.1); } .primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(207, 218, 231, 0.8); - border-color: rgba(207, 218, 231, 0.1); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.9)); + color: rgba(207, 218, 231, 0.7); + border-color: #141619; + background-image: linear-gradient(to bottom, rgba(32, 35, 40, 0.9)); background-color: transparent; } .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { color: inherit; } @@ -1030,24 +1048,24 @@ GtkComboBox { border-color: #5294E2; background-image: linear-gradient(to bottom, #5294E2); } .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(207, 218, 231, 0.35); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + color: rgba(207, 218, 231, 0.25); + background-image: linear-gradient(to bottom, rgba(36, 40, 45, 0.55)); } .primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { opacity: 0.75; } .primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(207, 218, 231, 0.15); } + background-color: rgba(207, 218, 231, 0.05); } .primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { opacity: 0.75; } .primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { opacity: 0.75; } .primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.15)); } + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.05)); } .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0.1)); } + background-image: linear-gradient(to bottom, rgba(207, 218, 231, 0)); } .primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #272a30); } + background-image: linear-gradient(to bottom, #282c32); } .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #272a30); } + background-image: linear-gradient(to bottom, #272b31); } /************ * Pathbars * @@ -1083,7 +1101,7 @@ GtkTreeView.view { border-left-color: #a8c9f0; border-top-color: rgba(211, 218, 227, 0.1); } GtkTreeView.view:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } GtkTreeView.view:insensitive:selected { color: #97beed; } GtkTreeView.view.dnd { @@ -1092,7 +1110,7 @@ GtkTreeView.view { border-color: #92b7e2; } GtkTreeView.view.expander { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #7d8289; } + color: #7e838b; } GtkTreeView.view.expander:dir(rtl) { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } GtkTreeView.view.expander:hover { @@ -1116,8 +1134,8 @@ GtkTreeView.view { border-width: 0; } column-header .button { - color: #b0b6bf; - background-color: #272A30; } + color: #b1b7bf; + background-color: #292D33; } column-header .button:hover { color: #5294E2; box-shadow: none; @@ -1132,7 +1150,7 @@ column-header:last-child .button, column-header:last-child.button { column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { transition: none; color: #5294E2; - box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #272A30, inset -1px 0 #272A30; } + box-shadow: inset 1px 1px 0 1px #5294E2, inset -1px 0 0 1px #5294E2, inset 1px 1px #292D33, inset -1px 0 #292D33; } column-header .button, column-header .button:hover, column-header .button:active { padding: 3px 6px; @@ -1141,7 +1159,7 @@ column-header .button, column-header .button:hover, column-header .button:active border-radius: 0; border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } column-header .button:active { - background-color: #272A30; } + background-color: #292D33; } column-header .button:insensitive { border-color: #2F343B; background-image: none; } @@ -1153,9 +1171,9 @@ column-header .button, column-header .button:hover, column-header .button:active -GtkWidget-window-dragging: true; padding: 0px; background-color: #272a30; - color: rgba(207, 218, 231, 0.8); } + color: rgba(207, 218, 231, 0.7); } .menubar:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } .menubar > .menuitem { padding: 6px 8px; border: solid transparent; @@ -1164,14 +1182,14 @@ column-header .button, column-header .button:hover, column-header .button:active background-color: #5294E2; color: #ffffff; } .menubar > .menuitem:insensitive { - color: rgba(207, 218, 231, 0.2); + color: rgba(207, 218, 231, 0.1); border-color: transparent; } .menu, .popup { margin: 4px; padding: 0; border-radius: 0; - background-color: #272A30; + background-color: #22262b; border: 1px solid #1d2024; } .csd .menu, .csd .popup { padding: 4px 0px; @@ -1181,13 +1199,13 @@ column-header .button, column-header .button:hover, column-header .button:active padding: 5px; } .menu .menuitem:hover, .popup .menuitem:hover { color: #D3DAE3; - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); + background-color: rgba(255, 255, 255, 0.05); + border: solid rgba(255, 255, 255, 0.07); border-width: 1px 0 1px 0; } .menu .menuitem:insensitive, .popup .menuitem:insensitive { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator, .popup .menuitem.separator, .popup GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .popup .menuitem.view.separator { - color: rgba(39, 42, 48, 0); } + color: rgba(41, 45, 51, 0); } .menu .menuitem.arrow, .popup .menuitem.arrow { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } .menu .menuitem.arrow:dir(rtl), .popup .menuitem.arrow:dir(rtl) { @@ -1196,11 +1214,11 @@ column-header .button, column-header .button:hover, column-header .button:active border-style: none; border-radius: 0; } .menu.button.top, .popup.button.top { - border-bottom: 1px solid #383b41; } + border-bottom: 1px solid #393e44; } .menu.button.bottom, .popup.button.bottom { - border-top: 1px solid #383b41; } + border-top: 1px solid #393e44; } .menu.button:hover, .popup.button:hover { - background-color: #383b41; } + background-color: #393e44; } .menu.button:insensitive, .popup.button:insensitive { color: transparent; background-color: transparent; @@ -1217,10 +1235,10 @@ column-header .button, column-header .button:hover, column-header .button:active border: 1px solid #121316; border-radius: 3px; background-clip: border-box; - background-color: #272A30; + background-color: #22262b; box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(39, 42, 48, 0); } + color: rgba(41, 45, 51, 0); } .popover > .list, .popover > .view, .popover > .toolbar, @@ -1247,7 +1265,7 @@ column-header .button, column-header .button:hover, column-header .button:active *****************/ .notebook { padding: 0; - background-color: #26292f; + background-color: #282c32; -GtkNotebook-initial-gap: 10; -GtkNotebook-arrow-spacing: 5; -GtkNotebook-tab-curvature: 0; @@ -1267,7 +1285,7 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.frame.left { border-left-width: 0; } .notebook.header { - background-color: #272A30; } + background-color: #292D33; } .notebook.header.frame { border: 1px solid #1d2024; } .notebook.header.frame.top { @@ -1279,13 +1297,13 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook.header.frame.left { border-right-width: 0; } .notebook.header.top { - box-shadow: inset 0 -1px #282c32; } + box-shadow: inset 0 -1px #1f2227; } .notebook.header.bottom { - box-shadow: inset 0 1px #282c32; } + box-shadow: inset 0 1px #1f2227; } .notebook.header.right { - box-shadow: inset 1px 0 #282c32; } + box-shadow: inset 1px 0 #1f2227; } .notebook.header.left { - box-shadow: inset -1px 0 #282c32; } + box-shadow: inset -1px 0 #1f2227; } .notebook tab { border-width: 0; border-style: solid; @@ -1311,9 +1329,9 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-top-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.reorderable-page.top.active-page:hover:hover, .notebook tab.top:active:hover, .notebook tab.top.active-page:hover, .notebook tab.top.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.bottom, .notebook tab.bottom { border-color: transparent; } .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { @@ -1325,9 +1343,9 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-bottom-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.reorderable-page.bottom.active-page:hover:hover, .notebook tab.bottom:active:hover, .notebook tab.bottom.active-page:hover, .notebook tab.bottom.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.right, .notebook tab.right { border-color: transparent; } .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { @@ -1339,9 +1357,9 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-right-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.reorderable-page.right.active-page:hover:hover, .notebook tab.right:active:hover, .notebook tab.right.active-page:hover, .notebook tab.right.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.left, .notebook tab.left { border-color: transparent; } .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { @@ -1353,14 +1371,14 @@ column-header .button, column-header .button:hover, column-header .button:active border-width: 1px; border-left-width: 0; border-color: #1d2024; - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.reorderable-page.left.active-page:hover:hover, .notebook tab.left:active:hover, .notebook tab.left.active-page:hover, .notebook tab.left.active-page:hover:hover { - background-color: rgba(0, 0, 0, 0.02); } + background-color: rgba(0, 0, 0, 0.1); } .notebook tab GtkLabel { padding: 0 2px; - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(211, 218, 227, 0.775); } + color: rgba(211, 218, 227, 0.725); } .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { color: #D3DAE3; } .notebook tab .button { @@ -1373,9 +1391,9 @@ column-header .button, column-header .button:hover, column-header .button:active .notebook tab .button > GtkImage { padding: 2px; } .notebook.arrow { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } .notebook.arrow:hover { - color: rgba(211, 218, 227, 0.775); } + color: rgba(211, 218, 227, 0.725); } .notebook.arrow:active { color: #D3DAE3; } .notebook.arrow:insensitive { @@ -1400,7 +1418,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { margin: 0; background-color: #a1a8b0; - border: 1px solid rgba(255, 255, 255, 0.6); + border: 1px solid rgba(0, 0, 0, 0.3); background-clip: padding-box; } .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { border-style: none; @@ -1414,7 +1432,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { opacity: 0.99; } .scrollbar .trough { - background-color: #25282d; + background-color: #272b30; border: 1px none #1d2024; } .scrollbar .slider { background-color: #70767e; } @@ -1455,7 +1473,7 @@ column-header .button, column-header .button:hover, column-header .button:active .scrollbars-junction.frame { border-color: transparent; border-image: linear-gradient(to bottom, #1d2024 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #25282d; } + background-color: #272b30; } .scrollbars-junction:dir(rtl), .scrollbars-junction.frame:dir(rtl) { border-image-slice: 0 1 0 0; } @@ -1615,7 +1633,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { padding: 1px 2px 4px; outline-offset: 0; } GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { - color: rgba(211, 218, 227, 0.55); } + color: rgba(211, 218, 227, 0.45); } /************ * GtkScale * @@ -1633,7 +1651,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { margin: 3px; } .scale.slider { background-clip: border-box; - background-image: linear-gradient(to bottom, #272A30); + background-image: linear-gradient(to bottom, #292D33); border: 1px solid #5294E2; border-radius: 50%; box-shadow: none; } @@ -1641,7 +1659,7 @@ GtkCheckButton.text-button, GtkRadioButton.text-button { background-image: linear-gradient(to bottom, #5294E2); border-color: #5294E2; } .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #2a2e34); + background-image: linear-gradient(to bottom, #2b3036); border-color: #426896; } .scale.slider:active { background-image: linear-gradient(to bottom, #2679db); @@ -1779,7 +1797,7 @@ GtkScrolledWindow GtkViewport.frame { * Lists * *********/ .list, .list-row { - background-color: #272A30; + background-color: #292D33; border-color: #1d2024; } .list-row, @@ -1820,7 +1838,7 @@ GtkScrolledWindow GtkViewport.frame { border-width: 0 1px 1px; border-style: solid; border-color: rgba(0, 0, 0, 0.2); - background-color: #272A30; + background-color: #292D33; background-clip: padding-box; } /************* @@ -2082,27 +2100,27 @@ GtkVolumeButton.button { .window-frame { border-radius: 4px 4px 0 0; border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 8px 1px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65), 0 4px 8px 1px rgba(0, 0, 0, 0.65); /* this is used for the resize cursor area */ margin: 10px; } .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 5px 2px rgba(0, 0, 0, 0.1); } + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65), 0 4px 5px 2px rgba(0, 0, 0, 0.65); } .window-frame.tiled { border-radius: 0; } .window-frame.ssd { border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } .window-frame.ssd.maximized { border-radius: 0; } .window-frame.csd.popup, .window-frame.csd.menu { border-radius: 3px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } + box-shadow: 0 3px 6px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 0, 0, 0.65); } .window-frame.csd.tooltip { border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.65); } .window-frame.csd.message-dialog { border-radius: 3px; - box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); } + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.65); } .window-frame.solid-csd { border-radius: 0; margin: 1px; @@ -2123,10 +2141,10 @@ GtkVolumeButton.button { border-width: 0; } .header-bar .button.titlebutton:hover, .titlebar .button.titlebutton:hover { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, .titlebar .button.titlebutton:active, .titlebar .button.titlebutton:checked { @@ -2265,7 +2283,7 @@ GtkVolumeButton.button { background-position: right center; } GtkHTML { - background-color: #272A30; + background-color: #292D33; color: #D3DAE3; } GtkHTML:active { color: #ffffff; @@ -2281,18 +2299,18 @@ TerminalWindow .notebook tab.reorderable-page:hover { padding-top: 4px; padding-bottom: 4px; } TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #17191c, inset 0 -1px #282c32; } + box-shadow: inset 0 1px #1c1e22, inset 0 -1px #1f2227; } TerminalWindow .notebook tab .active-page GtkLabel { - color: rgba(207, 218, 231, 0.8); } + color: rgba(207, 218, 231, 0.7); } TerminalWindow .notebook tab .active-page GtkLabel:backdrop { - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); } TerminalWindow .notebook tab.reorderable-page.top:hover { - border-bottom-color: #17191c; } + border-bottom-color: #1c1e22; } TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebook tab.reorderable-page.top:active:hover { background-color: #272a30; - border-color: #17191c; } + border-color: #1c1e22; } TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { - background-color: #2e3138; } + background-color: #2a2e34; } TerminalWindow .scrollbar.vertical .slider { margin-left: 3px; } TerminalWindow .scrollbar.trough { @@ -2320,7 +2338,7 @@ NautilusCanvasViewContainer.view .entry, NemoIconViewContainer .entry { color: #dce9f9; } NautilusNotebook.notebook { - background-color: #272A30; } + background-color: #292D33; } NautilusNotebook.notebook tab { border-width: 0; border-style: solid; @@ -2355,10 +2373,10 @@ NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sideba color: #1d2024; } NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(207, 218, 231, 0.8); - outline-color: rgba(207, 218, 231, 0.1); - border-color: rgba(207, 218, 231, 0.1); - background-color: rgba(42, 47, 53, 0.9); } + color: rgba(207, 218, 231, 0.7); + outline-color: rgba(207, 218, 231, 0); + border-color: #1b1d21; + background-color: rgba(36, 39, 45, 0.9); } NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { border-color: #5294E2; } NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { @@ -2368,11 +2386,11 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { background-color: #5294E2; } .gedit-headerbar-paned { - color: #17191c; } + color: #1c1e22; } .open-document-selector-treeview.view { padding: 3px 6px 3px 6px; - border-color: #272A30; } + border-color: #292D33; } .open-document-selector-treeview.view:prelight { background-color: rgba(0, 0, 0, 0.05); } .open-document-selector-treeview.view:prelight:selected { @@ -2385,7 +2403,7 @@ NemoWindow .primary-toolbar NemoPathBar.linked > .button { /* Only normal state is handle */ .open-document-selector-path-label { - color: #7d8289; + color: #7e838b; font-size: smaller; } .open-document-selector-path-label:selected { color: rgba(255, 255, 255, 0.9); } @@ -2448,7 +2466,7 @@ GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-color: rgba(207, 218, 231, 0.1); + border-color: rgba(207, 218, 231, 0); background-color: rgba(42, 47, 53, 0.9); } GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { @@ -2674,9 +2692,9 @@ MarlinViewWindow *:selected:focus { .marlin-pathbar.pathbar { border-radius: 14.5px; - color: rgba(207, 218, 231, 0.8); - border-color: rgba(207, 218, 231, 0.1); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.9)); + color: rgba(207, 218, 231, 0.7); + border-color: #141619; + background-image: linear-gradient(to bottom, rgba(32, 35, 40, 0.9)); background-color: transparent; } .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { color: inherit; } @@ -2685,8 +2703,8 @@ MarlinViewWindow *:selected:focus { border-color: #5294E2; background-image: linear-gradient(to bottom, #5294E2); } .marlin-pathbar.pathbar:insensitive { - color: rgba(207, 218, 231, 0.35); - background-image: linear-gradient(to bottom, rgba(39, 42, 48, 0.55)); } + color: rgba(207, 218, 231, 0.25); + background-image: linear-gradient(to bottom, rgba(36, 40, 45, 0.55)); } .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { color: #5294E2; } @@ -2694,7 +2712,7 @@ MarlinViewWindow *:selected:focus { border: 1px solid rgba(0, 0, 0, 0.35); border-radius: 3px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, #272A30); + background-image: linear-gradient(to bottom, #292D33); background-color: transparent; } .gala-notification .title, .gala-notification .label { color: #D3DAE3; } @@ -2760,10 +2778,8 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } - PantheonTerminalPantheonTerminalWindow.background .titlebar { - background-color: #272A30; } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #17191c, inset 0 -1px #282c32; } + box-shadow: inset 0 1px #1c1e22, inset 0 -1px #1f2227; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { @@ -2789,12 +2805,12 @@ UnityDecoration { border-radius: 4px 4px 0 0; padding: 1px 6px 0 6px; background-image: linear-gradient(to bottom, #272a30); - color: rgba(207, 218, 231, 0.8); + color: rgba(207, 218, 231, 0.7); box-shadow: inset 0 1px #2e3138; } UnityDecoration.top:backdrop { border-bottom-width: 0; background-image: linear-gradient(to bottom, #2e3138); - color: rgba(207, 218, 231, 0.5); } + color: rgba(207, 218, 231, 0.4); } UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } @@ -2912,7 +2928,7 @@ GraniteWidgetsStaticNotebook .frame { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } GraniteWidgetsWelcome { - background-color: #272A30; } + background-color: #292D33; } GraniteWidgetsWelcome GtkLabel { color: #81878f; @@ -2936,7 +2952,7 @@ GraniteWidgetsPopOver { margin: 0; } .popover_bg { - background-image: linear-gradient(to bottom, #272A30); + background-image: linear-gradient(to bottom, #292D33); border: 1px solid rgba(0, 0, 0, 0.3); } GraniteWidgetsPopOver .sidebar.view, @@ -3138,7 +3154,7 @@ GeditWindow.background.csd { background-color: #17191c; } .gedit-bottom-panel-paned { - background-color: #272A30; } + background-color: #292D33; } .gedit-document-panel { background-color: #3c4049; } @@ -3240,32 +3256,32 @@ GtkFileChooserDialog .action-bar.frame { @define-color theme_fg_color #D3DAE3; @define-color theme_text_color #D3DAE3; @define-color theme_bg_color #2F343B; -@define-color theme_base_color #272A30; +@define-color theme_base_color #292D33; @define-color theme_selected_bg_color #5294E2; @define-color theme_selected_fg_color #ffffff; @define-color fg_color #D3DAE3; @define-color text_color #D3DAE3; @define-color bg_color #2F343B; -@define-color base_color #272A30; +@define-color base_color #292D33; @define-color selected_bg_color #5294E2; @define-color selected_fg_color #ffffff; @define-color insensitive_bg_color #343941; -@define-color insensitive_fg_color rgba(211, 218, 227, 0.55); -@define-color insensitive_base_color #272A30; +@define-color insensitive_fg_color rgba(211, 218, 227, 0.45); +@define-color insensitive_base_color #292D33; @define-color theme_unfocused_fg_color #D3DAE3; @define-color theme_unfocused_text_color #D3DAE3; @define-color theme_unfocused_bg_color #2F343B; -@define-color theme_unfocused_base_color #272A30; +@define-color theme_unfocused_base_color #292D33; @define-color borders #1d2024; @define-color unfocused_borders #1d2024; @define-color warning_color #F27835; @define-color error_color #FC4138; @define-color success_color #73d216; @define-color placeholder_text_color #A8A8A8; -@define-color wm_title rgba(207, 218, 231, 0.8); -@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.8), 0.7); +@define-color wm_title rgba(207, 218, 231, 0.7); +@define-color wm_unfocused_title alpha(rgba(207, 218, 231, 0.7), 0.7); @define-color wm_bg #272a30; @define-color wm_bg_unfocused #2e3138; @define-color wm_highlight #30343b; @define-color wm_shadow alpha(black, 0.35); -@define-color content_view_bg #272A30; +@define-color content_view_bg #292D33; diff --git a/common/gtk-3.0/3.16/gtk-contained-solid.css b/common/gtk-3.0/3.16/gtk-contained-solid.css index 068fb53..1bae3d3 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid.css +++ b/common/gtk-3.0/3.16/gtk-contained-solid.css @@ -864,7 +864,7 @@ GtkComboBox { background-color: #e7e8eb; } .titlebar:backdrop { color: rgba(82, 93, 118, 0.5); - background-color: #e7e8eb; } + background-color: #eff0f2; } .csd .titlebar:backdrop { background-color: #eff0f2; } .maximized .titlebar { diff --git a/common/gtk-3.0/3.16/gtk-contained.css b/common/gtk-3.0/3.16/gtk-contained.css index 4289ee0..48f71d2 100644 --- a/common/gtk-3.0/3.16/gtk-contained.css +++ b/common/gtk-3.0/3.16/gtk-contained.css @@ -864,7 +864,7 @@ GtkComboBox { background-color: rgba(231, 232, 235, 0.95); } .titlebar:backdrop { color: rgba(82, 93, 118, 0.5); - background-color: #e7e8eb; } + background-color: #eff0f2; } .csd .titlebar:backdrop { background-color: rgba(239, 240, 242, 0.95); } .maximized .titlebar { @@ -2310,7 +2310,7 @@ TerminalWindow .notebook tab.reorderable-page.top:active, TerminalWindow .notebo background-color: #e7e8eb; border-color: #d4d5db; } TerminalWindow .notebook tab.reorderable-page.top:active:backdrop, TerminalWindow .notebook tab.reorderable-page.top:active:hover:backdrop { - background-color: rgba(239, 240, 242, 0.95); } + background-color: #eff0f2; } TerminalWindow .scrollbar.vertical .slider { margin-left: 3px; } TerminalWindow .scrollbar.trough { @@ -2779,7 +2779,7 @@ MarlinViewWindow *:selected:focus { PantheonTerminalPantheonTerminalWindow.background { background-color: transparent; } PantheonTerminalPantheonTerminalWindow.background .notebook.header.top { - box-shadow: inset 0 1px #d4d5db, inset 0 -1px #edf0f3; } + box-shadow: inset 0 1px rgba(212, 213, 219, 0.95), inset 0 -1px #edf0f3; } SwitchboardCategoryView .view:selected, SwitchboardCategoryView .view:selected:focus { |