Skip to content

Commit

Permalink
fix: 색상 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jongnan committed Aug 11, 2024
1 parent ec4e7c3 commit 1f32b5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ struct SkeletonModifier: ViewModifier {
animation: .linear(duration: 2, delay: 0, speed: 1),
appearance: .gradient(
.linear,
color: Color.Skeleton.home,
background: Color.Skeleton.homeback,
color: Color.Skeleton.beige,
background: Color.Skeleton.orange,
radius: 1
),
shape: .rounded(.radius(radius))
Expand Down
4 changes: 2 additions & 2 deletions Projects/ResourceKit/Sources/SemanticColor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public struct Color {
public struct Skeleton {
public static let primary = ResourceKitAsset.PrimaryColor.neutral10.swiftUIColor
public static let secondary = ResourceKitAsset.PrimaryColor.neutral20.swiftUIColor
public static let home = ResourceKitAsset.PrimaryColor.skeleton50.swiftUIColor
public static let homeback = ResourceKitAsset.PrimaryColor.skeleton100.swiftUIColor
public static let beige = ResourceKitAsset.PrimaryColor.skeleton50.swiftUIColor
public static let orange = ResourceKitAsset.PrimaryColor.skeleton100.swiftUIColor
}

public struct Shadow {
Expand Down

0 comments on commit 1f32b5c

Please sign in to comment.