noteTypes = ({
info: {
glyph: "ℹ️",
type: "info",
purpose: "general helpful information",
background: "azure",
},
tip: {
glyph: "💡",
type: "tip",
purpose: "a useful piece of advice",
background: "honeydew",
},
wip: {
glyph: "🚧",
type: "construction",
purpose: "work in progress",
background: "ivory",
},
attention: {
glyph: "👉",
type: "caution",
purpose: "exceptional situation",
background: "antiquewhite",
},
caution: {
glyph: "☡",
type: "caution",
purpose: "potentially hazardous situation which can result minor or moderate injury or damage",
background: "antiquewhite",
},
warning: {
glyph: "⚠️",
type: "warning",
purpose: "potentially hazardous situation which can result in death or serious and irreversable injury or damage",
background: "lavenderblush",
},
danger: {
glyph: "☠️",
type: "tip",
purpose: "imminently hazardous situation which can result in **death** or **serious irreversable injury or damage**",
background: "mistyrose",
},
prohibited: {
glyph: "🚫",
type: "prohibited",
purpose: "officially forbid something and prevent something by making it impossible",
color: "crimson",
background: "snow",
border: "red",
},
stop: {
glyph: "🛑",
type: "stop",
purpose: "do not go beyond this point",
background: "darkred",
},
})