Skip to content

Commit

Permalink
improve colours
Browse files Browse the repository at this point in the history
  • Loading branch information
pdtxie committed Mar 8, 2024
1 parent a94544b commit 1c1cef6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0x39",
"green" : "0x37",
"red" : "0x36"
"blue" : "0x19",
"green" : "0x16",
"red" : "0x15"
}
},
"idiom" : "universal"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0x26",
"green" : "0x24",
"red" : "0x24"
"blue" : "0x0C",
"green" : "0x0A",
"red" : "0x0A"
}
},
"idiom" : "universal"
Expand Down
4 changes: 2 additions & 2 deletions CubeTime/Stats/ScrollableLineChart.swift
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ class TimeDistributionPointCard: UIStackView {

iconView = UIImageView(image: UIImage(named: puzzleTypes[Int(solve?.scrambleType ?? 0)].name))
iconView.frame = CGRect(x: 0, y: 0, width: 24, height: 24)
iconView.tintColor = .black
iconView.tintColor = UIColor(Color("dark"))
iconView.translatesAutoresizingMaskIntoConstraints = false

return iconView
Expand All @@ -322,7 +322,7 @@ class TimeDistributionPointCard: UIStackView {
var chevron = UIImageView()

chevron = UIImageView(image: UIImage(systemName: "chevron.right"))
chevron.tintColor = UIColor.black
chevron.tintColor = UIColor(Color("dark"))

chevron.preferredSymbolConfiguration = UIImage.SymbolConfiguration(font: .preferredFont(for: .footnote, weight: .medium))
chevron.translatesAutoresizingMaskIntoConstraints = false
Expand Down

0 comments on commit 1c1cef6

Please sign in to comment.