diff options
| author | Dylan Araps <[email protected]> | 2017-07-31 14:44:25 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-07-31 14:44:25 +1000 |
| commit | 7f49f954392e2c9a449935634a4d1f9e814bd571 (patch) | |
| tree | c324951f5f68f24c93facdf57e7cc4b057fddba7 | |
| parent | colors: Fix bug with brighter backgrounds (diff) | |
| download | pywal-7f49f954392e2c9a449935634a4d1f9e814bd571.tar.xz pywal-7f49f954392e2c9a449935634a4d1f9e814bd571.zip | |
sequences: Fix foreground color on mac
| -rw-r--r-- | pywal/sequences.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 757fd95..9e7a3dc 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -7,7 +7,7 @@ from .settings import CACHE_DIR, OS from . import util -def set_special(index, color, iterm_name="g"): +def set_special(index, color, iterm_name="h"): """Convert a hex color to a special sequence.""" alpha = util.Color.alpha_num |