From 1f32b5c624978f7d21b03c6f77fcdfbc809fbd6e Mon Sep 17 00:00:00 2001 From: jongnan Date: Sun, 11 Aug 2024 23:30:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=83=89=EC=83=81=20=EC=9D=B4=EB=A6=84?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Presentation/Modifier/SkeletonModifier.swift | 4 ++-- Projects/ResourceKit/Sources/SemanticColor.swift | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 {