diff --git a/native/markdown/rules.react.js b/native/markdown/rules.react.js --- a/native/markdown/rules.react.js +++ b/native/markdown/rules.react.js @@ -2,7 +2,7 @@ import _memoize from 'lodash/memoize.js'; import * as React from 'react'; -import { Text, View } from 'react-native'; +import { Text, View, Platform } from 'react-native'; import { createSelector } from 'reselect'; import * as SimpleMarkdown from 'simple-markdown'; @@ -255,11 +255,15 @@ ) => { const { isNestedQuote } = state; const backgroundColor = isNestedQuote ? '#00000000' : '#00000066'; + const borderLeftColor = (Platform.select({ + ios: '#00000066', + default: isNestedQuote ? '#00000066' : '#000000A3', + }): string); return ( {output(node.content, { ...state, isNestedQuote: true })} diff --git a/native/markdown/styles.js b/native/markdown/styles.js --- a/native/markdown/styles.js +++ b/native/markdown/styles.js @@ -63,7 +63,6 @@ fontWeight: 'bold', }, blockQuote: { - borderLeftColor: '#00000066', borderLeftWidth: 8, borderRadius: 8, padding: 10,