blob: 0022b4a590d94649c589741f78183ea6e430a341 (
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: Shades of Purple
* author: Iolar Demartini Junior (http://github.com/demartini), based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode)
* slug: shades-of-purple
* slug-underscored: shades_of_purple
* system: base16
* variant: dark
* is-dark-variant: true
*
*/
window {
background-color: #1e1e3f;
border-color: #6943ff;
}
button,
image {
color: #6871ff;
}
button:hover {
background-color: rgba(255, 255, 255, 0.4);
}
|