Update default blue accent color

This commit is contained in:
Ilya Laktyushin
2021-10-06 00:06:33 +04:00
parent 4a12dcbb22
commit 38c483c335
14 changed files with 19 additions and 19 deletions

View File

@@ -801,7 +801,7 @@ final class InstantPageControllerNode: ASDisplayNode, UIScrollViewDelegate {
if let current = self.linkHighlightingNode {
linkHighlightingNode = current
} else {
let highlightColor = self.theme?.linkHighlightColor ?? UIColor(rgb: 0x007ee5).withAlphaComponent(0.4)
let highlightColor = self.theme?.linkHighlightColor ?? UIColor(rgb: 0x007aff).withAlphaComponent(0.4)
linkHighlightingNode = LinkHighlightingNode(color: highlightColor)
linkHighlightingNode.isUserInteractionEnabled = false
self.linkHighlightingNode = linkHighlightingNode