Constants.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShowSeconds.Common
  7. {
  8. public class Constants
  9. {
  10. public readonly static string MY_UUID = "8400A17AEEF7C029";
  11. //dark theam
  12. public readonly static System.Windows.Media.SolidColorBrush darkBG
  13. = new System.Windows.Media.SolidColorBrush
  14. {
  15. Color = System.Windows.Media.Color.FromRgb(46, 50, 54),
  16. Opacity = 0.8
  17. };
  18. public readonly static System.Windows.Media.SolidColorBrush darkFont
  19. = new System.Windows.Media.SolidColorBrush
  20. {
  21. Color = System.Windows.Media.Color.FromRgb(255, 255, 255)
  22. };
  23. //light theam
  24. public readonly static System.Windows.Media.SolidColorBrush lightBG
  25. = new System.Windows.Media.SolidColorBrush
  26. {
  27. Color = System.Windows.Media.Color.FromRgb(236, 244, 251),
  28. Opacity = 1
  29. };
  30. public readonly static System.Windows.Media.SolidColorBrush lightFont
  31. = new System.Windows.Media.SolidColorBrush
  32. {
  33. Color = System.Windows.Media.Color.FromRgb(65, 63, 61),
  34. };
  35. }
  36. }