i want to change font color and line height on numbering list on RenderHtml from 'react-native-render-html' but it doesnt work. this is my code
`<RenderHtml
html={caraPakai}
imagesMaxWidth={Dimensions.get('window').width - 30}
allowFontScaling={false}
ignoredStyles={[
'font-weight',
'color',
'font-family',
'font-size',
'background-color'
]}
tagsStyles={{
li: { color: '#707E8D' },
ol: {
color: '#707E8D',
lineHeight: 22
},
}}`
styling ol on tagStyles doesnt work
styling ol on tagStyles