Colors.cs 695 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace InfoTrack
  7. {
  8. class Colors
  9. {
  10. // Темный
  11. static public int nonActiveBtn_r = 33;
  12. static public int nonActiveBtn_g = 30;
  13. static public int nonActiveBtn_b = 33;
  14. // Белый
  15. static public int nonActiveBtnBorder_r = 240;
  16. static public int nonActiveBtnBorder_g = 241;
  17. static public int nonActiveBtnBorder_b = 240;
  18. // Зеленый
  19. static public int ActiveBtn_r = 126;
  20. static public int ActiveBtn_g = 47;
  21. static public int ActiveBtn_b = 236;
  22. }
  23. }