customProfiles.tscript 588 B

123456789101112131415161718192021222324252627282930
  1. new GuiControlProfile (GuiEventBackgroundProfile)
  2. {
  3. justify = "left";
  4. fontSize = 18;
  5. fontColor = "225 225 225 255";
  6. opaque = true;
  7. fillColor = "20 20 20 225";
  8. };
  9. new GuiControlProfile (GuiEventBorderProfile)
  10. {
  11. opaque = false;
  12. border = 1;
  13. borderColor = "225 225 225 255";
  14. };
  15. new GuiControlProfile (GuiEventTextProfile)
  16. {
  17. justify = "left";
  18. fontSize = 18;
  19. fontColor = "225 225 225 255";
  20. };
  21. new GuiControlProfile (GuiEventCheckboxProfile : GuiCheckBoxProfile)
  22. {
  23. fontSize = 18;
  24. fontColor = "225 225 225 255";
  25. fontColorHL ="141 204 249 255";
  26. };