Skip to content

Commit

Permalink
compress some images
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed May 12, 2024
1 parent 0bb490c commit c06ddab
Show file tree
Hide file tree
Showing 55 changed files with 5 additions and 5 deletions.
Binary file modified image/404/diamond.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/explosion_9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/flint_and_steel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/404/tnt_side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/bg_dark_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/bg_dark_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/bg_light_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/bg_light_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/snow0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/snow1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified image/background/snow2.png
Binary file modified image/background/snow3.png
Binary file modified image/background/snow_overlay.png
Binary file modified image/background/snow_overlay_small.png
Binary file modified image/home/16x9.png
Binary file modified image/home/addons.png
Binary file modified image/home/cf32.png
Binary file modified image/home/cf64.png
Binary file modified image/home/dungeons.png
Binary file modified image/home/f32.png
Binary file modified image/home/f64.png
Binary file modified image/home/mods.png
Binary file modified image/home/navbar-wordmark.png
Binary file modified image/home/wordmark.png
Binary file modified image/icon/32.png
Binary file modified image/icon/64.png
Binary file modified image/icon/FaithfulThing.png
Binary file modified image/icon/bedrock.png
Binary file modified image/icon/gone-fishin.png
Binary file modified image/icon/java.png
Binary file modified image/icon/optifine.png
Binary file modified image/pwa/app-192x192.png
Binary file modified image/pwa/app-512x512.png
Binary file modified image/pwa/app-maskable-512x512.png
Binary file modified image/pwa/apple-touch-180x180.png
Binary file modified image/pwa/favicon-16x16.png
Binary file modified image/pwa/favicon-32x32.png
Binary file modified image/redirect/classicfaithful.png
Binary file modified image/redirect/faithful.png
10 changes: 5 additions & 5 deletions js/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ window.changeMod = (change) => {
}

// update theme
if (theme.currentTheme === 'dark' || (theme.currentTheme === 'auto' && matchMedia('(prefers-color-scheme: dark)').matches)) {
css.href = '/css/dark.css'
} else {
css.href = '/css/light.css'
}
const isDark = (
theme.currentTheme === 'dark' ||
(theme.currentTheme === 'auto' && matchMedia('(prefers-color-scheme: dark)').matches)
)
css.href = isDark ? '/css/dark.css' : '/css/light.css'
}

changeMod(false)

0 comments on commit c06ddab

Please sign in to comment.