For Background Color you have to pay special attention
you can't use
:style="[ isDark ? {background-color: 'black'}: {background-color: 'white'}]"
it won't work you can use the backgroundColor
:style="[ isDark ? {backgroundColor: 'black'}: {backgroundColor: 'white'}]"