diff options
| -rw-r--r-- | pywal/sequences.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 9e7a3dc..cf5aae7 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -34,6 +34,10 @@ def create_sequences(colors, vte): sequences = [set_color(num, col) for num, col in enumerate(colors["colors"].values())] + # Set a blank color that isn't affected by bold highlighting. + # Used in wal.vim's airline theme. + sequences.append(set_color(66, colors["special"]["background"])) + # Special colors. # Source: https://goo.gl/KcoQgP # 10 = foreground, 11 = background, 12 = cursor foregound @@ -43,10 +47,6 @@ def create_sequences(colors, vte): sequences.append(set_special(12, colors["special"]["cursor"], "l")) sequences.append(set_special(13, colors["special"]["cursor"], "l")) - # Set a blank color that isn't affected by bold highlighting. - # Used in wal.vim's airline theme. - sequences.append(set_color(66, colors["special"]["background"])) - # This escape sequence doesn"t work in VTE terminals. if not vte: sequences.append(set_special(708, colors["special"]["background"])) |