import { SearchEngine, PresetWallpaper } from './types';
// Inlined SVG icons to avoid module resolution issues
const googleIcon = ``;
const baiduIcon = ``;
const bingIcon = ``;
const duckduckgoIcon = ``;
const bilibiliIcon = ``;
export const DEFAULT_BACKGROUND_IMAGE = "https://picsum.photos/1920/1080?grayscale&blur=2";
export const PRESET_WALLPAPERS: PresetWallpaper[] = [
{
name: 'Default',
type: 'image',
url: 'https://tc-new.z.wiki/autoupload/f/JPb3wcBYRgvdgjBZlDTRdWSEpzNQ5XwArLwhNo1hcymyl5f0KlZfm6UsKj-HyTuv/20250828/JmPj/3840X2160/light-background.png/webp'
},
{
name: 'Mountains',
type: 'image',
url: 'https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80',
thumbnail: 'https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=200&q=60'
},
{
name: 'Nebula',
type: 'image',
url: 'https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1920&q=80',
thumbnail: 'https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=200&q=60'
},
{
name: 'City',
type: 'image',
url: 'https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1920&q=80',
thumbnail: 'https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=200&q=60'
},
{
name: 'Rain',
type: 'video',
url: 'https://assets.mixkit.co/videos/preview/mixkit-rain-falling-on-the-window-glass-1634-large.mp4',
thumbnail: 'https://images.unsplash.com/photo-1515694346937-94d85e41e6f0?auto=format&fit=crop&w=200&q=60'
}
];
export const SEARCH_ENGINES: SearchEngine[] = [
{
name: 'Google',
urlPattern: 'https://www.google.com/search?q=',
icon: googleIcon
},
{
name: 'Baidu',
urlPattern: 'https://www.baidu.com/s?wd=',
icon: baiduIcon
},
{
name: 'Bing',
urlPattern: 'https://www.bing.com/search?q=',
icon: bingIcon
},
{
name: 'DuckDuckGo',
urlPattern: 'https://duckduckgo.com/?q=',
icon: duckduckgoIcon
},
{
name: 'Bilibili',
urlPattern: 'https://search.bilibili.com/all?keyword=',
icon: bilibiliIcon
},
];
export const THEMES = [
{ name: 'Neon Blue', hex: '#3b82f6' },
{ name: 'Electric Purple', hex: '#a855f7' },
{ name: 'Emerald Green', hex: '#10b981' },
{ name: 'Sunset Orange', hex: '#f97316' },
{ name: 'Hot Pink', hex: '#ec4899' },
{ name: 'Cyan Future', hex: '#06b6d4' },
{ name: 'Crimson Red', hex: '#ef4444' },
{ name: 'Golden', hex: '#eab308' },
];
export const ANIMATION_DURATION = "duration-500 ease-out";