New UX, More settings, reorganise code

This commit is contained in:
Niellune
2025-05-30 14:35:48 +03:00
parent e16b5d4af3
commit 6f6e127095
23 changed files with 678 additions and 454 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 40 KiB

+16
View File
@@ -0,0 +1,16 @@
#ifndef SRC_RESOURCE_COLORS
#define SRC_RESOURCE_COLORS
#include <SDL2/SDL.h>
const SDL_Color color1_inactive = {255, 255, 255, 80};
const SDL_Color color2_inactive = {255, 255, 255, 80};
const SDL_Color color3_inactive = {255, 255, 255, 80};
const SDL_Color color4_inactive = {255, 255, 255, 80};
const SDL_Color color1 = {255, 87, 137, 255};
const SDL_Color color2 = {135, 98, 255, 255};
const SDL_Color color3 = {94, 228, 255, 255};
const SDL_Color color4 = {93, 255, 197, 255};
const SDL_Color colorError = {255, 83, 64, 255};
#endif /* SRC_RESOURCE_COLORS */