diff options
Diffstat (limited to 'pywal/sequences.py')
| -rw-r--r-- | pywal/sequences.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 77eace3..4f14234 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -9,6 +9,11 @@ from . import util def set_special(index, color): """Convert a hex color to a special sequence.""" + alpha = util.Color.alpha_num + + if index in [11, 708] and alpha != 100: + return f"\033]{index};[{alpha}]{color}\007" + return f"\033]{index};{color}\007" |
