RQThemeManager.m 613 B

1234567891011121314151617181920212223
  1. //
  2. // RQThemeManager.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/7/28.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQThemeManager.h"
  9. NSString *const QDSelectedThemeIdentifier = @"selectedThemeIdentifier";
  10. NSString *const QDThemeIdentifierDefault = @"Default";
  11. NSString *const QDThemeIdentifierGrapefruit = @"Grapefruit";
  12. NSString *const QDThemeIdentifierGrass = @"Grass";
  13. NSString *const QDThemeIdentifierPinkRose = @"Pink Rose";
  14. NSString *const QDThemeIdentifierDark = @"Dark";
  15. const CGFloat QDButtonSpacingHeight = 72;
  16. @implementation RQThemeManager
  17. @def_singleton(RQThemeManager);
  18. @end