- Use var(--weekly-bg) and var(--weekly-text) for sidebar background and text color so it matches the calendar in both light/dark mode - Add explicit label color rules for settings sidebar - Change manifest theme_color from blue (#0ea5e9) to white - Add responsive themeColor meta tags for light/dark preference v1.37.1
18 lines
546 B
TypeScript
18 lines
546 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: 'My Weekly To Do List',
|
|
short_name: 'Weekly ToDo',
|
|
description: 'A weekly task management app with calendar integration',
|
|
start_url: '/tasks',
|
|
display: 'standalone',
|
|
background_color: '#ffffff',
|
|
theme_color: '#ffffff',
|
|
icons: [
|
|
{ src: '/icons/icon-192.png', sizes: '192x192', type: 'image/png' },
|
|
{ src: '/icons/icon-512.png', sizes: '512x512', type: 'image/png' },
|
|
],
|
|
};
|
|
}
|