Description
Currently, it is not possible to choose a color for the note.
The note always has a color (#fff4cc)

There is a need to add an option to choose the color of the note because when the note for each model (User / Company / Deal / etc.) has the same color and the notes are visible on one profile, it reduces the readability.
What could be implemented?
a
Colorattribute would be added to the note model:
{"id": 1,
"note": "some note content",
"agent_id": 1,
"created_at": "2022-03-24T12:20:51.450267Z",
"color": "#ccffdb"
}
(if the value for color attribute was not added, the value of the attribute would has the default value = #fff4cc)a
Colorbutton would be added to the note creation form
After clicking the button, it would be possible to choose:
- one of the Fixed Choices with the color
OR
- one of the fixed choices with a given color + use of picker / input to add an "own" color
(as is the case, for example, in chat widget settings)
