ui-style.h 298 B

123456789101112131415161718192021
  1. #ifndef UI_STYLE_H_GUARD_
  2. #define UI_STYLE_H_GUARD_
  3. #include "raylib.h"
  4. typedef struct UIStyle
  5. {
  6. Color text;
  7. Color compBad;
  8. Color compGood;
  9. } UIStyle;
  10. const UIStyle StyleDefault =
  11. {
  12. .text = { 80, 80, 80, 255 },
  13. .compBad = { 175, 55, 55, 255 },
  14. .compGood = { 54, 146, 51, 255 },
  15. };
  16. #endif