UiThemes.cs 1.2 KB

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