From d75238971061ef59996e6b13ef733ca15c4b2cd5 Mon Sep 17 00:00:00 2001
From: Julian Dominguez-Schatz <julian.dominguezschatz@gmail.com>
Date: Sun, 8 Sep 2024 21:01:23 -0400
Subject: [PATCH] Update splash background to match theming (#3400)

* Update splash background to match theming

* Add release notes
---
 .../desktop-client/public/site.webmanifest    | 162 +++++++++---------
 upcoming-release-notes/3400.md                |   6 +
 2 files changed, 87 insertions(+), 81 deletions(-)
 create mode 100644 upcoming-release-notes/3400.md

diff --git a/packages/desktop-client/public/site.webmanifest b/packages/desktop-client/public/site.webmanifest
index f104a4215..ef6c74591 100644
--- a/packages/desktop-client/public/site.webmanifest
+++ b/packages/desktop-client/public/site.webmanifest
@@ -1,89 +1,89 @@
 {
-    "name": "Actual",
-    "short_name": "Actual",
-    "description": "A local-first personal finance tool",
-    "icons": [
+  "name": "Actual",
+  "short_name": "Actual",
+  "description": "A local-first personal finance tool",
+  "icons": [
+    {
+      "src": "/android-chrome-192x192.png",
+      "sizes": "192x192",
+      "type": "image/png",
+      "purpose": "any"
+    },
+    {
+      "src": "/android-chrome-512x512.png",
+      "sizes": "512x512",
+      "type": "image/png",
+      "purpose": "any"
+    },
+    {
+      "src": "/maskable-192x192.png",
+      "sizes": "192x192",
+      "type": "image/png",
+      "purpose": "maskable"
+    },
+    {
+      "src": "/maskable-512x512.png",
+      "sizes": "512x512",
+      "type": "image/png",
+      "purpose": "maskable"
+    }
+  ],
+  "shortcuts": [
+    {
+      "name": "Add Transaction",
+      "short_name": "Add Transaction",
+      "description": "Add a new transaction",
+      "url": "/transactions/new",
+      "icons": [
         {
-            "src": "/android-chrome-192x192.png",
-            "sizes": "192x192",
-            "type": "image/png",
-            "purpose": "any"
-        },
-        {
-            "src": "/android-chrome-512x512.png",
-            "sizes": "512x512",
-            "type": "image/png",
-            "purpose": "any"
-        },
-        {
-            "src": "/maskable-192x192.png",
-            "sizes": "192x192",
-            "type": "image/png",
-            "purpose": "maskable"
-        },
-        {
-            "src": "/maskable-512x512.png",
-            "sizes": "512x512",
-            "type": "image/png",
-            "purpose": "maskable"
+          "src": "/shortcut-transaction.svg",
+          "sizes": "150x150"
         }
-    ],
-    "shortcuts": [
+      ]
+    },
+    {
+      "name": "Accounts",
+      "short_name": "Accounts",
+      "description": "View all accounts",
+      "url": "/accounts",
+      "icons": [
         {
-            "name": "Add Transaction",
-            "short_name": "Add Transaction",
-            "description": "Add a new transaction",
-            "url": "/transactions/new",
-            "icons": [
-                {
-                    "src": "/shortcut-transaction.svg",
-                    "sizes": "150x150"
-                }
-            ]
-        },
-        {
-            "name": "Accounts",
-            "short_name": "Accounts",
-            "description": "View all accounts",
-            "url": "/accounts",
-            "icons": [
-                {
-                    "src": "/shortcut-accounts.svg",
-                    "sizes": "150x150"
-                }
-            ]
-        },
-        {
-            "name": "Reports",
-            "short_name": "Reports",
-            "description": "View reports",
-            "url": "/reports",
-            "icons": [
-                {
-                    "src": "/shortcut-reports.svg",
-                    "sizes": "150x150"
-                }
-            ]
+          "src": "/shortcut-accounts.svg",
+          "sizes": "150x150"
         }
-    ],
-    "screenshots": [
-        {
-            "src": "/screenshot_wide.png",
-            "form_factor": "wide",
-            "label": "Actual Budget Homepage",
-            "type": "image/png",
-            "sizes": "1280x720"
-        },
+      ]
+    },
+    {
+      "name": "Reports",
+      "short_name": "Reports",
+      "description": "View reports",
+      "url": "/reports",
+      "icons": [
         {
-            "src": "/screenshot_narrow.png",
-            "form_factor": "narrow",
-            "label": "Actual Budget Mobile Homepage",
-            "type": "image/png",
-            "sizes": "350x600"
+          "src": "/shortcut-reports.svg",
+          "sizes": "150x150"
         }
-    ],
-    "theme_color": "#8812E1",
-    "background_color": "#ffffff",
-    "display": "standalone",
-    "start_url": "./"
+      ]
+    }
+  ],
+  "screenshots": [
+    {
+      "src": "/screenshot_wide.png",
+      "form_factor": "wide",
+      "label": "Actual Budget Homepage",
+      "type": "image/png",
+      "sizes": "1280x720"
+    },
+    {
+      "src": "/screenshot_narrow.png",
+      "form_factor": "narrow",
+      "label": "Actual Budget Mobile Homepage",
+      "type": "image/png",
+      "sizes": "350x600"
+    }
+  ],
+  "theme_color": "#8812E1",
+  "background_color": "#8812E1",
+  "display": "standalone",
+  "start_url": "./"
 }
diff --git a/upcoming-release-notes/3400.md b/upcoming-release-notes/3400.md
new file mode 100644
index 000000000..afe6f4d48
--- /dev/null
+++ b/upcoming-release-notes/3400.md
@@ -0,0 +1,6 @@
+---
+category: Enhancements
+authors: [jfdoming]
+---
+
+Update splash background to match theming
-- 
GitLab