Presets for Notes Association
G
Garnet Rhinoceros
It would be nice if there were 6+ preset options I could use (and customize),
My current set up I have in a notepad++ doc off to the side:
✅ Good
Used to indicate successful logic, validated steps, or confirmed configurations.
{
"height": 200,
"width": 300,
"stroke": "rgba(76, 175, 80, 0.7)",
"fill": "rgba(76, 175, 80, 0.05)",
"fillEnabled": true
}
⚠ Attention
Used for steps that require review, caution, or manual verification.
{
"height": 200,
"width": 300,
"stroke": "rgba(244, 180, 0, 0.7)",
"fill": "rgba(244, 180, 0, 0.05)",
"fillEnabled": true
}
❌ Critical
Used for failure points, critical warnings, or logic that must not break.
{
"height": 200,
"width": 300,
"stroke": "rgba(219, 68, 55, 0.7)",
"fill": "rgba(219, 68, 55, 0.05)",
"fillEnabled": true
}
ℹ Noted
Used for documentation, explanations, or helpful notes about workflow logic.
{
"height": 200,
"width": 300,
"stroke": "rgba(66, 133, 244, 0.7)",
"fill": "rgba(66, 133, 244, 0.05)",
"fillEnabled": true
}
⧗ Future
Used for planned improvements, TODO items, or potential automation expansions.
{
"height": 200,
"width": 300,
"stroke": "rgba(156, 39, 176, 0.7)",
"fill": "rgba(156, 39, 176, 0.05)",
"fillEnabled": true
}
Log In