From 11f760c30ae45e5afe35374403b6a410723cc504 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Mon, 13 May 2024 07:18:46 -0400 Subject: [PATCH] Make fallback theme reasonable --- Edit.xcodeproj/project.pbxproj | 6 +++--- .../xcshareddata/swiftpm/Package.resolved | 4 ++-- Edit/Modules/Theme/Theme.swift | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Edit.xcodeproj/project.pbxproj b/Edit.xcodeproj/project.pbxproj index 811183d..ca0641a 100644 --- a/Edit.xcodeproj/project.pbxproj +++ b/Edit.xcodeproj/project.pbxproj @@ -4111,7 +4111,7 @@ }; C9BDB5532B00FD89009225FB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C942E6822B67B93B00792DD4 /* InfoPlistExtension.xcconfig */; + baseConfigurationReference = C9BDB5542B00FF5A009225FB /* SwiftExtension.xcconfig */; buildSettings = { }; name = Release; @@ -4139,7 +4139,7 @@ }; C9E8780C2A9F53530018340C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9E878112A9F53BB0018340C /* Extension.xcconfig */; + baseConfigurationReference = C942E6822B67B93B00792DD4 /* InfoPlistExtension.xcconfig */; buildSettings = { }; name = Release; @@ -4805,7 +4805,7 @@ repositoryURL = "https://github.com/ChimeHQ/ThemePark"; requirement = { kind = revision; - revision = 2c9c5562a6b6392265baee120a184f1f1c37a6ab; + revision = 0838bd1db8be40aa87233f8351955bf84876f83d; }; }; C9FE52E62A75375300CACA1A /* XCRemoteSwiftPackageReference "ContainedDocument" */ = { diff --git a/Edit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Edit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index d837ca6..b61d7bd 100644 --- a/Edit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Edit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "bd19efcfc07bbe866e787909e54f1c2855bcfd99b9737e4272ebbf41ec8dcbe1", + "originHash" : "78a8897458ae353ab1f4fd14e2c55be0dba3fe7c46fb08bf337134a46b1e4ea1", "pins" : [ { "identity" : "asyncxpcconnection", @@ -237,7 +237,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/ChimeHQ/ThemePark", "state" : { - "revision" : "2c9c5562a6b6392265baee120a184f1f1c37a6ab" + "revision" : "0838bd1db8be40aa87233f8351955bf84876f83d" } }, { diff --git a/Edit/Modules/Theme/Theme.swift b/Edit/Modules/Theme/Theme.swift index 95f39ee..876f244 100644 --- a/Edit/Modules/Theme/Theme.swift +++ b/Edit/Modules/Theme/Theme.swift @@ -48,7 +48,7 @@ extension Theme { @MainActor public static let fallback = Theme( identity: .init(source: .chime, name: "Fallback"), - styler: ConstantStyler(foregroundColor: .green, backgroundColor: .black) + styler: ConstantStyler(foregroundColor: .label, backgroundColor: .windowBackgroundColor) ) @MainActor