From 2f8046345b6ec33996879c06b4e676090dc2a562 Mon Sep 17 00:00:00 2001 From: Joel Reis Date: Thu, 8 Aug 2019 16:47:32 -1000 Subject: [PATCH] Fixed up URL / Address bar coloring. --- Client/Frontend/Browser/Toolbars/UrlBar/UrlBarTextField.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/Frontend/Browser/Toolbars/UrlBar/UrlBarTextField.swift b/Client/Frontend/Browser/Toolbars/UrlBar/UrlBarTextField.swift index 6d250f0ef0f..7bdfbd48047 100644 --- a/Client/Frontend/Browser/Toolbars/UrlBar/UrlBarTextField.swift +++ b/Client/Frontend/Browser/Toolbars/UrlBar/UrlBarTextField.swift @@ -73,9 +73,9 @@ extension UrlBarTextField: Themeable { func applyTheme(_ theme: Theme) { styleChildren(theme: theme) - backgroundColor = .yellow + backgroundColor = theme.colors.addressBar textColor = theme.colors.tints.header clearButtonTintColor = textColor -// highlightColor = .green + highlightColor = textColor!.withAlphaComponent(0.2) } }