Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "template"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public enum BKAtomicColor {
public enum Green: String {
case g50 = "#f2fff6"
case g100 = "#e3f8e9"
case g200 = "#c1e8ca"
case g300 = "#82c090"
case g400 = "#40bf5d"
case g500 = "#2f9647"
case g600 = "#257838"
case g700 = "#1c5a2a"
case g800 = "#123c1c"
case g900 = "#091d0e"
case g200 = "#c4eccd"
case g300 = "#9ce0ad"
case g400 = "#6bd184"
case g500 = "#3bc25b"
case g600 = "#33a94f"
case g700 = "#247938"
case g800 = "#174822"
case g900 = "#07180b"

public var color: UIColor {
return UIColor(hex: self.rawValue)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ private extension UINavigationController {

func makeHomeImageTitleView(image: UIImage) -> UIView {
let imageView = UIImageView(image: image)
imageView.tintColor = .bkBackgroundColor(.primary)
imageView.contentMode = .scaleAspectFit

let wrapper = UIView()
Expand Down
8 changes: 4 additions & 4 deletions src/Projects/Booket/Resources/LaunchScreen.storyboard
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23094" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="Y6W-OH-hqX">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23727" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="Y6W-OH-hqX">
<device id="retina6_12" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23084"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23721"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
Expand All @@ -17,11 +17,11 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Splash" translatesAutoresizingMaskIntoConstraints="NO" id="hmr-78-JfU">
<rect key="frame" x="0.0" y="367" width="393" height="143.33333333333337"/>
<rect key="frame" x="0.0" y="379.33333333333331" width="393" height="143.33333333333331"/>
</imageView>
</subviews>
<viewLayoutGuide key="safeArea" id="vDu-zF-Fre"/>
<color key="backgroundColor" red="0.1843137255" green="0.58823529409999997" blue="0.2784313725" alpha="1" colorSpace="calibratedRGB"/>
<color key="backgroundColor" red="0.23137254901960785" green="0.76078431372549016" blue="0.35686274509803922" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="hmr-78-JfU" firstAttribute="centerX" secondItem="vDu-zF-Fre" secondAttribute="centerX" id="Hf3-1O-V3X"/>
<constraint firstItem="hmr-78-JfU" firstAttribute="centerY" secondItem="vDu-zF-Fre" secondAttribute="centerY" id="gemini-cy-final"/>
Expand Down