Use ReactMarkdown on Event content
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user