cleanup logos
1
TODO.md
|
|
@ -13,6 +13,7 @@ Stuff to be added, in no particular order...
|
|||
|
||||
- Diffusers:
|
||||
- Add SD-XL Lora
|
||||
- Add ControlNet
|
||||
- Fix SD-XL Img2img/Inpaint
|
||||
- Add VAE direct load from safetensors
|
||||
- Fix Kandinsky 2.2 model
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 152 KiB |
BIN
html/logo.ico
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 92 KiB |
|
|
@ -25,7 +25,7 @@ async function preloadImages() {
|
|||
async function createSplash() {
|
||||
const dark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
|
||||
console.log('createSplash', { theme: dark ? 'dark' : 'light' });
|
||||
const num = Math.floor(Math.random() * 7) + 1;
|
||||
const num = Math.floor(11 * Math.random());
|
||||
const splash = `
|
||||
<div id="splash" class="splash" style="background: ${dark ? 'black' : 'white'}">
|
||||
<div class="loading"><div class="loader"></div></div>
|
||||
|
|
|
|||