blob: c2884dc87041c0ea5aba64ff0afd64f18caa99b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Original theme author: Newman Sanchez (https://github.com/newmanls) */
/* The theme is adjusted to no longer be rounded */
@theme "/dev/null"
* {
fg0: #E6EEF2; /* primary text (light) */
fg1: #C9D0D3; /* secondary text */
fg2: #9DA4A7; /* prompt / muted text */
fg3: #858B8E; /* placeholder / subtle */
bg0: #6b6b6b; /* window background (a bit lighter) */
bg1: #4C4C4C; /* inputbar & list background */
bg2: #6B6B6B; /* hover / message panel */
bg3: #4C4C4C; /* selected element background (lighter than before) */
}
@import "shape.rasi"
element selected {
text-color: @bg1;
}
|