-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ :: [#505] 기존 PrimaryColor만 존재하는 에셋 제외 V2와 중복되는 에셋 제거
- Loading branch information
Showing
10 changed files
with
108 additions
and
260 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...es/DesignSystem/Resources/Color/PrimaryColor.xcassets/BASESKELETON.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...rfaces/DesignSystem/Resources/Color/PrimaryColor.xcassets/DECREASE.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...rfaces/DesignSystem/Resources/Color/PrimaryColor.xcassets/INCREASE.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...tInterfaces/DesignSystem/Resources/Color/PrimaryColor.xcassets/NEW.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...nterfaces/DesignSystem/Resources/Color/PrimaryColor.xcassets/POINT.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...signSystem/Resources/Color/PrimaryColor.xcassets/SECONDARYSKELETON.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...nterfaces/DesignSystem/Resources/Color/PrimaryColor.xcassets/TOAST.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...aces/DesignSystem/Resources/Color/PrimaryColor.xcassets/WAKTAVERSE.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
14 changes: 11 additions & 3 deletions
14
Projects/UsertInterfaces/DesignSystem/Sources/AliasPrimaryV1+PrimaryV2.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
import UIKit | ||
|
||
public extension DesignSystemAsset.PrimaryColor { | ||
static var Sub1: DesignSystemColors { Self.v1Sub1 } | ||
static var Sub2: DesignSystemColors { Self.v1Sub2 } | ||
static var Sub3: DesignSystemColors { Self.v1Sub3 } | ||
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 } | ||
} |