mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-25 09:23:08 +01:00
sequences: Set cursor color to foreground.
This commit is contained in:
parent
5de1243623
commit
17ed8de4dd
@ -28,7 +28,7 @@ def colors_to_dict(colors, img):
|
||||
"special": {
|
||||
"background": colors[0],
|
||||
"foreground": colors[15],
|
||||
"cursor": colors[1]
|
||||
"cursor": colors[15]
|
||||
},
|
||||
|
||||
"colors": {
|
||||
|
@ -2,7 +2,7 @@
|
||||
"special": {
|
||||
"background": "#282828",
|
||||
"foreground": "#a89984",
|
||||
"cursor": "#cc241d"
|
||||
"cursor": "#a89984"
|
||||
},
|
||||
"colors": {
|
||||
"color0": "#282828",
|
||||
|
@ -51,7 +51,7 @@ def create_sequences(colors):
|
||||
# 13 = mouse foreground
|
||||
sequences.extend([set_special(10, colors["special"]["foreground"], "g"),
|
||||
set_special(11, colors["special"]["background"], "h"),
|
||||
set_special(12, colors["colors"]["color9"], "l"),
|
||||
set_special(12, colors["special"]["cursor"], "l"),
|
||||
set_special(13, colors["special"]["foreground"], "l"),
|
||||
set_special(17, colors["special"]["foreground"], "l"),
|
||||
set_special(19, colors["special"]["background"], "l")])
|
||||
|
Loading…
Reference in New Issue
Block a user