#import "NullColor.h"

@implementation NullColor

- (instancetype)init {
	self = [super initWithValue:nil];
	return self;
}

@end