Skip to content

Commit

Permalink
Update manifest (#20)
Browse files Browse the repository at this point in the history
* Update manifest

* Update manifest.
  • Loading branch information
lukasbicus authored Nov 13, 2024
1 parent 0e1e7d1 commit 5dba12b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/lib/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export enum Routes {
ImportData = '/import-data',
}

export const ICON_COLOR = 'oklch(0.4912 0.3096 275.75)';
export const PRIMARY_COLOR = 'oklch(0.4912 0.3096 275.75)';

export enum CardIcon {
Grocery = 'Grocery',
Expand Down
6 changes: 3 additions & 3 deletions app/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ICON_COLOR } from '@/app/lib/shared';
import { PRIMARY_COLOR } from '@/app/lib/shared';
import type { MetadataRoute } from 'next';

export default function manifest(): MetadataRoute.Manifest {
Expand All @@ -8,8 +8,8 @@ export default function manifest(): MetadataRoute.Manifest {
description: 'A loyalty card app',
start_url: '/',
display: 'standalone',
theme_color: ICON_COLOR,
background_color: '#fff',
theme_color: PRIMARY_COLOR,
background_color: PRIMARY_COLOR,
orientation: 'portrait',
icons: [
{
Expand Down

0 comments on commit 5dba12b

Please sign in to comment.