import { ThemeColors } from "styled-system";

declare module "styled-system" {

  export interface ThemeColors {
    primary: string;
		secondary: string;
		link: string;
		success: string;
		warning: string;
		error: string;
  }
}

export const colorsMap: Partial<ThemeColors> = {
  primary: "#025D92",
  secondary: "#ff618d",
  link: "#1890ff",
  success: "#52c41a",
  warning: "#faad14",
  error: "#e84118"
};


