From aa818430b62790564e41ef66fc7fc97bd8cb177e Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Wed, 13 Aug 2025 09:32:46 +0200 Subject: [PATCH] Use new brand color in PWA --- manifest.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/manifest.ts b/manifest.ts index b206df32..d4da9457 100644 --- a/manifest.ts +++ b/manifest.ts @@ -1,12 +1,13 @@ +import { BRAND_COLOR_LM } from '@shlinkio/shlink-frontend-kit'; import type { ManifestOptions } from 'vite-plugin-pwa'; export const manifest: Partial = { short_name: 'Shlink', - name: 'Shlink', + name: 'Shlink Web Client', start_url: '/', display: 'standalone', - theme_color: '#4696e5', - background_color: '#4696e5', + theme_color: BRAND_COLOR_LM, + background_color: BRAND_COLOR_LM, icons: [ { src: './icons/icon-16x16.png',