Have you made any useful utilities with Odin?
Login and submit your creations here
Marks all UnityEngine.Object reference fields red by default. Use Optional attribute to make it yellow (to say it's optional).
More about here: GitHub.
Here is an example of usage:
Usage
public class Tutorial : MonoBehaviour
{
public GameObject Reference;
public GameObject NullReference;
[Optional] public GameObject Optional;
public string Text = "be sexy";
public string EmptyText;
}