Skip to content

Commit

Permalink
Merge pull request #506 from wakmusic/505-design-system-new-color
Browse files Browse the repository at this point in the history
πŸ”€ :: (#505) λ””μžμΈ μ‹œμŠ€ν…œ μ‹ κ·œ 컬러 μΆ”κ°€
  • Loading branch information
baekteun authored May 2, 2024
2 parents e120318 + e885773 commit 09640f7
Show file tree
Hide file tree
Showing 36 changed files with 302 additions and 97 deletions.
194 changes: 97 additions & 97 deletions Projects/App/Sources/Application/NeedleGenerated.swift

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"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" : "0xCC",
"green" : "0xCC",
"red" : "0xCC"
}
},
"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" : "0x88",
"green" : "0x88",
"red" : "0x88"
}
},
"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" : "0x50",
"green" : "0x4E",
"red" : "0x4B"
}
},
"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" : "0x38",
"green" : "0x34",
"red" : "0x31"
}
},
"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" : "0x1C",
"green" : "0x1A",
"red" : "0x19"
}
},
"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
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0xF4",
"green" : "0x60",
"red" : "0x27"
}
},
"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" : "0xB2",
"green" : "0xEB",
"red" : "0x00"
}
},
"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" : "0xFF",
"green" : "0xFF",
"red" : "0xFF"
}
},
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
public extension DesignSystemAsset {
@available(*, deprecated, renamed: "BlueGrayColor", message: "'GrayColor' renamed 'BlueGrayColor'")
typealias GrayColor = BlueGrayColor
}

public extension DesignSystemAsset.BlueGrayColor {
static var gray100: DesignSystemColors { Self.blueGray100 }
static var gray200: DesignSystemColors { Self.blueGray200 }
static var gray25: DesignSystemColors { Self.blueGray25 }
static var gray300: DesignSystemColors { Self.blueGray300 }
static var gray400: DesignSystemColors { Self.blueGray400 }
static var gray50: DesignSystemColors { Self.blueGray50 }
static var gray500: DesignSystemColors { Self.blueGray500 }
static var gray600: DesignSystemColors { Self.blueGray600 }
static var gray700: DesignSystemColors { Self.blueGray700 }
static var gray800: DesignSystemColors { Self.blueGray800 }
static var gray900: DesignSystemColors { Self.blueGray900 }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import UIKit

public extension DesignSystemAsset.PrimaryColor {
static var baseskeleton: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.baseSkeleton }
static var decrease: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.decrease }
static var increase: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.increase }
static var new: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.new }
static var point: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.point }
static var secondaryskeleton: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.highlightSkeleton }
static var toast: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.toast }
static var waktaverse: DesignSystemColors { DesignSystemAsset.PrimaryColorV2.waktaverse }
static var sub1: DesignSystemColors { Self.v1Sub1 }
static var sub2: DesignSystemColors { Self.v1Sub2 }
static var sub3: DesignSystemColors { Self.v1Sub3 }
}

0 comments on commit 09640f7

Please sign in to comment.