blob: 9d3dae37c6cc819a85cff6e37207d348c93538a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
*
* name: Grayscale Light
* author: Alexandre Gavioli (https://github.com/Alexx2/)
* slug: grayscale-light
* slug-underscored: grayscale_light
* system: base16
* variant: light
* is-light-variant: true
*
*/
window {
background-color: #f7f7f7;
border-color: #686868;
}
button,
image {
color: #525252;
}
button:hover {
background-color: rgba(16, 16, 16, 0.15);
}
|