Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Better contrast #429

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
32 changes: 16 additions & 16 deletions src/Mint-Y/cinnamon/cinnamon-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ stage {
transition-duration: 300ms;
border-radius: 3px;
color: #D3D3D3;
background-color: #404040;
background-color: #202020;
border: 1px solid #202020;
box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); }
#menu-search-entry:focus, .popup-menu #notification StEntry:focus, #menu-search-entry:hover, .popup-menu #notification StEntry:hover {
color: rgba(255, 255, 255, 0.87);
background-color: #404040;
background-color: #202020;
border: 1px solid #35a854;
box-shadow: inset 0 2px 4px rgba(64, 64, 64, 0.05); }
#menu-search-entry:insensitive, .popup-menu #notification StEntry:insensitive {
Expand Down Expand Up @@ -225,7 +225,7 @@ StScrollBar {
color: rgba(255, 255, 255, 0.87);
border: 1px solid #202020;
border-radius: 3px;
background-color: rgba(47, 47, 47, 0.99); }
background-color: #1C1C1C; }
.menu.top {
border-radius: 0 0 3px 3px; }
.menu.bottom {
Expand Down Expand Up @@ -257,7 +257,7 @@ StScrollBar {
border-right-width: 0; }
.popup-menu-item:active {
color: #ffffff;
background-color: #525352; }
background-color: #292929; }
.popup-menu-item:insensitive {
color: rgba(255, 255, 255, 0.37);
background: none; }
Expand Down Expand Up @@ -452,7 +452,7 @@ StScrollBar {
.panel-top, .panel-bottom, .panel-left, .panel-right {
color: #ffffff;
border: none;
background-color: rgba(47, 47, 47, 0.99);
background-color: #1C1C1C;
font-size: 1em;
padding: 0px; }

Expand Down Expand Up @@ -614,7 +614,7 @@ StScrollBar {
padding: .5em;
min-width: 350px;
border: 1px solid #202020;
background-color: #404040; }
background-color: #242424; }

.calendar-events-no-events-button {
margin: 6px 0 6px 0;
Expand Down Expand Up @@ -1110,15 +1110,15 @@ StScrollBar {
.menu-favorites-box {
padding: 10px;
transition-duration: 300;
background-color: #333333;
border: 1px solid #202020; }
background-color: #242424;
border: 1px solid #191919; }

.menu-favorites-button {
padding: .9em 1em;
border: 1px solid rgba(0, 0, 0, 0);
border-radius: 2px; }
.menu-favorites-button:hover {
background-color: #525352; }
background-color: #313131; }

.menu-places-box {
padding: 10px;
Expand All @@ -1141,7 +1141,7 @@ StScrollBar {
.menu-application-button-selected {
padding: 7px;
color: #ffffff;
background-color: #525352;
background-color: #292929;
border: 1px solid #202020; }
.menu-application-button-selected:highlighted {
font-weight: bold; }
Expand All @@ -1156,7 +1156,7 @@ StScrollBar {
.menu-category-button-selected {
padding: 7px;
color: #ffffff;
background-color: #525352;
background-color: #292929;
border: 1px solid #202020; }
.menu-category-button-hover {
background-color: red;
Expand Down Expand Up @@ -1336,7 +1336,7 @@ StScrollBar {
padding-left: 1px; }
.grouped-window-list-item-box:hover, .grouped-window-list-item-box:focus {
color: rgba(255, 255, 255, 0.87);
background-color: rgba(255, 255, 255, 0.17); }
background-color: rgba(255, 255, 255, 0.1); }
.grouped-window-list-item-box:active, .grouped-window-list-item-box:checked {
color: rgba(255, 255, 255, 0.87);
border-color: #35a854; }
Expand Down Expand Up @@ -1370,7 +1370,7 @@ StScrollBar {
.grouped-window-list-thumbnail-menu {
color: rgba(255, 255, 255, 0.87);
border: 1px solid #202020;
background-color: #2f2f2f;
background-color: #242424;
border-radius: 3px;
padding: 0px; }
.grouped-window-list-thumbnail-menu > StBoxLayout {
Expand Down Expand Up @@ -1616,7 +1616,7 @@ StScrollBar {
padding-bottom: 3px; }
.applet-box:hover, .applet-box:checked {
color: #ffffff;
background-color: #525352; }
background-color: #292929; }
.applet-box:highlight {
background-image: none;
border-image: none;
Expand Down Expand Up @@ -1651,11 +1651,11 @@ StScrollBar {

.applet-cornerbar {
width: 8px;
background-color: rgba(255, 255, 255, 0.12); }
background-color: rgba(255, 255, 255, 0.1); }
.applet-cornerbar-box {
padding: 4px 4px; }
.applet-cornerbar-box:hover > .applet-cornerbar {
background-color: rgba(255, 255, 255, 0.22); }
background-color: rgba(255, 255, 255, 0.17); }
.applet-cornerbar.vertical {
height: 8px; }

Expand Down