Skip to content

Commit a92318b

Browse files
Update index.js
1 parent 64d1612 commit a92318b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

js/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11933,7 +11933,7 @@ async function createFullscreenEmbed(url, options = {}) {
1193311933

1193411934
const brightnessValue = document.getElementById('wallpaper-brightness-slider').value;
1193511935
const contrastValue = document.getElementById('wallpaper-contrast-slider').value;
11936-
const openFilter = `blur(10px) brightness(${brightnessValue}%) contrast(${contrastValue}%)`;
11936+
const openFilter = `blur(50px) brightness(${brightnessValue}%) contrast(${contrastValue}%)`;
1193711937
document.body.style.setProperty('--wallpaper-filter', openFilter);
1193811938
document.body.style.setProperty('--bg-transform-scale', '1.25');
1193911939

@@ -12049,7 +12049,7 @@ async function createFullscreenEmbed(url, options = {}) {
1204912049

1205012050
const brightnessValue = document.getElementById('wallpaper-brightness-slider').value;
1205112051
const contrastValue = document.getElementById('wallpaper-contrast-slider').value;
12052-
const openFilter = `blur(10px) brightness(${brightnessValue}%) contrast(${contrastValue}%)`;
12052+
const openFilter = `blur(50px) brightness(${brightnessValue}%) contrast(${contrastValue}%)`;
1205312053
document.body.style.setProperty('--wallpaper-filter', openFilter);
1205412054
document.body.style.setProperty('--bg-transform-scale', '1.25');
1205512055

@@ -13531,7 +13531,7 @@ function setupDrawerInteractions() {
1353113531
// NEW: Apply opening effects on snap-back
1353213532
const brightnessValue = document.getElementById('wallpaper-brightness-slider').value;
1353313533
const contrastValue = document.getElementById('wallpaper-contrast-slider').value;
13534-
const openFilter = `blur(10px) brightness(${brightnessValue}%) contrast(${contrastValue}%)`;
13534+
const openFilter = `blur(50px) brightness(${brightnessValue}%) contrast(${contrastValue}%)`;
1353513535
document.body.style.setProperty('--wallpaper-filter', openFilter);
1353613536
document.body.style.setProperty('--bg-transform-scale', '1.25');
1353713537
}
@@ -18039,8 +18039,8 @@ function renderAppCards(container) {
1803918039
fallbackBg.style.backgroundImage = `url('${iconSrc}')`;
1804018040
fallbackBg.style.backgroundSize = 'cover';
1804118041
fallbackBg.style.backgroundPosition = 'center';
18042-
fallbackBg.style.filter = 'blur(10px)';
18043-
fallbackBg.style.transform = 'scale(1.1)';
18042+
fallbackBg.style.filter = 'blur(50px)';
18043+
fallbackBg.style.transform = 'scale(1.2)';
1804418044
card.appendChild(fallbackBg);
1804518045
card.style.backgroundColor = 'var(--background-color)';
1804618046
card.style.overflow = 'hidden';

0 commit comments

Comments
 (0)