UiThemes.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System.Collections.Generic;
  2. namespace WeApp.BaseSystem.Configuration.Ui
  3. {
  4. public static class UiThemes
  5. {
  6. public static List<UiThemeInfo> All { get; }
  7. static UiThemes()
  8. {
  9. All = new List<UiThemeInfo>
  10. {
  11. new UiThemeInfo("Red", "red"),
  12. new UiThemeInfo("Pink", "pink"),
  13. new UiThemeInfo("Purple", "purple"),
  14. new UiThemeInfo("Deep Purple", "deep-purple"),
  15. new UiThemeInfo("Indigo", "indigo"),
  16. new UiThemeInfo("Blue", "blue"),
  17. new UiThemeInfo("Light Blue", "light-blue"),
  18. new UiThemeInfo("Cyan", "cyan"),
  19. new UiThemeInfo("Teal", "teal"),
  20. new UiThemeInfo("Green", "green"),
  21. new UiThemeInfo("Light Green", "light-green"),
  22. new UiThemeInfo("Lime", "lime"),
  23. new UiThemeInfo("Yellow", "yellow"),
  24. new UiThemeInfo("Amber", "amber"),
  25. new UiThemeInfo("Orange", "orange"),
  26. new UiThemeInfo("Deep Orange", "deep-orange"),
  27. new UiThemeInfo("Brown", "brown"),
  28. new UiThemeInfo("Grey", "grey"),
  29. new UiThemeInfo("Blue Grey", "blue-grey"),
  30. new UiThemeInfo("Black", "black")
  31. };
  32. }
  33. }
  34. }