TETRIS: change menu background, slightly alter checking for full lines

This commit is contained in:
2020-09-11 21:54:45 +02:00
parent bd60a8bf59
commit 0a06e1d841
4 changed files with 7 additions and 8 deletions
+3 -3
View File
@@ -22,7 +22,7 @@ std::map<std::string, std::map<std::string, std::string>> color_schemes = {
{"barrier", "#AA0000"},
{"text", "#FFFFFF"},
{"text_out", "#000000"},
{"menu_background", "#00000080"},
{"menu_background", "#000000BB"},
{"menu_item_background", "#FFFFFF40"},
}},
{ "gruvbox_dark", {
@@ -46,7 +46,7 @@ std::map<std::string, std::map<std::string, std::string>> color_schemes = {
{"barrier", "#d65d0e"},
{"text", "#ebdbb2"},
{"text_out", "#1d2021"},
{"menu_background", "#28282880"},
{"menu_background", "#282828BB"},
{"menu_item_background", "#d5c4a180"},
}},
{ "blackandwhite", {
@@ -70,7 +70,7 @@ std::map<std::string, std::map<std::string, std::string>> color_schemes = {
{"barrier", "#FFFFFF"},
{"text", "#FFFFFF"},
{"text_out", "#000000"},
{"menu_background", "#00000080"},
{"menu_background", "#000000BB"},
{"menu_item_background", "#FFFFFF40"},
}},
};