3D buttons, to make UI clearer

This commit is contained in:
furrtek
2016-12-09 02:35:50 +01:00
parent 843c465c73
commit 75e8a664b0
13 changed files with 63 additions and 36 deletions

View File

@@ -92,10 +92,18 @@ struct Color {
return { 255, 255, 255 };
}
static constexpr Color grey() {
static constexpr Color light_grey() {
return { 127, 127, 127 };
}
static constexpr Color grey() {
return { 91, 91, 91 };
}
static constexpr Color dark_grey() {
return { 63, 63, 63 };
}
static constexpr Color purple() {
return { 204, 0, 102 };
}