Use ReactMarkdown on Event content

This commit is contained in:
Aarni Halinen
2020-10-08 20:19:43 +03:00
parent bf7470f6c7
commit 1b6bee5493
3 changed files with 104 additions and 67 deletions
+15
View File
@@ -19,3 +19,18 @@ export const colorToClass = (color: Colors): string => color ? `color-div__${col
export const bgColorToClass = (color: Colors): string => color ? `color-div__background_${color}` : undefined;
export const hoverColorToClass = (color: Colors): string => color ? `color-div__${color}Hoverable` : undefined;
export const bgHoverColorToClass = (color: Colors): string => color ? `color-div__background_${color}Hoverable` : undefined;
export const colors = {
darkBlue: "#002d3a",
lightBlue: "#bfdbd9",
white: "#fff",
black: "#000",
grey1: "#d4d0c7",
grey2: "#efece4",
orange1: "#d57a2d",
orange2: "#dd934e",
blue1: "#57b2df",
lightTurquoise: "#beddeb",
green1: "#c0dcd9",
sand: "#fdf9d7"
}