Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Design Tokens Update on 2022-02-11 #26

Merged
merged 1 commit into from
Feb 11, 2022
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
4 changes: 4 additions & 0 deletions Sources/Orbit/Foundation/Colors/Colors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ public extension Color {
static let blueNormalActive = Color("Blue Normal Active", bundle: .current)
static let blueNormalHover = Color("Blue Normal Hover", bundle: .current)

// MARK: - Bundle
static let bundleBasic = Color("Bundle Basic", bundle: .current)
static let bundleMedium = Color("Bundle Medium", bundle: .current)

// MARK: - Cloud
static let cloudDark = Color("Cloud Dark", bundle: .current)
static let cloudDarker = Color("Cloud Darker", bundle: .current)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0x1C",
"green" : "0x33",
"red" : "0xD7"
}
},
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0xB0",
"green" : "0x1E",
"red" : "0x3B"
}
},
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
4 changes: 4 additions & 0 deletions Sources/Orbit/Foundation/Colors/UIColors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ public extension UIColor {
static let blueNormalActive = fromResource(named: "Blue Normal Active")
static let blueNormalHover = fromResource(named: "Blue Normal Hover")

// MARK: - Bundle
static let bundleBasic = fromResource(named: "Bundle Basic")
static let bundleMedium = fromResource(named: "Bundle Medium")

// MARK: - Cloud
static let cloudDark = fromResource(named: "Cloud Dark")
static let cloudDarker = fromResource(named: "Cloud Darker")
Expand Down