blob: a15d9a4c911fc94a3523cc5a6f6958ec03b15e8b (
plain) (
blame)
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
26
27
28
29
30
31
32
33
34
35
36
|
/* -- Deep Purple -- */
* {
shade1: #311B92;
shade2: #4527A0;
shade3: #512DA8;
shade4: #5E35B1;
shade5: #673AB7;
shade6: #7E57C2;
shade7: #9575CD;
shade8: #B39DDB;
}
/**** Comment One First To Use Another ****/
/* -- Dark -- */
* {
border: @shade1;
border-alt: @shade2;
background: @shade3;
background-alt: @shade3;
selected: @shade4;
foreground: #ffffff;
urgent: #DA4453;
}
/* -- light -- */
* {
border: @shade8;
border-alt: @shade7;
background: @shade6;
background-alt: @shade6;
selected: @shade5;
foreground: #ffffff;
urgent: #DA4453;
}
|