Fix bubble highlight color in dark theme

This commit is contained in:
Ilya Laktyushin 2022-10-24 20:17:26 +03:00
parent 03a92bcba1
commit 67a3d98169

View file

@ -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),