
//
// StyleDictionaryColor.m
//
// Do not edit directly
// Generated on Tue, 12 Jul 2022 18:03:13 GMT
//

#import "StyleDictionaryColor.h"


@implementation StyleDictionaryColor

+ (UIColor *)color:(StyleDictionaryColorName)colorEnum{
  return [[self values] objectAtIndex:colorEnum];
}

+ (NSArray *)values {
  static NSArray* colorArray;
  static dispatch_once_t onceToken;

  dispatch_once(&onceToken, ^{
    colorArray = @[
[UIColor colorWithRed:0.173f green:0.200f blue:0.341f alpha:1.000f],
[UIColor colorWithRed:0.788f green:0.804f blue:0.894f alpha:1.000f],
[UIColor colorWithRed:0.933f green:0.945f blue:0.969f alpha:1.000f],
[UIColor colorWithRed:0.008f green:0.447f blue:0.835f alpha:1.000f],
[UIColor colorWithRed:0.682f green:0.851f blue:0.996f alpha:1.000f],
[UIColor colorWithRed:0.929f green:0.961f blue:0.996f alpha:1.000f],
[UIColor colorWithRed:0.851f green:0.165f blue:0.176f alpha:1.000f],
[UIColor colorWithRed:0.953f green:0.702f blue:0.698f alpha:1.000f],
[UIColor colorWithRed:0.988f green:0.922f blue:0.922f alpha:1.000f],
[UIColor colorWithRed:1.000f green:0.702f blue:0.216f alpha:1.000f],
[UIColor colorWithRed:1.000f green:0.878f blue:0.678f alpha:1.000f],
[UIColor colorWithRed:1.000f green:0.961f blue:0.914f alpha:1.000f],
[UIColor colorWithRed:0.047f green:0.655f blue:0.420f alpha:1.000f],
[UIColor colorWithRed:0.702f green:0.980f blue:0.871f alpha:1.000f],
[UIColor colorWithRed:0.937f green:0.992f blue:0.969f alpha:1.000f],
[UIColor colorWithRed:0.980f green:0.980f blue:0.980f alpha:1.000f],
[UIColor colorWithRed:0.925f green:0.922f blue:0.925f alpha:1.000f],
[UIColor colorWithRed:0.749f green:0.733f blue:0.741f alpha:1.000f],
[UIColor colorWithRed:0.384f green:0.349f blue:0.365f alpha:1.000f],
[UIColor colorWithRed:0.278f green:0.235f blue:0.255f alpha:1.000f],
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f]
    ];
  });

  return colorArray;
}

@end
