From 67a3d98169f2875b0733219273f67deb635125fe Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Mon, 24 Oct 2022 20:17:26 +0300 Subject: [PATCH] Fix bubble highlight color in dark theme --- .../Sources/DefaultDarkPresentationTheme.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/submodules/TelegramPresentationData/Sources/DefaultDarkPresentationTheme.swift b/submodules/TelegramPresentationData/Sources/DefaultDarkPresentationTheme.swift index 3d8cc1da8f..4ca9d8c2ab 100644 --- a/submodules/TelegramPresentationData/Sources/DefaultDarkPresentationTheme.swift +++ b/submodules/TelegramPresentationData/Sources/DefaultDarkPresentationTheme.swift @@ -511,7 +511,7 @@ public func makeDefaultDarkPresentationTheme(extendingThemeReference: Presentati bubble: PresentationThemeBubbleColor( withWallpaper: PresentationThemeBubbleColorComponents( fill: [UIColor(rgb: 0x1D1D1D, alpha: incomingBubbleAlpha)], - highlightedFill: UIColor(rgb: 0xffffff, alpha: 1.0), + highlightedFill: UIColor(rgb: 0xffffff, alpha: 0.35), stroke: .clear, shadow: nil, reactionInactiveBackground: UIColor(rgb: 0xffffff, alpha: 0.07), @@ -523,7 +523,7 @@ public func makeDefaultDarkPresentationTheme(extendingThemeReference: Presentati ), withoutWallpaper: PresentationThemeBubbleColorComponents( fill: [UIColor(rgb: 0x1D1D1D, alpha: incomingBubbleAlpha)], - highlightedFill: UIColor(rgb: 0xffffff, alpha: 1.0), + highlightedFill: UIColor(rgb: 0xffffff, alpha: 0.35), stroke: .clear, shadow: nil, reactionInactiveBackground: UIColor(rgb: 0xffffff, alpha: 0.07),