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: 'Bench',
type: 'image',
url: '/wallpapers/bench-9964046.jpg',
thumbnail: '/wallpapers/bench-9964046.jpg'
},
{
name: 'People',
type: 'image',
url: '/wallpapers/people-10019345.jpg',
thumbnail: '/wallpapers/people-10019345.jpg'
}
];
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";