theme: Made wal themes more compatible

This commit is contained in:
Dylan Araps 2018-03-16 09:32:43 +11:00
parent 9ec4344ec6
commit 7260145e11
3 changed files with 29 additions and 4 deletions

View File

@ -5,14 +5,14 @@
"cursor": "#970b16" "cursor": "#970b16"
}, },
"colors": { "colors": {
"color0": "#3e3e3e", "color0": "#ffffff",
"color1": "#970b16", "color1": "#970b16",
"color2": "#07962a", "color2": "#07962a",
"color3": "#f8eec7", "color3": "#f8eec7",
"color4": "#003e8a", "color4": "#003e8a",
"color5": "#e94691", "color5": "#e94691",
"color6": "#89d1ec", "color6": "#89d1ec",
"color7": "#ffffff", "color7": "#3e3e3e",
"color8": "#666666", "color8": "#666666",
"color9": "#de0000", "color9": "#de0000",
"color10": "#87d5a2", "color10": "#87d5a2",
@ -20,6 +20,6 @@
"color12": "#2e6cba", "color12": "#2e6cba",
"color13": "#ffa29f", "color13": "#ffa29f",
"color14": "#1cfafe", "color14": "#1cfafe",
"color15": "#ffffff" "color15": "#3e3e3e"
} }
} }

View File

@ -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"
}
}

View File

@ -50,7 +50,7 @@ def create_sequences(colors):
# 13 = mouse foreground # 13 = mouse foreground
sequences.extend([set_special(10, colors["special"]["foreground"], "g"), sequences.extend([set_special(10, colors["special"]["foreground"], "g"),
set_special(11, colors["special"]["background"], "h"), 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(13, colors["special"]["foreground"], "l"),
set_special(17, colors["special"]["foreground"], "l"), set_special(17, colors["special"]["foreground"], "l"),
set_special(19, colors["special"]["background"], "l")]) set_special(19, colors["special"]["background"], "l")])