diff --git a/CHANGELOG.md b/CHANGELOG.md index 577c2f9b83..147fc83b36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ - [FIX] Infrared editor screen bottom navigation padding - [FIX] Display MfKey32 loading progress when no keys available - [FIX] Return baseline profiles +- [FIX] Markdown code blocks background color - [Feature] Add not connected, empty and syncing states to emulation button on key screen - [Feature] Check app exist on apps catalog manifest loading - [Feature] First version of device orchestrator diff --git a/components/core/markdown/src/main/java/com/flipperdevices/core/markdown/ComposableMarkdown.kt b/components/core/markdown/src/main/java/com/flipperdevices/core/markdown/ComposableMarkdown.kt index 34e05c2127..c78722efa9 100644 --- a/components/core/markdown/src/main/java/com/flipperdevices/core/markdown/ComposableMarkdown.kt +++ b/components/core/markdown/src/main/java/com/flipperdevices/core/markdown/ComposableMarkdown.kt @@ -37,7 +37,7 @@ fun ComposableMarkdown( @Composable fun markdownColors( - backgroundCode: Color = LocalPallet.current.text20, + backgroundCode: Color = LocalPallet.current.text8, text: Color = LocalPallet.current.text100, link: Color = LocalPallet.current.accentSecond, dividerColor: Color = LocalPallet.current.divider12 @@ -48,7 +48,7 @@ fun markdownColors( codeBackground = backgroundCode, inlineCodeBackground = backgroundCode, dividerColor = dividerColor, - inlineCodeText = backgroundCode + inlineCodeText = text ) @Composable