A simple GTK theme made originally for Linux Mint by combining Adwaita and Graphite.
To install just download the repository and put one of the theme variants in ~/.themes
.
Currently the theme doesn't change the colors of Cinnamon apps like Calculator or Screenshot due to Adwaita not generating the colours for Cinnamon specifically.
Here is some css for improved desktop font shadows on brighter wallpapers. Just put at the end of ~/.config/gtk-3.0/gtk.css
the css code.
.nemo-desktop.nemo-canvas-item {
color: #fff;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 1),
1px 1px 2px rgba(0, 0, 0, 1),
0px 0px 2px rgba(0, 0, 0, 1),
0px 0px 3px rgba(0, 0, 0, 1);
}
.nemo-desktop.nemo-canvas-item:selected {
color: #fff;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.85);
box-shadow: none;
}
.nemo-desktop.nemo-canvas-item:hover {
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.85);
}