blob: ef451c8f2cbf48df0a3ea805ce07d093ba63b9e4 (
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
26
27
28
29
30
31
32
33
34
35
|
# Base16 Pico
# Author: PICO-8 (http://www.lexaloffle.com/pico-8.php)
set default-bg "#000000"
set default-fg "#1d2b53"
set statusbar-fg "#ab5236"
set statusbar-bg "#7e2553"
set inputbar-bg "#000000"
set inputbar-fg "#fff1e8"
set notification-bg "#000000"
set notification-fg "#fff1e8"
set notification-error-bg "#000000"
set notification-error-fg "#ff004d"
set notification-warning-bg "#000000"
set notification-warning-fg "#ff004d"
set highlight-color "#fff024"
set highlight-active-color "#83769c"
set completion-bg "#1d2b53"
set completion-fg "#83769c"
set completion-highlight-fg "#fff1e8"
set completion-highlight-bg "#83769c"
set recolor-lightcolor "#000000"
set recolor-darkcolor "#c2c3c7"
set recolor "false"
set recolor-keephue "false"
|