diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-03-16 09:32:43 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-03-16 09:32:43 +1100 |
| commit | 7260145e11d1eb00f26dac1ff464ca0fd270d2d8 (patch) | |
| tree | f5d2cdface95020a1997c1ec9412cd977b9f1543 | |
| parent | 9ec4344ec6e429f9f16298f067bc62834eaea92b (diff) | |
theme: Made wal themes more compatible
| -rw-r--r-- | pywal/colorschemes/github.json | 6 | ||||
| -rw-r--r-- | pywal/colorschemes/hybrid-material.json | 25 | ||||
| -rw-r--r-- | pywal/sequences.py | 2 |
3 files changed, 29 insertions, 4 deletions
diff --git a/pywal/colorschemes/github.json b/pywal/colorschemes/github.json index e154814..28f555f 100644 --- a/pywal/colorschemes/github.json +++ b/pywal/colorschemes/github.json @@ -5,14 +5,14 @@ "cursor": "#970b16" }, "colors": { - "color0": "#3e3e3e", + "color0": "#ffffff", "color1": "#970b16", "color2": "#07962a", "color3": "#f8eec7", "color4": "#003e8a", "color5": "#e94691", "color6": "#89d1ec", - "color7": "#ffffff", + "color7": "#3e3e3e", "color8": "#666666", "color9": "#de0000", "color10": "#87d5a2", @@ -20,6 +20,6 @@ "color12": "#2e6cba", "color13": "#ffa29f", "color14": "#1cfafe", - "color15": "#ffffff" + "color15": "#3e3e3e" } } diff --git a/pywal/colorschemes/hybrid-material.json b/pywal/colorschemes/hybrid-material.json new file mode 100644 index 0000000..a5dd5a7 --- /dev/null +++ b/pywal/colorschemes/hybrid-material.json @@ -0,0 +1,25 @@ +{ + "special": { + "background": "#263238", + "foreground": "#ffffff", + "cursor": "#cc6666" + }, + "colors": { + "color0": "#263238", + "color1": "#cc6666", + "color2": "#f0c674", + "color3": "#b5bd68", + "color4": "#8abeb7", + "color5": "#81a2be", + "color6": "#b294bb", + "color7": "#ffffff", + "color8": "#707880", + "color9": "#cc6666", + "color10": "#f0c674", + "color11": "#b5bd68", + "color12": "#8abeb7", + "color13": "#81a2be", + "color14": "#b294bb", + "color15": "#ffffff" + } +} diff --git a/pywal/sequences.py b/pywal/sequences.py index 1b2fce5..ecb79e3 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -50,7 +50,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"]["color1"], "l"), + set_special(12, colors["colors"]["color9"], "l"), set_special(13, colors["special"]["foreground"], "l"), set_special(17, colors["special"]["foreground"], "l"), set_special(19, colors["special"]["background"], "l")]) |
