Have you made any useful utilities with Odin?
Login and submit your creations hereA FoldoutGroup extension that supports multiline headers and RichText allowing you to use Unity's RichText inline.
Usage
public class SomeScriptableObject : ScriptableObject
{
// A SizedFoldoutGroup with color
[SizedFoldoutGroup("$SomeString", 0.87f, 0f, 0.97f)]
public int SomeInt;
// A Default color sized foldout group.
[SizedFoldoutGroup("This String is a Good Boy\nPlease believe me.")]
public int SomeOtherInt;
public string SomeString = "<b>MultiLine is Okay</b>\nDon't believe me? You can ask my wife.";
}