From 0731c929a7946a445e446582d2c0c5db70d3515e Mon Sep 17 00:00:00 2001 From: Mustafa Merza <mustafa.merza95@gmail.com> Date: Wed, 14 Aug 2024 15:34:39 +0300 Subject: [PATCH] - Commented some redundant colors (will be deleted later). --- .../Core/Extensions/Style/Color+Colors.swift | 26 +++++++++---------- .../Extensions/Style/UIColors+Colors.swift | 26 +++++++++---------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/MiniScanner/Core/Extensions/Style/Color+Colors.swift b/MiniScanner/Core/Extensions/Style/Color+Colors.swift index eec3119..c09261b 100644 --- a/MiniScanner/Core/Extensions/Style/Color+Colors.swift +++ b/MiniScanner/Core/Extensions/Style/Color+Colors.swift @@ -9,19 +9,19 @@ import SwiftUI extension Color { - - static let tintColor = Color(.tint) - static let barTintColor = Color(.barTint) - - static let buttonsBlue = Color(.buttonsBlue) - static let cellBackground = Color(.cellBackground) - static let lightButton = Color(.lightButton) - static let mainBlue = Color(.mainBlue) - static let mainText = Color(.mainText) - static let separator = Color(.separator) - static let titlesText = Color(.titlesText) - - static let mainBackground = Color(.mainBackground) +// +// static let tintColor = Color(.tint) +// static let barTintColor = Color(.barTint) +// +// static let buttonsBlue = Color(.buttonsBlue) +// static let cellBackground = Color(.cellBackground) +// static let lightButton = Color(.lightButton) +// static let mainBlue = Color(.mainBlue) +// static let mainText = Color(.mainText) +// static let separator = Color(.separator) +// static let titlesText = Color(.titlesText) +// +// static let mainBackground = Color(.mainBackground) } extension Color { diff --git a/MiniScanner/Core/Extensions/Style/UIColors+Colors.swift b/MiniScanner/Core/Extensions/Style/UIColors+Colors.swift index ac1bec6..196a57e 100644 --- a/MiniScanner/Core/Extensions/Style/UIColors+Colors.swift +++ b/MiniScanner/Core/Extensions/Style/UIColors+Colors.swift @@ -9,19 +9,19 @@ import UIKit extension UIColor { - - static let tintColor = UIColor(resource: .tint) - static let barTintColor = UIColor(resource: .barTint) - - static let buttonsBlue = UIColor(resource: .buttonsBlue) - static let cellBackground = UIColor(resource: .cellBackground) - static let lightButton = UIColor(resource: .lightButton) - static let mainBlue = UIColor(resource: .mainBlue) - static let mainText = UIColor(resource: .mainText) - static let separator = UIColor(resource: .separator) - static let titlesText = UIColor(resource: .titlesText) - - static let mainBackground = UIColor(resource: .mainBackground) +// +// static let tintColor = UIColor(resource: .tint) +// static let barTintColor = UIColor(resource: .barTint) +// +// static let buttonsBlue = UIColor(resource: .buttonsBlue) +// static let cellBackground = UIColor(resource: .cellBackground) +// static let lightButton = UIColor(resource: .lightButton) +// static let mainBlue = UIColor(resource: .mainBlue) +// static let mainText = UIColor(resource: .mainText) +// static let separator = UIColor(resource: .separator) +// static let titlesText = UIColor(resource: .titlesText) +// +// static let mainBackground = UIColor(resource: .mainBackground) } extension UIColor { -- GitLab