#include <raylib.h>

class BackGroundColors
{
public:
  static void setColor(int color, int time);
  static Color backGroundColor;

  static Color MountenColor1;
  static Color MountenColor2;
  static Color MountenColor3;
  constexpr static Color moonColor = {240, 240, 190, 255};
  constexpr static Color starColor = WHITE;
};