123456789101112131415161718192021 |
- #ifndef UI_STYLE_H_GUARD_
- #define UI_STYLE_H_GUARD_
- #include "raylib.h"
- typedef struct UIStyle
- {
- Color text;
- Color compBad;
- Color compGood;
- } UIStyle;
- const UIStyle StyleDefault =
- {
- .text = { 80, 80, 80, 255 },
- .compBad = { 175, 55, 55, 255 },
- .compGood = { 54, 146, 51, 255 },
- };
- #endif
|