Use new brand color in PWA

This commit is contained in:
Alejandro Celaya 2025-08-13 09:32:46 +02:00
parent 4d7ed8ac00
commit aa818430b6

View File

@ -1,12 +1,13 @@
import { BRAND_COLOR_LM } from '@shlinkio/shlink-frontend-kit';
import type { ManifestOptions } from 'vite-plugin-pwa';
export const manifest: Partial<ManifestOptions> = {
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',