I can't set the text color of this button when using all: unset
in Safari 13.1 on macOS 10.15. It seems to work fine on Chrome 80 and Firefox 74.
button {
all: unset;
color: white;
background-color: darkblue;
}
<button>button</button>
Desired: The word "button" should appear in white on a dark blue background.
Actual: In Safari (only?!) the word "button" appears black on a dark blue background, which is illegible.
What's going wrong here? Is this my fault? Is there a workaround?