From 414cf8cb8c42e141aff8c08e3b7cd770174f2da9 Mon Sep 17 00:00:00 2001 From: Rune Olsen Date: Wed, 17 Jun 2026 11:59:11 +0200 Subject: [PATCH] Add missing AccentColor asset Build settings referenced ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor but no such color set existed in Assets.xcassets, causing a build warning. Added it using the app's existing blue accent (#0a7aca, same as Color.oaiAccent) for consistency. Co-Authored-By: Claude Sonnet 4.6 --- .../AccentColor.colorset/Contents.json | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 oAI/Assets.xcassets/AccentColor.colorset/Contents.json diff --git a/oAI/Assets.xcassets/AccentColor.colorset/Contents.json b/oAI/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..12169ab --- /dev/null +++ b/oAI/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xCA", + "green" : "0x7A", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +}