ColorConstants.swift
848 Bytes
//
// ColorConstants.swift
// browser
//
// Created by Artem Talko on 19.10.2023.
//
import UIKit
struct ColorConstants {
static let lightGray = UIColor(red: 0.984, green: 0.984, blue: 0.984, alpha: 1)
static let SearchbarTintBlue = UIColor(red: 0.35, green: 0.56, blue: 1, alpha: 1)
static let payloadTextColor = UIColor(red: 0.121, green: 0.121, blue: 0.121, alpha: 1)
static let buttonsBackgroundColor = UIColor(red: 0.349, green: 0.565, blue: 1, alpha: 1)
static let customLightBlue = UIColor(red: 0.8, green: 0.87, blue: 1, alpha: 1)
static let customPink = UIColor(red: 0.95, green: 0.47, blue: 0.71, alpha: 1)
static let customPinkForText = UIColor(red: 0.99, green: 0.87, blue: 0.93, alpha: 1)
static let segmentControlBackground = UIColor(red: 0.938, green: 0.938, blue: 0.962, alpha: 0.1)
}