Skip to content

Commit

Permalink
Make fallback theme reasonable
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmassicotte committed May 13, 2024
1 parent 04ab6e1 commit 11f760c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Edit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4111,7 +4111,7 @@
};
C9BDB5532B00FD89009225FB /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C942E6822B67B93B00792DD4 /* InfoPlistExtension.xcconfig */;
baseConfigurationReference = C9BDB5542B00FF5A009225FB /* SwiftExtension.xcconfig */;
buildSettings = {
};
name = Release;
Expand Down Expand Up @@ -4139,7 +4139,7 @@
};
C9E8780C2A9F53530018340C /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C9E878112A9F53BB0018340C /* Extension.xcconfig */;
baseConfigurationReference = C942E6822B67B93B00792DD4 /* InfoPlistExtension.xcconfig */;
buildSettings = {
};
name = Release;
Expand Down Expand Up @@ -4805,7 +4805,7 @@
repositoryURL = "https://github.com/ChimeHQ/ThemePark";
requirement = {
kind = revision;
revision = 2c9c5562a6b6392265baee120a184f1f1c37a6ab;
revision = 0838bd1db8be40aa87233f8351955bf84876f83d;
};
};
C9FE52E62A75375300CACA1A /* XCRemoteSwiftPackageReference "ContainedDocument" */ = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "bd19efcfc07bbe866e787909e54f1c2855bcfd99b9737e4272ebbf41ec8dcbe1",
"originHash" : "78a8897458ae353ab1f4fd14e2c55be0dba3fe7c46fb08bf337134a46b1e4ea1",
"pins" : [
{
"identity" : "asyncxpcconnection",
Expand Down Expand Up @@ -237,7 +237,7 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/ChimeHQ/ThemePark",
"state" : {
"revision" : "2c9c5562a6b6392265baee120a184f1f1c37a6ab"
"revision" : "0838bd1db8be40aa87233f8351955bf84876f83d"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Edit/Modules/Theme/Theme.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 11f760c

Please sign in to comment.