// Import shared types
import Color from '../../types/Color';

// Import colors
import BlueColor from './BlueColor';
import GreenColor from './GreenColor';
import OrangeColor from './OrangeColor';
import PurpleColor from './PurpleColor';
import RedColor from './RedColor';
import YellowColor from './YellowColor';

/**
 * Preset available colors
 * @author Gabe Abrams
 */
const presetColors: { [k: string]: Color } = {
  red: RedColor,
  blue: BlueColor,
  yellow: YellowColor,
  green: GreenColor,
  purple: PurpleColor,
  orange: OrangeColor,
};

export default presetColors;
