9 lines
401 B
TypeScript
9 lines
401 B
TypeScript
import type { WallpaperOption } from '../types'
|
|
|
|
export const WALLPAPERS: WallpaperOption[] = [
|
|
{ id: 'default', label: 'Desert Gold', swatchClass: 'swatch-default' },
|
|
{ id: 'teal', label: 'Teal Sea', swatchClass: 'swatch-teal' },
|
|
{ id: 'gold', label: 'Rich Gold', swatchClass: 'swatch-gold' },
|
|
{ id: 'sapphire', label: 'Sapphire', swatchClass: 'swatch-sapphire' },
|
|
]
|