diff --git a/Projects/Features/Recommend/Sources/Presentation/Modifier/SkeletonModifier.swift b/Projects/Features/Recommend/Sources/Presentation/Modifier/SkeletonModifier.swift index b326018..f1f8b4c 100644 --- a/Projects/Features/Recommend/Sources/Presentation/Modifier/SkeletonModifier.swift +++ b/Projects/Features/Recommend/Sources/Presentation/Modifier/SkeletonModifier.swift @@ -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)) diff --git a/Projects/ResourceKit/Sources/SemanticColor.swift b/Projects/ResourceKit/Sources/SemanticColor.swift index 09dae4b..d171af7 100644 --- a/Projects/ResourceKit/Sources/SemanticColor.swift +++ b/Projects/ResourceKit/Sources/SemanticColor.swift @@ -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 {