├── README.md ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc └── __init__.cpython-311.pyc ├── py ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-311.pyc │ ├── api.cpython-310.pyc │ ├── config.cpython-310.pyc │ ├── config.cpython-311.pyc │ ├── fooocusNodes.cpython-310.pyc │ ├── fooocusNodes.cpython-311.pyc │ ├── log.cpython-311.pyc │ ├── nodes.cpython-310.pyc │ ├── nodes.cpython-311.pyc │ ├── nodesbac.cpython-311.pyc │ ├── prompt.cpython-310.pyc │ └── save_image.cpython-311.pyc ├── api.py ├── extras │ ├── __pycache__ │ │ ├── expansion.cpython-310.pyc │ │ ├── expansion.cpython-311.pyc │ │ ├── preprocessors.cpython-310.pyc │ │ ├── vae_interpose.cpython-310.pyc │ │ └── vae_interpose.cpython-311.pyc │ ├── expansion.py │ ├── preprocessors.py │ └── vae_interpose.py ├── fooocusNodes.py ├── fooocus_modules │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── advanced_parameters.cpython-310.pyc │ │ ├── advanced_parameters.cpython-311.pyc │ │ ├── anisotropic.cpython-310.pyc │ │ ├── anisotropic.cpython-311.pyc │ │ ├── async_worker.cpython-310.pyc │ │ ├── auth.cpython-310.pyc │ │ ├── config.cpython-310.pyc │ │ ├── config.cpython-311.pyc │ │ ├── constants.cpython-310.pyc │ │ ├── constants.cpython-311.pyc │ │ ├── core.cpython-310.pyc │ │ ├── core.cpython-311.pyc │ │ ├── default_pipeline.cpython-310.pyc │ │ ├── default_pipeline.cpython-311.pyc │ │ ├── flags.cpython-310.pyc │ │ ├── gradio_hijack.cpython-310.pyc │ │ ├── html.cpython-310.pyc │ │ ├── inpaint_worker.cpython-310.pyc │ │ ├── inpaint_worker.cpython-311.pyc │ │ ├── launch_util.cpython-310.pyc │ │ ├── localization.cpython-310.pyc │ │ ├── lora.cpython-310.pyc │ │ ├── lora.cpython-311.pyc │ │ ├── meta_parser.cpython-310.pyc │ │ ├── model_loader.cpython-310.pyc │ │ ├── ops.cpython-310.pyc │ │ ├── ops.cpython-311.pyc │ │ ├── patch.cpython-310.pyc │ │ ├── patch.cpython-311.pyc │ │ ├── patch_clip.cpython-310.pyc │ │ ├── patch_clip.cpython-311.pyc │ │ ├── patch_precision.cpython-310.pyc │ │ ├── patch_precision.cpython-311.pyc │ │ ├── private_logger.cpython-310.pyc │ │ ├── sample_hijack.cpython-310.pyc │ │ ├── sample_hijack.cpython-311.pyc │ │ ├── sdxl_styles.cpython-310.pyc │ │ ├── style_sorter.cpython-310.pyc │ │ ├── ui_gradio_extensions.cpython-310.pyc │ │ ├── upscaler.cpython-310.pyc │ │ ├── upscaler.cpython-311.pyc │ │ ├── util.cpython-310.pyc │ │ └── util.cpython-311.pyc │ ├── advanced_parameters.py │ ├── anisotropic.py │ ├── async_worker.py │ ├── auth.py │ ├── config.py │ ├── constants.py │ ├── core.py │ ├── default_pipeline.py │ ├── flags.py │ ├── gradio_hijack.py │ ├── html.py │ ├── inpaint_worker.py │ ├── launch_util.py │ ├── localization.py │ ├── lora.py │ ├── meta_parser.py │ ├── model_loader.py │ ├── ops.py │ ├── patch.py │ ├── patch_clip.py │ ├── patch_precision.py │ ├── private_logger.py │ ├── sample_hijack.py │ ├── sdxl_styles.py │ ├── style_sorter.py │ ├── ui_gradio_extensions.py │ ├── upscaler.py │ └── util.py ├── ldm_patched │ ├── contrib │ │ ├── __pycache__ │ │ │ ├── external.cpython-310.pyc │ │ │ ├── external.cpython-311.pyc │ │ │ ├── external_custom_sampler.cpython-310.pyc │ │ │ ├── external_custom_sampler.cpython-311.pyc │ │ │ ├── external_freelunch.cpython-310.pyc │ │ │ ├── external_freelunch.cpython-311.pyc │ │ │ ├── external_model_advanced.cpython-310.pyc │ │ │ ├── external_model_advanced.cpython-311.pyc │ │ │ ├── external_upscale_model.cpython-310.pyc │ │ │ └── external_upscale_model.cpython-311.pyc │ │ ├── external.py │ │ ├── external_canny.py │ │ ├── external_clip_sdxl.py │ │ ├── external_compositing.py │ │ ├── external_custom_sampler.py │ │ ├── external_freelunch.py │ │ ├── external_hypernetwork.py │ │ ├── external_hypertile.py │ │ ├── external_images.py │ │ ├── external_latent.py │ │ ├── external_mask.py │ │ ├── external_model_advanced.py │ │ ├── external_model_downscale.py │ │ ├── external_model_merging.py │ │ ├── external_perpneg.py │ │ ├── external_post_processing.py │ │ ├── external_rebatch.py │ │ ├── external_sag.py │ │ ├── external_stable3d.py │ │ ├── external_tomesd.py │ │ ├── external_upscale_model.py │ │ └── external_video_model.py │ ├── controlnet │ │ ├── __pycache__ │ │ │ ├── cldm.cpython-310.pyc │ │ │ └── cldm.cpython-311.pyc │ │ └── cldm.py │ ├── k_diffusion │ │ ├── __pycache__ │ │ │ ├── sampling.cpython-310.pyc │ │ │ ├── sampling.cpython-311.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ └── utils.cpython-311.pyc │ │ ├── sampling.py │ │ └── utils.py │ ├── ldm │ │ ├── __pycache__ │ │ │ ├── util.cpython-310.pyc │ │ │ └── util.cpython-311.pyc │ │ ├── models │ │ │ ├── __pycache__ │ │ │ │ ├── autoencoder.cpython-310.pyc │ │ │ │ └── autoencoder.cpython-311.pyc │ │ │ └── autoencoder.py │ │ ├── modules │ │ │ ├── __pycache__ │ │ │ │ ├── attention.cpython-310.pyc │ │ │ │ ├── attention.cpython-311.pyc │ │ │ │ ├── ema.cpython-310.pyc │ │ │ │ ├── ema.cpython-311.pyc │ │ │ │ ├── sub_quadratic_attention.cpython-310.pyc │ │ │ │ └── sub_quadratic_attention.cpython-311.pyc │ │ │ ├── attention.py │ │ │ ├── diffusionmodules │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── model.cpython-310.pyc │ │ │ │ │ ├── model.cpython-311.pyc │ │ │ │ │ ├── openaimodel.cpython-310.pyc │ │ │ │ │ ├── openaimodel.cpython-311.pyc │ │ │ │ │ ├── upscaling.cpython-310.pyc │ │ │ │ │ ├── upscaling.cpython-311.pyc │ │ │ │ │ ├── util.cpython-310.pyc │ │ │ │ │ └── util.cpython-311.pyc │ │ │ │ ├── model.py │ │ │ │ ├── openaimodel.py │ │ │ │ ├── upscaling.py │ │ │ │ └── util.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── distributions.cpython-310.pyc │ │ │ │ │ └── distributions.cpython-311.pyc │ │ │ │ └── distributions.py │ │ │ ├── ema.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ ├── noise_aug_modules.cpython-310.pyc │ │ │ │ │ └── noise_aug_modules.cpython-311.pyc │ │ │ │ └── noise_aug_modules.py │ │ │ ├── sub_quadratic_attention.py │ │ │ └── temporal_ae.py │ │ └── util.py │ ├── modules │ │ ├── __pycache__ │ │ │ ├── args_parser.cpython-310.pyc │ │ │ ├── args_parser.cpython-311.pyc │ │ │ ├── checkpoint_pickle.cpython-310.pyc │ │ │ ├── checkpoint_pickle.cpython-311.pyc │ │ │ ├── clip_model.cpython-310.pyc │ │ │ ├── clip_model.cpython-311.pyc │ │ │ ├── clip_vision.cpython-310.pyc │ │ │ ├── clip_vision.cpython-311.pyc │ │ │ ├── conds.cpython-310.pyc │ │ │ ├── conds.cpython-311.pyc │ │ │ ├── controlnet.cpython-310.pyc │ │ │ ├── controlnet.cpython-311.pyc │ │ │ ├── diffusers_convert.cpython-310.pyc │ │ │ ├── diffusers_convert.cpython-311.pyc │ │ │ ├── diffusers_load.cpython-310.pyc │ │ │ ├── diffusers_load.cpython-311.pyc │ │ │ ├── gligen.cpython-310.pyc │ │ │ ├── gligen.cpython-311.pyc │ │ │ ├── latent_formats.cpython-310.pyc │ │ │ ├── latent_formats.cpython-311.pyc │ │ │ ├── lora.cpython-310.pyc │ │ │ ├── lora.cpython-311.pyc │ │ │ ├── model_base.cpython-310.pyc │ │ │ ├── model_base.cpython-311.pyc │ │ │ ├── model_detection.cpython-310.pyc │ │ │ ├── model_detection.cpython-311.pyc │ │ │ ├── model_management.cpython-310.pyc │ │ │ ├── model_management.cpython-311.pyc │ │ │ ├── model_patcher.cpython-310.pyc │ │ │ ├── model_patcher.cpython-311.pyc │ │ │ ├── model_sampling.cpython-310.pyc │ │ │ ├── model_sampling.cpython-311.pyc │ │ │ ├── ops.cpython-310.pyc │ │ │ ├── ops.cpython-311.pyc │ │ │ ├── options.cpython-310.pyc │ │ │ ├── options.cpython-311.pyc │ │ │ ├── sample.cpython-310.pyc │ │ │ ├── sample.cpython-311.pyc │ │ │ ├── samplers.cpython-310.pyc │ │ │ ├── samplers.cpython-311.pyc │ │ │ ├── sd.cpython-310.pyc │ │ │ ├── sd.cpython-311.pyc │ │ │ ├── sd1_clip.cpython-310.pyc │ │ │ ├── sd1_clip.cpython-311.pyc │ │ │ ├── sd2_clip.cpython-310.pyc │ │ │ ├── sd2_clip.cpython-311.pyc │ │ │ ├── sdxl_clip.cpython-310.pyc │ │ │ ├── sdxl_clip.cpython-311.pyc │ │ │ ├── supported_models.cpython-310.pyc │ │ │ ├── supported_models.cpython-311.pyc │ │ │ ├── supported_models_base.cpython-310.pyc │ │ │ ├── supported_models_base.cpython-311.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ └── utils.cpython-311.pyc │ │ ├── args_parser.py │ │ ├── checkpoint_pickle.py │ │ ├── clip_config_bigg.json │ │ ├── clip_model.py │ │ ├── clip_vision.py │ │ ├── clip_vision_config_g.json │ │ ├── clip_vision_config_h.json │ │ ├── clip_vision_config_vitl.json │ │ ├── conds.py │ │ ├── controlnet.py │ │ ├── diffusers_convert.py │ │ ├── diffusers_load.py │ │ ├── gligen.py │ │ ├── latent_formats.py │ │ ├── lora.py │ │ ├── model_base.py │ │ ├── model_detection.py │ │ ├── model_management.py │ │ ├── model_patcher.py │ │ ├── model_sampling.py │ │ ├── ops.py │ │ ├── options.py │ │ ├── sample.py │ │ ├── samplers.py │ │ ├── sd.py │ │ ├── sd1_clip.py │ │ ├── sd1_clip_config.json │ │ ├── sd1_tokenizer │ │ │ ├── merges.txt │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ ├── sd2_clip.py │ │ ├── sd2_clip_config.json │ │ ├── sdxl_clip.py │ │ ├── supported_models.py │ │ ├── supported_models_base.py │ │ └── utils.py │ ├── pfn │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── model_loading.cpython-310.pyc │ │ │ ├── model_loading.cpython-311.pyc │ │ │ ├── types.cpython-310.pyc │ │ │ └── types.cpython-311.pyc │ │ ├── architecture │ │ │ ├── DAT.py │ │ │ ├── HAT.py │ │ │ ├── LICENSE-DAT │ │ │ ├── LICENSE-ESRGAN │ │ │ ├── LICENSE-HAT │ │ │ ├── LICENSE-RealESRGAN │ │ │ ├── LICENSE-SCUNet │ │ │ ├── LICENSE-SPSR │ │ │ ├── LICENSE-SwiftSRGAN │ │ │ ├── LICENSE-Swin2SR │ │ │ ├── LICENSE-SwinIR │ │ │ ├── LICENSE-lama │ │ │ ├── LaMa.py │ │ │ ├── OmniSR │ │ │ │ ├── ChannelAttention.py │ │ │ │ ├── LICENSE │ │ │ │ ├── OSA.py │ │ │ │ ├── OSAG.py │ │ │ │ ├── OmniSR.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── OSA.cpython-310.pyc │ │ │ │ │ ├── OSA.cpython-311.pyc │ │ │ │ │ ├── OSAG.cpython-310.pyc │ │ │ │ │ ├── OSAG.cpython-311.pyc │ │ │ │ │ ├── OmniSR.cpython-310.pyc │ │ │ │ │ ├── OmniSR.cpython-311.pyc │ │ │ │ │ ├── esa.cpython-310.pyc │ │ │ │ │ ├── esa.cpython-311.pyc │ │ │ │ │ ├── layernorm.cpython-310.pyc │ │ │ │ │ ├── layernorm.cpython-311.pyc │ │ │ │ │ ├── pixelshuffle.cpython-310.pyc │ │ │ │ │ └── pixelshuffle.cpython-311.pyc │ │ │ │ ├── esa.py │ │ │ │ ├── layernorm.py │ │ │ │ └── pixelshuffle.py │ │ │ ├── RRDB.py │ │ │ ├── SCUNet.py │ │ │ ├── SPSR.py │ │ │ ├── SRVGG.py │ │ │ ├── SwiftSRGAN.py │ │ │ ├── Swin2SR.py │ │ │ ├── SwinIR.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── DAT.cpython-310.pyc │ │ │ │ ├── DAT.cpython-311.pyc │ │ │ │ ├── HAT.cpython-310.pyc │ │ │ │ ├── HAT.cpython-311.pyc │ │ │ │ ├── LaMa.cpython-310.pyc │ │ │ │ ├── LaMa.cpython-311.pyc │ │ │ │ ├── RRDB.cpython-310.pyc │ │ │ │ ├── RRDB.cpython-311.pyc │ │ │ │ ├── SCUNet.cpython-310.pyc │ │ │ │ ├── SCUNet.cpython-311.pyc │ │ │ │ ├── SPSR.cpython-310.pyc │ │ │ │ ├── SPSR.cpython-311.pyc │ │ │ │ ├── SRVGG.cpython-310.pyc │ │ │ │ ├── SRVGG.cpython-311.pyc │ │ │ │ ├── SwiftSRGAN.cpython-310.pyc │ │ │ │ ├── SwiftSRGAN.cpython-311.pyc │ │ │ │ ├── Swin2SR.cpython-310.pyc │ │ │ │ ├── Swin2SR.cpython-311.pyc │ │ │ │ ├── SwinIR.cpython-310.pyc │ │ │ │ ├── SwinIR.cpython-311.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── block.cpython-310.pyc │ │ │ │ └── block.cpython-311.pyc │ │ │ ├── block.py │ │ │ ├── face │ │ │ │ ├── LICENSE-GFPGAN │ │ │ │ ├── LICENSE-RestoreFormer │ │ │ │ ├── LICENSE-codeformer │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── codeformer.cpython-310.pyc │ │ │ │ │ ├── codeformer.cpython-311.pyc │ │ │ │ │ ├── gfpganv1_clean_arch.cpython-310.pyc │ │ │ │ │ ├── gfpganv1_clean_arch.cpython-311.pyc │ │ │ │ │ ├── restoreformer_arch.cpython-310.pyc │ │ │ │ │ ├── restoreformer_arch.cpython-311.pyc │ │ │ │ │ ├── stylegan2_clean_arch.cpython-310.pyc │ │ │ │ │ └── stylegan2_clean_arch.cpython-311.pyc │ │ │ │ ├── arcface_arch.py │ │ │ │ ├── codeformer.py │ │ │ │ ├── fused_act.py │ │ │ │ ├── gfpgan_bilinear_arch.py │ │ │ │ ├── gfpganv1_arch.py │ │ │ │ ├── gfpganv1_clean_arch.py │ │ │ │ ├── restoreformer_arch.py │ │ │ │ ├── stylegan2_arch.py │ │ │ │ ├── stylegan2_bilinear_arch.py │ │ │ │ ├── stylegan2_clean_arch.py │ │ │ │ └── upfirdn2d.py │ │ │ └── timm │ │ │ │ ├── LICENSE │ │ │ │ ├── __pycache__ │ │ │ │ ├── drop.cpython-310.pyc │ │ │ │ ├── drop.cpython-311.pyc │ │ │ │ ├── helpers.cpython-310.pyc │ │ │ │ ├── helpers.cpython-311.pyc │ │ │ │ ├── weight_init.cpython-310.pyc │ │ │ │ └── weight_init.cpython-311.pyc │ │ │ │ ├── drop.py │ │ │ │ ├── helpers.py │ │ │ │ └── weight_init.py │ │ ├── model_loading.py │ │ └── types.py │ ├── t2ia │ │ ├── __pycache__ │ │ │ ├── adapter.cpython-310.pyc │ │ │ └── adapter.cpython-311.pyc │ │ └── adapter.py │ ├── taesd │ │ ├── __pycache__ │ │ │ ├── taesd.cpython-310.pyc │ │ │ └── taesd.cpython-311.pyc │ │ └── taesd.py │ ├── unipc │ │ ├── __pycache__ │ │ │ ├── uni_pc.cpython-310.pyc │ │ │ └── uni_pc.cpython-311.pyc │ │ └── uni_pc.py │ └── utils │ │ ├── __pycache__ │ │ ├── latent_visualization.cpython-310.pyc │ │ ├── latent_visualization.cpython-311.pyc │ │ ├── path_utils.cpython-310.pyc │ │ └── path_utils.cpython-311.pyc │ │ ├── latent_visualization.py │ │ └── path_utils.py └── prompt.py ├── resources ├── fooocus_styles.json └── fooocus_styles_cn.json ├── styles └── samples │ ├── Abstract Expressionism.jpg │ ├── Academia.jpg │ ├── Action Figure.jpg │ ├── Adorable 3D Character.jpg │ ├── Adorable Kawaii.jpg │ ├── Ads Advertising.jpg │ ├── Ads Automotive.jpg │ ├── Ads Corporate.jpg │ ├── Ads Fashion Editorial.jpg │ ├── Ads Food Photography.jpg │ ├── Ads Gourmet Food Photography.jpg │ ├── Ads Luxury.jpg │ ├── Ads Real Estate.jpg │ ├── Ads Retail.jpg │ ├── Art Deco.jpg │ ├── Art Nouveau.jpg │ ├── Artstyle Abstract Expressionism.jpg │ ├── Artstyle Abstract.jpg │ ├── Artstyle Art Deco.jpg │ ├── Artstyle Art Nouveau.jpg │ ├── Artstyle Constructivist.jpg │ ├── Artstyle Cubist.jpg │ ├── Artstyle Expressionist.jpg │ ├── Artstyle Graffiti.jpg │ ├── Artstyle Hyperrealism.jpg │ ├── Artstyle Impressionist.jpg │ ├── Artstyle Pointillism.jpg │ ├── Artstyle Pop Art.jpg │ ├── Artstyle Psychedelic.jpg │ ├── Artstyle Renaissance.jpg │ ├── Artstyle Steampunk.jpg │ ├── Artstyle Surrealist.jpg │ ├── Artstyle Typography.jpg │ ├── Artstyle Watercolor.jpg │ ├── Astral Aura.jpg │ ├── Avant Garde.jpg │ ├── Baroque.jpg │ ├── Bauhaus Style Poster.jpg │ ├── Blueprint Schematic Drawing.jpg │ ├── Caricature.jpg │ ├── Cel Shaded Art.jpg │ ├── Character Design Sheet.jpg │ ├── Cinematic Diva.jpg │ ├── Classicism Art.jpg │ ├── Color Field Painting.jpg │ ├── Colored Pencil Art.jpg │ ├── Conceptual Art.jpg │ ├── Constructivism.jpg │ ├── Cubism.jpg │ ├── Dadaism.jpg │ ├── Dark Fantasy.jpg │ ├── Dark Moody Atmosphere.jpg │ ├── Dll Anime.jpg │ ├── Dll Photograph.jpg │ ├── Dmt Art Style.jpg │ ├── Doodle Art.jpg │ ├── Double Exposure.jpg │ ├── Dripping Paint Splatter Art.jpg │ ├── Expressionism.jpg │ ├── Faded Polaroid Photo.jpg │ ├── Fauvism.jpg │ ├── Flat 2d Art.jpg │ ├── Fooocus Cinematic.jpg │ ├── Fooocus Enhance.jpg │ ├── Fooocus Masterpiece.jpg │ ├── Fooocus Negative.jpg │ ├── Fooocus Photograph.jpg │ ├── Fooocus Sharp.jpg │ ├── Fooocus V2.jpg │ ├── Fortnite Art Style.jpg │ ├── Futurism.jpg │ ├── Futuristic Biomechanical Cyberpunk.jpg │ ├── Futuristic Biomechanical.jpg │ ├── Futuristic Cybernetic Robot.jpg │ ├── Futuristic Cybernetic.jpg │ ├── Futuristic Cyberpunk Cityscape.jpg │ ├── Futuristic Futuristic.jpg │ ├── Futuristic Retro Cyberpunk.jpg │ ├── Futuristic Retro Futurism.jpg │ ├── Futuristic Sci Fi.jpg │ ├── Futuristic Vaporwave.jpg │ ├── Game Bubble Bobble.jpg │ ├── Game Cyberpunk Game.jpg │ ├── Game Fighting Game.jpg │ ├── Game Gta.jpg │ ├── Game Mario.jpg │ ├── Game Minecraft.jpg │ ├── Game Pokemon.jpg │ ├── Game Retro Arcade.jpg │ ├── Game Retro Game.jpg │ ├── Game Rpg Fantasy Game.jpg │ ├── Game Strategy Game.jpg │ ├── Game Streetfighter.jpg │ ├── Game Zelda.jpg │ ├── Glitchcore.jpg │ ├── Glo Fi.jpg │ ├── Googie Art Style.jpg │ ├── Graffiti Art.jpg │ ├── Harlem Renaissance Art.jpg │ ├── High Fashion.jpg │ ├── Idyllic.jpg │ ├── Impressionism.jpg │ ├── Infographic Drawing.jpg │ ├── Ink Dripping Drawing.jpg │ ├── Japanese Ink Drawing.jpg │ ├── Knolling Photography.jpg │ ├── Light Cheery Atmosphere.jpg │ ├── Logo Design.jpg │ ├── Luxurious Elegance.jpg │ ├── MK Pebble Art.jpg │ ├── MRE Ancient Illustration.jpg │ ├── MRE Anime.jpg │ ├── MRE Artistic Vision.jpg │ ├── MRE Bad Dream.jpg │ ├── MRE Brave Art.jpg │ ├── MRE Cinematic Dynamic.jpg │ ├── MRE Comic.jpg │ ├── MRE Dark Cyberpunk.jpg │ ├── MRE Dark Dream.jpg │ ├── MRE Dynamic Illustration.jpg │ ├── MRE Elemental Art.jpg │ ├── MRE Gloomy Art.jpg │ ├── MRE Heroic Fantasy.jpg │ ├── MRE Lyrical Geometry.jpg │ ├── MRE Manga.jpg │ ├── MRE Space Art.jpg │ ├── MRE Spontaneous Picture.jpg │ ├── MRE Sumi E Detailed.jpg │ ├── MRE Sumi E Symbolic.jpg │ ├── MRE Surreal Painting.jpg │ ├── MRE Undead Art.jpg │ ├── MRE Underground.jpg │ ├── Macro Photography.jpg │ ├── Mandola Art.jpg │ ├── Marker Drawing.jpg │ ├── Medievalism.jpg │ ├── Minimalism.jpg │ ├── Misc Architectural.jpg │ ├── Misc Disco.jpg │ ├── Misc Dreamscape.jpg │ ├── Misc Dystopian.jpg │ ├── Misc Fairy Tale.jpg │ ├── Misc Gothic.jpg │ ├── Misc Grunge.jpg │ ├── Misc Horror.jpg │ ├── Misc Kawaii.jpg │ ├── Misc Lovecraftian.jpg │ ├── Misc Macabre.jpg │ ├── Misc Manga.jpg │ ├── Misc Metropolis.jpg │ ├── Misc Minimalist.jpg │ ├── Misc Monochrome.jpg │ ├── Misc Nautical.jpg │ ├── Misc Space.jpg │ ├── Misc Stained Glass.jpg │ ├── Misc Techwear Fashion.jpg │ ├── Misc Tribal.jpg │ ├── Misc Zentangle.jpg │ ├── Mk Adnate Style.jpg │ ├── Mk Afrofuturism.jpg │ ├── Mk Albumen Print.jpg │ ├── Mk Alcohol Ink Art.jpg │ ├── Mk Andy Warhol.jpg │ ├── Mk Anthotype Print.jpg │ ├── Mk Aquatint Print.jpg │ ├── Mk Atompunk.jpg │ ├── Mk Basquiat.jpg │ ├── Mk Bauhaus Style.jpg │ ├── Mk Blacklight Paint.jpg │ ├── Mk Bromoil Print.jpg │ ├── Mk Calotype Print.jpg │ ├── Mk Carnival Glass.jpg │ ├── Mk Chicano Art.jpg │ ├── Mk Chromolithography.jpg │ ├── Mk Cibulak Porcelain.jpg │ ├── Mk Color Sketchnote.jpg │ ├── Mk Coloring Book.jpg │ ├── Mk Constructivism.jpg │ ├── Mk Cross Processing Print.jpg │ ├── Mk Cross Stitching.jpg │ ├── Mk Cyanotype Print.jpg │ ├── Mk Dayak Art.jpg │ ├── Mk De Stijl.jpg │ ├── Mk Dufaycolor Photograph.jpg │ ├── Mk Embroidery.jpg │ ├── Mk Encaustic Paint.jpg │ ├── Mk Fayum Portrait.jpg │ ├── Mk Gond Painting.jpg │ ├── Mk Gyotaku.jpg │ ├── Mk Halftone Print.jpg │ ├── Mk Herbarium.jpg │ ├── Mk Illuminated Manuscript.jpg │ ├── Mk Inuit Carving.jpg │ ├── Mk Kalighat Painting.jpg │ ├── Mk Lite Brite Art.jpg │ ├── Mk Luminogram.jpg │ ├── Mk Madhubani Painting.jpg │ ├── Mk Mokume Gane.jpg │ ├── Mk Mosaic.jpg │ ├── Mk One Line Art.jpg │ ├── Mk Palekh.jpg │ ├── Mk Patachitra Painting.jpg │ ├── Mk Pichwai Painting.jpg │ ├── Mk Pictorialism.jpg │ ├── Mk Pollock.jpg │ ├── Mk Punk Collage.jpg │ ├── Mk Ron English Style.jpg │ ├── Mk Samoan Art Inspired.jpg │ ├── Mk Scrimshaw.jpg │ ├── Mk Shepard Fairey Style.jpg │ ├── Mk Shibori.jpg │ ├── Mk Singer Sargent.jpg │ ├── Mk Suminagashi.jpg │ ├── Mk Tlingit Art.jpg │ ├── Mk Ukiyo E.jpg │ ├── Mk Van Gogh.jpg │ ├── Mk Vintage Airline Poster.jpg │ ├── Mk Vintage Travel Poster.jpg │ ├── Mk Vitreous Enamel.jpg │ ├── Neo Baroque.jpg │ ├── Neo Byzantine.jpg │ ├── Neo Futurism.jpg │ ├── Neo Impressionism.jpg │ ├── Neo Rococo.jpg │ ├── Neoclassicism.jpg │ ├── None.jpg │ ├── Op Art.jpg │ ├── Ornate And Intricate.jpg │ ├── Papercraft Collage.jpg │ ├── Papercraft Flat Papercut.jpg │ ├── Papercraft Kirigami.jpg │ ├── Papercraft Paper Mache.jpg │ ├── Papercraft Paper Quilling.jpg │ ├── Papercraft Papercut Collage.jpg │ ├── Papercraft Papercut Shadow Box.jpg │ ├── Papercraft Stacked Papercut.jpg │ ├── Papercraft Thick Layered Papercut.jpg │ ├── Pencil Sketch Drawing.jpg │ ├── Photo Alien.jpg │ ├── Photo Film Noir.jpg │ ├── Photo Glamour.jpg │ ├── Photo Hdr.jpg │ ├── Photo Iphone Photographic.jpg │ ├── Photo Long Exposure.jpg │ ├── Photo Neon Noir.jpg │ ├── Photo Silhouette.jpg │ ├── Photo Tilt Shift.jpg │ ├── Pop Art 2.jpg │ ├── Rococo.jpg │ ├── SAI 3D Model.jpg │ ├── SAI Analog Film.jpg │ ├── SAI Anime.jpg │ ├── SAI Cinematic.jpg │ ├── SAI Comic Book.jpg │ ├── SAI Craft Clay.jpg │ ├── SAI Digital Art.jpg │ ├── SAI Enhance.jpg │ ├── SAI Fantasy Art.jpg │ ├── SAI Isometric.jpg │ ├── SAI Line Art.jpg │ ├── SAI Lowpoly.jpg │ ├── SAI Neonpunk.jpg │ ├── SAI Origami.jpg │ ├── SAI Photographic.jpg │ ├── SAI Pixel Art.jpg │ ├── SAI Texture.jpg │ ├── Silhouette Art.jpg │ ├── Simple Vector Art.jpg │ ├── Sketchup.jpg │ ├── Steampunk 2.jpg │ ├── Sticker Designs.jpg │ ├── Suprematism.jpg │ ├── Surrealism.jpg │ ├── Terragen.jpg │ ├── Tranquil Relaxing Atmosphere.jpg │ ├── Vibrant Rim Light.jpg │ ├── Volumetric Lighting.jpg │ ├── Watercolor 2.jpg │ ├── Whimsical And Playful.jpg │ ├── abstract_expressionism.jpg │ ├── action_figure.jpg │ ├── adorable_3d_character.jpg │ ├── adorable_kawaii.jpg │ ├── ads_advertising.jpg │ ├── ads_automotive.jpg │ ├── ads_corporate.jpg │ ├── ads_fashion_editorial.jpg │ ├── ads_food_photography.jpg │ ├── ads_gourmet_food_photography.jpg │ ├── ads_luxury.jpg │ ├── ads_real_estate.jpg │ ├── ads_retail.jpg │ ├── art_deco.jpg │ ├── art_nouveau.jpg │ ├── artstyle_abstract.jpg │ ├── artstyle_abstract_expressionism.jpg │ ├── artstyle_art_deco.jpg │ ├── artstyle_art_nouveau.jpg │ ├── artstyle_constructivist.jpg │ ├── artstyle_cubist.jpg │ ├── artstyle_expressionist.jpg │ ├── artstyle_graffiti.jpg │ ├── artstyle_hyperrealism.jpg │ ├── artstyle_impressionist.jpg │ ├── artstyle_pointillism.jpg │ ├── artstyle_pop_art.jpg │ ├── artstyle_psychedelic.jpg │ ├── artstyle_renaissance.jpg │ ├── artstyle_steampunk.jpg │ ├── artstyle_surrealist.jpg │ ├── artstyle_typography.jpg │ ├── artstyle_watercolor.jpg │ ├── astral_aura.jpg │ ├── avant_garde.jpg │ ├── bauhaus_style_poster.jpg │ ├── blueprint_schematic_drawing.jpg │ ├── cel_shaded_art.jpg │ ├── character_design_sheet.jpg │ ├── cinematic_diva.jpg │ ├── classicism_art.jpg │ ├── color_field_painting.jpg │ ├── colored_pencil_art.jpg │ ├── conceptual_art.jpg │ ├── dark_fantasy.jpg │ ├── dark_moody_atmosphere.jpg │ ├── dll_anime.jpg │ ├── dll_photograph.jpg │ ├── dmt_art_style.jpg │ ├── doodle_art.jpg │ ├── double_exposure.jpg │ ├── dripping_paint_splatter_art.jpg │ ├── faded_polaroid_photo.jpg │ ├── flat_2d_art.jpg │ ├── fooocus_cinematic.jpg │ ├── fooocus_enhance.jpg │ ├── fooocus_masterpiece.jpg │ ├── fooocus_negative.jpg │ ├── fooocus_photograph.jpg │ ├── fooocus_sharp.jpg │ ├── fooocus_v2.jpg │ ├── fortnite_art_style.jpg │ ├── futuristic_biomechanical.jpg │ ├── futuristic_biomechanical_cyberpunk.jpg │ ├── futuristic_cybernetic.jpg │ ├── futuristic_cybernetic_robot.jpg │ ├── futuristic_cyberpunk_cityscape.jpg │ ├── futuristic_futuristic.jpg │ ├── futuristic_retro_cyberpunk.jpg │ ├── futuristic_retro_futurism.jpg │ ├── futuristic_sci_fi.jpg │ ├── futuristic_vaporwave.jpg │ ├── game_bubble_bobble.jpg │ ├── game_cyberpunk_game.jpg │ ├── game_fighting_game.jpg │ ├── game_gta.jpg │ ├── game_mario.jpg │ ├── game_minecraft.jpg │ ├── game_pokemon.jpg │ ├── game_retro_arcade.jpg │ ├── game_retro_game.jpg │ ├── game_rpg_fantasy_game.jpg │ ├── game_strategy_game.jpg │ ├── game_streetfighter.jpg │ ├── game_zelda.jpg │ ├── glo_fi.jpg │ ├── googie_art_style.jpg │ ├── graffiti_art.jpg │ ├── harlem_renaissance_art.jpg │ ├── high_fashion.jpg │ ├── infographic_drawing.jpg │ ├── ink_dripping_drawing.jpg │ ├── japanese_ink_drawing.jpg │ ├── knolling_photography.jpg │ ├── light_cheery_atmosphere.jpg │ ├── log.html │ ├── logo_design.jpg │ ├── luxurious_elegance.jpg │ ├── macro_photography.jpg │ ├── mandola_art.jpg │ ├── marker_drawing.jpg │ ├── misc_architectural.jpg │ ├── misc_disco.jpg │ ├── misc_dreamscape.jpg │ ├── misc_dystopian.jpg │ ├── misc_fairy_tale.jpg │ ├── misc_gothic.jpg │ ├── misc_grunge.jpg │ ├── misc_horror.jpg │ ├── misc_kawaii.jpg │ ├── misc_lovecraftian.jpg │ ├── misc_macabre.jpg │ ├── misc_manga.jpg │ ├── misc_metropolis.jpg │ ├── misc_minimalist.jpg │ ├── misc_monochrome.jpg │ ├── misc_nautical.jpg │ ├── misc_space.jpg │ ├── misc_stained_glass.jpg │ ├── misc_techwear_fashion.jpg │ ├── misc_tribal.jpg │ ├── misc_zentangle.jpg │ ├── mk_adnate_style.jpg │ ├── mk_afrofuturism.jpg │ ├── mk_albumen_print.jpg │ ├── mk_alcohol_ink_art.jpg │ ├── mk_andy_warhol.jpg │ ├── mk_anthotype_print.jpg │ ├── mk_aquatint_print.jpg │ ├── mk_atompunk.jpg │ ├── mk_basquiat.jpg │ ├── mk_bauhaus_style.jpg │ ├── mk_blacklight_paint.jpg │ ├── mk_bromoil_print.jpg │ ├── mk_calotype_print.jpg │ ├── mk_carnival_glass.jpg │ ├── mk_chicano_art.jpg │ ├── mk_chromolithography.jpg │ ├── mk_cibulak_porcelain.jpg │ ├── mk_color_sketchnote.jpg │ ├── mk_coloring_book.jpg │ ├── mk_constructivism.jpg │ ├── mk_cross_processing_print.jpg │ ├── mk_cross_stitching.jpg │ ├── mk_cyanotype_print.jpg │ ├── mk_dayak_art.jpg │ ├── mk_de_stijl.jpg │ ├── mk_dufaycolor_photograph.jpg │ ├── mk_embroidery.jpg │ ├── mk_encaustic_paint.jpg │ ├── mk_fayum_portrait.jpg │ ├── mk_gond_painting.jpg │ ├── mk_gyotaku.jpg │ ├── mk_halftone_print.jpg │ ├── mk_herbarium.jpg │ ├── mk_illuminated_manuscript.jpg │ ├── mk_inuit_carving.jpg │ ├── mk_kalighat_painting.jpg │ ├── mk_lite_brite_art.jpg │ ├── mk_luminogram.jpg │ ├── mk_madhubani_painting.jpg │ ├── mk_mokume_gane.jpg │ ├── mk_mosaic.jpg │ ├── mk_one_line_art.jpg │ ├── mk_palekh.jpg │ ├── mk_patachitra_painting.jpg │ ├── mk_pebble_art.jpg │ ├── mk_pichwai_painting.jpg │ ├── mk_pictorialism.jpg │ ├── mk_pollock.jpg │ ├── mk_punk_collage.jpg │ ├── mk_ron_english_style.jpg │ ├── mk_samoan_art_inspired.jpg │ ├── mk_scrimshaw.jpg │ ├── mk_shepard_fairey_style.jpg │ ├── mk_shibori.jpg │ ├── mk_singer_sargent.jpg │ ├── mk_suminagashi.jpg │ ├── mk_tlingit_art.jpg │ ├── mk_ukiyo_e.jpg │ ├── mk_van_gogh.jpg │ ├── mk_vintage_airline_poster.jpg │ ├── mk_vintage_travel_poster.jpg │ ├── mk_vitreous_enamel.jpg │ ├── mre_ancient_illustration.jpg │ ├── mre_anime.jpg │ ├── mre_artistic_vision.jpg │ ├── mre_bad_dream.jpg │ ├── mre_brave_art.jpg │ ├── mre_cinematic_dynamic.jpg │ ├── mre_comic.jpg │ ├── mre_dark_cyberpunk.jpg │ ├── mre_dark_dream.jpg │ ├── mre_dynamic_illustration.jpg │ ├── mre_elemental_art.jpg │ ├── mre_gloomy_art.jpg │ ├── mre_heroic_fantasy.jpg │ ├── mre_lyrical_geometry.jpg │ ├── mre_manga.jpg │ ├── mre_space_art.jpg │ ├── mre_spontaneous_picture.jpg │ ├── mre_sumi_e_detailed.jpg │ ├── mre_sumi_e_symbolic.jpg │ ├── mre_surreal_painting.jpg │ ├── mre_undead_art.jpg │ ├── mre_underground.jpg │ ├── neo_baroque.jpg │ ├── neo_byzantine.jpg │ ├── neo_futurism.jpg │ ├── neo_impressionism.jpg │ ├── neo_rococo.jpg │ ├── op_art.jpg │ ├── ornate_and_intricate.jpg │ ├── papercraft_collage.jpg │ ├── papercraft_flat_papercut.jpg │ ├── papercraft_kirigami.jpg │ ├── papercraft_paper_mache.jpg │ ├── papercraft_paper_quilling.jpg │ ├── papercraft_papercut_collage.jpg │ ├── papercraft_papercut_shadow_box.jpg │ ├── papercraft_stacked_papercut.jpg │ ├── papercraft_thick_layered_papercut.jpg │ ├── pencil_sketch_drawing.jpg │ ├── photo_alien.jpg │ ├── photo_film_noir.jpg │ ├── photo_glamour.jpg │ ├── photo_hdr.jpg │ ├── photo_iphone_photographic.jpg │ ├── photo_long_exposure.jpg │ ├── photo_neon_noir.jpg │ ├── photo_silhouette.jpg │ ├── photo_tilt_shift.jpg │ ├── pop_art_2.jpg │ ├── sai_3d_model.jpg │ ├── sai_analog_film.jpg │ ├── sai_anime.jpg │ ├── sai_cinematic.jpg │ ├── sai_comic_book.jpg │ ├── sai_craft_clay.jpg │ ├── sai_digital_art.jpg │ ├── sai_enhance.jpg │ ├── sai_fantasy_art.jpg │ ├── sai_isometric.jpg │ ├── sai_line_art.jpg │ ├── sai_lowpoly.jpg │ ├── sai_neonpunk.jpg │ ├── sai_origami.jpg │ ├── sai_photographic.jpg │ ├── sai_pixel_art.jpg │ ├── sai_texture.jpg │ ├── silhouette_art.jpg │ ├── simple_vector_art.jpg │ ├── steampunk_2.jpg │ ├── sticker_designs.jpg │ ├── tranquil_relaxing_atmosphere.jpg │ ├── vibrant_rim_light.jpg │ ├── volumetric_lighting.jpg │ ├── watercolor_2.jpg │ └── whimsical_and_playful.jpg ├── web ├── js │ ├── easyInterface.js │ ├── easySelector.js │ └── fooocusDynamicWidgets.js └── lib │ └── fabric.js └── workflow └── example.json /__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__init__.py -------------------------------------------------------------------------------- /py/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /py/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /py/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /py/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /py/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /py/__pycache__/fooocusNodes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/fooocusNodes.cpython-310.pyc -------------------------------------------------------------------------------- /py/__pycache__/fooocusNodes.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/fooocusNodes.cpython-311.pyc -------------------------------------------------------------------------------- /py/__pycache__/log.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/log.cpython-311.pyc -------------------------------------------------------------------------------- /py/__pycache__/nodes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/nodes.cpython-310.pyc -------------------------------------------------------------------------------- /py/__pycache__/nodes.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/nodes.cpython-311.pyc -------------------------------------------------------------------------------- /py/__pycache__/nodesbac.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/nodesbac.cpython-311.pyc -------------------------------------------------------------------------------- /py/__pycache__/prompt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/prompt.cpython-310.pyc -------------------------------------------------------------------------------- /py/__pycache__/save_image.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/__pycache__/save_image.cpython-311.pyc -------------------------------------------------------------------------------- /py/extras/__pycache__/expansion.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/extras/__pycache__/expansion.cpython-310.pyc -------------------------------------------------------------------------------- /py/extras/__pycache__/expansion.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/extras/__pycache__/expansion.cpython-311.pyc -------------------------------------------------------------------------------- /py/extras/__pycache__/preprocessors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/extras/__pycache__/preprocessors.cpython-310.pyc -------------------------------------------------------------------------------- /py/extras/__pycache__/vae_interpose.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/extras/__pycache__/vae_interpose.cpython-310.pyc -------------------------------------------------------------------------------- /py/extras/__pycache__/vae_interpose.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/extras/__pycache__/vae_interpose.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__init__.py -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/advanced_parameters.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/advanced_parameters.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/advanced_parameters.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/advanced_parameters.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/anisotropic.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/anisotropic.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/anisotropic.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/anisotropic.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/async_worker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/async_worker.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/auth.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/auth.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/constants.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/constants.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/constants.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/constants.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/core.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/core.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/core.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/core.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/default_pipeline.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/default_pipeline.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/default_pipeline.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/default_pipeline.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/flags.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/flags.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/gradio_hijack.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/gradio_hijack.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/html.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/html.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/inpaint_worker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/inpaint_worker.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/inpaint_worker.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/inpaint_worker.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/launch_util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/launch_util.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/localization.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/localization.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/lora.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/lora.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/lora.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/lora.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/meta_parser.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/meta_parser.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/model_loader.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/model_loader.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/ops.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/ops.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/ops.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/ops.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/patch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/patch.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/patch.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/patch.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/patch_clip.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/patch_clip.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/patch_clip.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/patch_clip.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/patch_precision.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/patch_precision.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/patch_precision.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/patch_precision.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/private_logger.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/private_logger.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/sample_hijack.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/sample_hijack.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/sample_hijack.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/sample_hijack.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/sdxl_styles.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/sdxl_styles.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/style_sorter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/style_sorter.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/ui_gradio_extensions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/ui_gradio_extensions.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/upscaler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/upscaler.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/upscaler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/upscaler.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/__pycache__/util.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/fooocus_modules/__pycache__/util.cpython-311.pyc -------------------------------------------------------------------------------- /py/fooocus_modules/constants.py: -------------------------------------------------------------------------------- 1 | # as in k-diffusion (sampling.py) 2 | MIN_SEED = 0 3 | MAX_SEED = 2**63 - 1 4 | 5 | AUTH_FILENAME = 'auth.json' 6 | -------------------------------------------------------------------------------- /py/ldm_patched/contrib/__pycache__/external.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/contrib/__pycache__/external.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/contrib/__pycache__/external.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/contrib/__pycache__/external.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/controlnet/__pycache__/cldm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/controlnet/__pycache__/cldm.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/controlnet/__pycache__/cldm.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/controlnet/__pycache__/cldm.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/k_diffusion/__pycache__/sampling.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/k_diffusion/__pycache__/sampling.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/k_diffusion/__pycache__/sampling.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/k_diffusion/__pycache__/sampling.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/k_diffusion/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/k_diffusion/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/k_diffusion/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/k_diffusion/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/__pycache__/util.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/__pycache__/util.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/models/__pycache__/autoencoder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/models/__pycache__/autoencoder.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/models/__pycache__/autoencoder.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/models/__pycache__/autoencoder.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/__pycache__/attention.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/__pycache__/attention.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/__pycache__/attention.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/__pycache__/attention.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/__pycache__/ema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/__pycache__/ema.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/__pycache__/ema.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/__pycache__/ema.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/diffusionmodules/__init__.py -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/distributions/__init__.py -------------------------------------------------------------------------------- /py/ldm_patched/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/ldm/modules/encoders/__init__.py -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/args_parser.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/args_parser.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/args_parser.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/args_parser.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/clip_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/clip_model.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/clip_model.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/clip_model.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/clip_vision.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/clip_vision.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/clip_vision.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/clip_vision.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/conds.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/conds.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/conds.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/conds.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/controlnet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/controlnet.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/controlnet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/controlnet.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/diffusers_load.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/diffusers_load.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/diffusers_load.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/diffusers_load.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/gligen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/gligen.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/gligen.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/gligen.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/latent_formats.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/latent_formats.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/latent_formats.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/latent_formats.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/lora.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/lora.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/lora.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/lora.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_base.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_base.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_base.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_detection.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_detection.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_detection.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_detection.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_management.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_management.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_management.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_management.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_patcher.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_patcher.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_patcher.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_patcher.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_sampling.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_sampling.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/model_sampling.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/model_sampling.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/ops.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/ops.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/ops.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/ops.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/options.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/options.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/options.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/options.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sample.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sample.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sample.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sample.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/samplers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/samplers.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/samplers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/samplers.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sd.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sd.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sd.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sd1_clip.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sd1_clip.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sd1_clip.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sd1_clip.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sd2_clip.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sd2_clip.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sd2_clip.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sd2_clip.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sdxl_clip.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sdxl_clip.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/sdxl_clip.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/sdxl_clip.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/supported_models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/supported_models.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/supported_models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/supported_models.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/modules/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/modules/options.py: -------------------------------------------------------------------------------- 1 | 2 | args_parsing = False 3 | 4 | def enable_args_parsing(enable=True): 5 | global args_parsing 6 | args_parsing = enable 7 | -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__init__.py -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__pycache__/model_loading.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__pycache__/model_loading.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__pycache__/model_loading.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__pycache__/model_loading.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__pycache__/types.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__pycache__/types.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/__pycache__/types.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/__pycache__/types.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__init__.py -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/DAT.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/DAT.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/DAT.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/DAT.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/HAT.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/HAT.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/HAT.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/HAT.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/LaMa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/LaMa.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/LaMa.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/LaMa.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/RRDB.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/RRDB.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/RRDB.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/RRDB.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SCUNet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SCUNet.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SCUNet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SCUNet.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SPSR.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SPSR.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SPSR.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SPSR.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SRVGG.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SRVGG.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SRVGG.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SRVGG.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/Swin2SR.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/Swin2SR.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/Swin2SR.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/Swin2SR.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SwinIR.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SwinIR.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/SwinIR.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/SwinIR.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/pfn/architecture/__pycache__/block.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/pfn/architecture/__pycache__/block.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/t2ia/__pycache__/adapter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/t2ia/__pycache__/adapter.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/t2ia/__pycache__/adapter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/t2ia/__pycache__/adapter.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/taesd/__pycache__/taesd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/taesd/__pycache__/taesd.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/taesd/__pycache__/taesd.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/taesd/__pycache__/taesd.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/unipc/__pycache__/uni_pc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/unipc/__pycache__/uni_pc.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/unipc/__pycache__/uni_pc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/unipc/__pycache__/uni_pc.cpython-311.pyc -------------------------------------------------------------------------------- /py/ldm_patched/utils/__pycache__/path_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/utils/__pycache__/path_utils.cpython-310.pyc -------------------------------------------------------------------------------- /py/ldm_patched/utils/__pycache__/path_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/py/ldm_patched/utils/__pycache__/path_utils.cpython-311.pyc -------------------------------------------------------------------------------- /styles/samples/Abstract Expressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Abstract Expressionism.jpg -------------------------------------------------------------------------------- /styles/samples/Academia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Academia.jpg -------------------------------------------------------------------------------- /styles/samples/Action Figure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Action Figure.jpg -------------------------------------------------------------------------------- /styles/samples/Adorable 3D Character.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Adorable 3D Character.jpg -------------------------------------------------------------------------------- /styles/samples/Adorable Kawaii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Adorable Kawaii.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Advertising.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Advertising.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Automotive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Automotive.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Corporate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Corporate.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Fashion Editorial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Fashion Editorial.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Food Photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Food Photography.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Gourmet Food Photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Gourmet Food Photography.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Luxury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Luxury.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Real Estate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Real Estate.jpg -------------------------------------------------------------------------------- /styles/samples/Ads Retail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ads Retail.jpg -------------------------------------------------------------------------------- /styles/samples/Art Deco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Art Deco.jpg -------------------------------------------------------------------------------- /styles/samples/Art Nouveau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Art Nouveau.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Abstract Expressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Abstract Expressionism.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Abstract.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Art Deco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Art Deco.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Art Nouveau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Art Nouveau.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Constructivist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Constructivist.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Cubist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Cubist.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Expressionist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Expressionist.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Graffiti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Graffiti.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Hyperrealism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Hyperrealism.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Impressionist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Impressionist.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Pointillism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Pointillism.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Pop Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Pop Art.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Psychedelic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Psychedelic.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Renaissance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Renaissance.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Steampunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Steampunk.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Surrealist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Surrealist.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Typography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Typography.jpg -------------------------------------------------------------------------------- /styles/samples/Artstyle Watercolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Artstyle Watercolor.jpg -------------------------------------------------------------------------------- /styles/samples/Astral Aura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Astral Aura.jpg -------------------------------------------------------------------------------- /styles/samples/Avant Garde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Avant Garde.jpg -------------------------------------------------------------------------------- /styles/samples/Baroque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Baroque.jpg -------------------------------------------------------------------------------- /styles/samples/Bauhaus Style Poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Bauhaus Style Poster.jpg -------------------------------------------------------------------------------- /styles/samples/Blueprint Schematic Drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Blueprint Schematic Drawing.jpg -------------------------------------------------------------------------------- /styles/samples/Caricature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Caricature.jpg -------------------------------------------------------------------------------- /styles/samples/Cel Shaded Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Cel Shaded Art.jpg -------------------------------------------------------------------------------- /styles/samples/Character Design Sheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Character Design Sheet.jpg -------------------------------------------------------------------------------- /styles/samples/Cinematic Diva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Cinematic Diva.jpg -------------------------------------------------------------------------------- /styles/samples/Classicism Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Classicism Art.jpg -------------------------------------------------------------------------------- /styles/samples/Color Field Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Color Field Painting.jpg -------------------------------------------------------------------------------- /styles/samples/Colored Pencil Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Colored Pencil Art.jpg -------------------------------------------------------------------------------- /styles/samples/Conceptual Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Conceptual Art.jpg -------------------------------------------------------------------------------- /styles/samples/Constructivism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Constructivism.jpg -------------------------------------------------------------------------------- /styles/samples/Cubism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Cubism.jpg -------------------------------------------------------------------------------- /styles/samples/Dadaism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dadaism.jpg -------------------------------------------------------------------------------- /styles/samples/Dark Fantasy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dark Fantasy.jpg -------------------------------------------------------------------------------- /styles/samples/Dark Moody Atmosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dark Moody Atmosphere.jpg -------------------------------------------------------------------------------- /styles/samples/Dll Anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dll Anime.jpg -------------------------------------------------------------------------------- /styles/samples/Dll Photograph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dll Photograph.jpg -------------------------------------------------------------------------------- /styles/samples/Dmt Art Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dmt Art Style.jpg -------------------------------------------------------------------------------- /styles/samples/Doodle Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Doodle Art.jpg -------------------------------------------------------------------------------- /styles/samples/Double Exposure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Double Exposure.jpg -------------------------------------------------------------------------------- /styles/samples/Dripping Paint Splatter Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Dripping Paint Splatter Art.jpg -------------------------------------------------------------------------------- /styles/samples/Expressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Expressionism.jpg -------------------------------------------------------------------------------- /styles/samples/Faded Polaroid Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Faded Polaroid Photo.jpg -------------------------------------------------------------------------------- /styles/samples/Fauvism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fauvism.jpg -------------------------------------------------------------------------------- /styles/samples/Flat 2d Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Flat 2d Art.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus Cinematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus Cinematic.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus Enhance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus Enhance.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus Masterpiece.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus Masterpiece.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus Negative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus Negative.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus Photograph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus Photograph.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus Sharp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus Sharp.jpg -------------------------------------------------------------------------------- /styles/samples/Fooocus V2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fooocus V2.jpg -------------------------------------------------------------------------------- /styles/samples/Fortnite Art Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Fortnite Art Style.jpg -------------------------------------------------------------------------------- /styles/samples/Futurism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futurism.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Biomechanical Cyberpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Biomechanical Cyberpunk.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Biomechanical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Biomechanical.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Cybernetic Robot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Cybernetic Robot.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Cybernetic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Cybernetic.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Cyberpunk Cityscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Cyberpunk Cityscape.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Futuristic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Futuristic.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Retro Cyberpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Retro Cyberpunk.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Retro Futurism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Retro Futurism.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Sci Fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Sci Fi.jpg -------------------------------------------------------------------------------- /styles/samples/Futuristic Vaporwave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Futuristic Vaporwave.jpg -------------------------------------------------------------------------------- /styles/samples/Game Bubble Bobble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Bubble Bobble.jpg -------------------------------------------------------------------------------- /styles/samples/Game Cyberpunk Game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Cyberpunk Game.jpg -------------------------------------------------------------------------------- /styles/samples/Game Fighting Game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Fighting Game.jpg -------------------------------------------------------------------------------- /styles/samples/Game Gta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Gta.jpg -------------------------------------------------------------------------------- /styles/samples/Game Mario.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Mario.jpg -------------------------------------------------------------------------------- /styles/samples/Game Minecraft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Minecraft.jpg -------------------------------------------------------------------------------- /styles/samples/Game Pokemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Pokemon.jpg -------------------------------------------------------------------------------- /styles/samples/Game Retro Arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Retro Arcade.jpg -------------------------------------------------------------------------------- /styles/samples/Game Retro Game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Retro Game.jpg -------------------------------------------------------------------------------- /styles/samples/Game Rpg Fantasy Game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Rpg Fantasy Game.jpg -------------------------------------------------------------------------------- /styles/samples/Game Strategy Game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Strategy Game.jpg -------------------------------------------------------------------------------- /styles/samples/Game Streetfighter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Streetfighter.jpg -------------------------------------------------------------------------------- /styles/samples/Game Zelda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Game Zelda.jpg -------------------------------------------------------------------------------- /styles/samples/Glitchcore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Glitchcore.jpg -------------------------------------------------------------------------------- /styles/samples/Glo Fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Glo Fi.jpg -------------------------------------------------------------------------------- /styles/samples/Googie Art Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Googie Art Style.jpg -------------------------------------------------------------------------------- /styles/samples/Graffiti Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Graffiti Art.jpg -------------------------------------------------------------------------------- /styles/samples/Harlem Renaissance Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Harlem Renaissance Art.jpg -------------------------------------------------------------------------------- /styles/samples/High Fashion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/High Fashion.jpg -------------------------------------------------------------------------------- /styles/samples/Idyllic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Idyllic.jpg -------------------------------------------------------------------------------- /styles/samples/Impressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Impressionism.jpg -------------------------------------------------------------------------------- /styles/samples/Infographic Drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Infographic Drawing.jpg -------------------------------------------------------------------------------- /styles/samples/Ink Dripping Drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ink Dripping Drawing.jpg -------------------------------------------------------------------------------- /styles/samples/Japanese Ink Drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Japanese Ink Drawing.jpg -------------------------------------------------------------------------------- /styles/samples/Knolling Photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Knolling Photography.jpg -------------------------------------------------------------------------------- /styles/samples/Light Cheery Atmosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Light Cheery Atmosphere.jpg -------------------------------------------------------------------------------- /styles/samples/Logo Design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Logo Design.jpg -------------------------------------------------------------------------------- /styles/samples/Luxurious Elegance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Luxurious Elegance.jpg -------------------------------------------------------------------------------- /styles/samples/MK Pebble Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MK Pebble Art.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Ancient Illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Ancient Illustration.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Anime.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Artistic Vision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Artistic Vision.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Bad Dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Bad Dream.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Brave Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Brave Art.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Cinematic Dynamic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Cinematic Dynamic.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Comic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Comic.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Dark Cyberpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Dark Cyberpunk.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Dark Dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Dark Dream.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Dynamic Illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Dynamic Illustration.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Elemental Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Elemental Art.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Gloomy Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Gloomy Art.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Heroic Fantasy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Heroic Fantasy.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Lyrical Geometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Lyrical Geometry.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Manga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Manga.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Space Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Space Art.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Spontaneous Picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Spontaneous Picture.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Sumi E Detailed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Sumi E Detailed.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Sumi E Symbolic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Sumi E Symbolic.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Surreal Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Surreal Painting.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Undead Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Undead Art.jpg -------------------------------------------------------------------------------- /styles/samples/MRE Underground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/MRE Underground.jpg -------------------------------------------------------------------------------- /styles/samples/Macro Photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Macro Photography.jpg -------------------------------------------------------------------------------- /styles/samples/Mandola Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mandola Art.jpg -------------------------------------------------------------------------------- /styles/samples/Marker Drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Marker Drawing.jpg -------------------------------------------------------------------------------- /styles/samples/Medievalism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Medievalism.jpg -------------------------------------------------------------------------------- /styles/samples/Minimalism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Minimalism.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Architectural.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Architectural.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Disco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Disco.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Dreamscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Dreamscape.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Dystopian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Dystopian.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Fairy Tale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Fairy Tale.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Gothic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Gothic.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Grunge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Grunge.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Horror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Horror.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Kawaii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Kawaii.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Lovecraftian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Lovecraftian.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Macabre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Macabre.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Manga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Manga.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Metropolis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Metropolis.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Minimalist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Minimalist.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Monochrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Monochrome.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Nautical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Nautical.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Space.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Stained Glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Stained Glass.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Techwear Fashion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Techwear Fashion.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Tribal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Tribal.jpg -------------------------------------------------------------------------------- /styles/samples/Misc Zentangle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Misc Zentangle.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Adnate Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Adnate Style.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Afrofuturism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Afrofuturism.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Albumen Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Albumen Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Alcohol Ink Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Alcohol Ink Art.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Andy Warhol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Andy Warhol.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Anthotype Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Anthotype Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Aquatint Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Aquatint Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Atompunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Atompunk.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Basquiat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Basquiat.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Bauhaus Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Bauhaus Style.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Blacklight Paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Blacklight Paint.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Bromoil Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Bromoil Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Calotype Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Calotype Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Carnival Glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Carnival Glass.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Chicano Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Chicano Art.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Chromolithography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Chromolithography.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Cibulak Porcelain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Cibulak Porcelain.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Color Sketchnote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Color Sketchnote.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Coloring Book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Coloring Book.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Constructivism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Constructivism.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Cross Processing Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Cross Processing Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Cross Stitching.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Cross Stitching.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Cyanotype Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Cyanotype Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Dayak Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Dayak Art.jpg -------------------------------------------------------------------------------- /styles/samples/Mk De Stijl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk De Stijl.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Dufaycolor Photograph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Dufaycolor Photograph.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Embroidery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Embroidery.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Encaustic Paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Encaustic Paint.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Fayum Portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Fayum Portrait.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Gond Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Gond Painting.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Gyotaku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Gyotaku.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Halftone Print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Halftone Print.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Herbarium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Herbarium.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Illuminated Manuscript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Illuminated Manuscript.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Inuit Carving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Inuit Carving.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Kalighat Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Kalighat Painting.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Lite Brite Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Lite Brite Art.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Luminogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Luminogram.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Madhubani Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Madhubani Painting.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Mokume Gane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Mokume Gane.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Mosaic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Mosaic.jpg -------------------------------------------------------------------------------- /styles/samples/Mk One Line Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk One Line Art.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Palekh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Palekh.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Patachitra Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Patachitra Painting.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Pichwai Painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Pichwai Painting.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Pictorialism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Pictorialism.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Pollock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Pollock.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Punk Collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Punk Collage.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Ron English Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Ron English Style.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Samoan Art Inspired.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Samoan Art Inspired.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Scrimshaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Scrimshaw.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Shepard Fairey Style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Shepard Fairey Style.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Shibori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Shibori.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Singer Sargent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Singer Sargent.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Suminagashi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Suminagashi.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Tlingit Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Tlingit Art.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Ukiyo E.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Ukiyo E.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Van Gogh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Van Gogh.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Vintage Airline Poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Vintage Airline Poster.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Vintage Travel Poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Vintage Travel Poster.jpg -------------------------------------------------------------------------------- /styles/samples/Mk Vitreous Enamel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Mk Vitreous Enamel.jpg -------------------------------------------------------------------------------- /styles/samples/Neo Baroque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Neo Baroque.jpg -------------------------------------------------------------------------------- /styles/samples/Neo Byzantine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Neo Byzantine.jpg -------------------------------------------------------------------------------- /styles/samples/Neo Futurism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Neo Futurism.jpg -------------------------------------------------------------------------------- /styles/samples/Neo Impressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Neo Impressionism.jpg -------------------------------------------------------------------------------- /styles/samples/Neo Rococo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Neo Rococo.jpg -------------------------------------------------------------------------------- /styles/samples/Neoclassicism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Neoclassicism.jpg -------------------------------------------------------------------------------- /styles/samples/None.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/None.jpg -------------------------------------------------------------------------------- /styles/samples/Op Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Op Art.jpg -------------------------------------------------------------------------------- /styles/samples/Ornate And Intricate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Ornate And Intricate.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Collage.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Flat Papercut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Flat Papercut.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Kirigami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Kirigami.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Paper Mache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Paper Mache.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Paper Quilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Paper Quilling.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Papercut Collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Papercut Collage.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Papercut Shadow Box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Papercut Shadow Box.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Stacked Papercut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Stacked Papercut.jpg -------------------------------------------------------------------------------- /styles/samples/Papercraft Thick Layered Papercut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Papercraft Thick Layered Papercut.jpg -------------------------------------------------------------------------------- /styles/samples/Pencil Sketch Drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Pencil Sketch Drawing.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Alien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Alien.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Film Noir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Film Noir.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Glamour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Glamour.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Hdr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Hdr.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Iphone Photographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Iphone Photographic.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Long Exposure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Long Exposure.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Neon Noir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Neon Noir.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Silhouette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Silhouette.jpg -------------------------------------------------------------------------------- /styles/samples/Photo Tilt Shift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Photo Tilt Shift.jpg -------------------------------------------------------------------------------- /styles/samples/Pop Art 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Pop Art 2.jpg -------------------------------------------------------------------------------- /styles/samples/Rococo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Rococo.jpg -------------------------------------------------------------------------------- /styles/samples/SAI 3D Model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI 3D Model.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Analog Film.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Analog Film.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Anime.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Cinematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Cinematic.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Comic Book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Comic Book.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Craft Clay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Craft Clay.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Digital Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Digital Art.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Enhance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Enhance.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Fantasy Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Fantasy Art.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Isometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Isometric.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Line Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Line Art.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Lowpoly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Lowpoly.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Neonpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Neonpunk.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Origami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Origami.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Photographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Photographic.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Pixel Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Pixel Art.jpg -------------------------------------------------------------------------------- /styles/samples/SAI Texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/SAI Texture.jpg -------------------------------------------------------------------------------- /styles/samples/Silhouette Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Silhouette Art.jpg -------------------------------------------------------------------------------- /styles/samples/Simple Vector Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Simple Vector Art.jpg -------------------------------------------------------------------------------- /styles/samples/Sketchup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Sketchup.jpg -------------------------------------------------------------------------------- /styles/samples/Steampunk 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Steampunk 2.jpg -------------------------------------------------------------------------------- /styles/samples/Sticker Designs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Sticker Designs.jpg -------------------------------------------------------------------------------- /styles/samples/Suprematism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Suprematism.jpg -------------------------------------------------------------------------------- /styles/samples/Surrealism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Surrealism.jpg -------------------------------------------------------------------------------- /styles/samples/Terragen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Terragen.jpg -------------------------------------------------------------------------------- /styles/samples/Tranquil Relaxing Atmosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Tranquil Relaxing Atmosphere.jpg -------------------------------------------------------------------------------- /styles/samples/Vibrant Rim Light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Vibrant Rim Light.jpg -------------------------------------------------------------------------------- /styles/samples/Volumetric Lighting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Volumetric Lighting.jpg -------------------------------------------------------------------------------- /styles/samples/Watercolor 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Watercolor 2.jpg -------------------------------------------------------------------------------- /styles/samples/Whimsical And Playful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/Whimsical And Playful.jpg -------------------------------------------------------------------------------- /styles/samples/abstract_expressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/abstract_expressionism.jpg -------------------------------------------------------------------------------- /styles/samples/action_figure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/action_figure.jpg -------------------------------------------------------------------------------- /styles/samples/adorable_3d_character.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/adorable_3d_character.jpg -------------------------------------------------------------------------------- /styles/samples/adorable_kawaii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/adorable_kawaii.jpg -------------------------------------------------------------------------------- /styles/samples/ads_advertising.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_advertising.jpg -------------------------------------------------------------------------------- /styles/samples/ads_automotive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_automotive.jpg -------------------------------------------------------------------------------- /styles/samples/ads_corporate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_corporate.jpg -------------------------------------------------------------------------------- /styles/samples/ads_fashion_editorial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_fashion_editorial.jpg -------------------------------------------------------------------------------- /styles/samples/ads_food_photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_food_photography.jpg -------------------------------------------------------------------------------- /styles/samples/ads_gourmet_food_photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_gourmet_food_photography.jpg -------------------------------------------------------------------------------- /styles/samples/ads_luxury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_luxury.jpg -------------------------------------------------------------------------------- /styles/samples/ads_real_estate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_real_estate.jpg -------------------------------------------------------------------------------- /styles/samples/ads_retail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ads_retail.jpg -------------------------------------------------------------------------------- /styles/samples/art_deco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/art_deco.jpg -------------------------------------------------------------------------------- /styles/samples/art_nouveau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/art_nouveau.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_abstract.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_abstract_expressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_abstract_expressionism.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_art_deco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_art_deco.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_art_nouveau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_art_nouveau.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_constructivist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_constructivist.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_cubist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_cubist.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_expressionist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_expressionist.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_graffiti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_graffiti.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_hyperrealism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_hyperrealism.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_impressionist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_impressionist.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_pointillism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_pointillism.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_pop_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_pop_art.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_psychedelic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_psychedelic.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_renaissance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_renaissance.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_steampunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_steampunk.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_surrealist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_surrealist.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_typography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_typography.jpg -------------------------------------------------------------------------------- /styles/samples/artstyle_watercolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/artstyle_watercolor.jpg -------------------------------------------------------------------------------- /styles/samples/astral_aura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/astral_aura.jpg -------------------------------------------------------------------------------- /styles/samples/avant_garde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/avant_garde.jpg -------------------------------------------------------------------------------- /styles/samples/bauhaus_style_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/bauhaus_style_poster.jpg -------------------------------------------------------------------------------- /styles/samples/blueprint_schematic_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/blueprint_schematic_drawing.jpg -------------------------------------------------------------------------------- /styles/samples/cel_shaded_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/cel_shaded_art.jpg -------------------------------------------------------------------------------- /styles/samples/character_design_sheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/character_design_sheet.jpg -------------------------------------------------------------------------------- /styles/samples/cinematic_diva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/cinematic_diva.jpg -------------------------------------------------------------------------------- /styles/samples/classicism_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/classicism_art.jpg -------------------------------------------------------------------------------- /styles/samples/color_field_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/color_field_painting.jpg -------------------------------------------------------------------------------- /styles/samples/colored_pencil_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/colored_pencil_art.jpg -------------------------------------------------------------------------------- /styles/samples/conceptual_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/conceptual_art.jpg -------------------------------------------------------------------------------- /styles/samples/dark_fantasy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/dark_fantasy.jpg -------------------------------------------------------------------------------- /styles/samples/dark_moody_atmosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/dark_moody_atmosphere.jpg -------------------------------------------------------------------------------- /styles/samples/dll_anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/dll_anime.jpg -------------------------------------------------------------------------------- /styles/samples/dll_photograph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/dll_photograph.jpg -------------------------------------------------------------------------------- /styles/samples/dmt_art_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/dmt_art_style.jpg -------------------------------------------------------------------------------- /styles/samples/doodle_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/doodle_art.jpg -------------------------------------------------------------------------------- /styles/samples/double_exposure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/double_exposure.jpg -------------------------------------------------------------------------------- /styles/samples/dripping_paint_splatter_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/dripping_paint_splatter_art.jpg -------------------------------------------------------------------------------- /styles/samples/faded_polaroid_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/faded_polaroid_photo.jpg -------------------------------------------------------------------------------- /styles/samples/flat_2d_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/flat_2d_art.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_cinematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_cinematic.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_enhance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_enhance.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_masterpiece.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_masterpiece.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_negative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_negative.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_photograph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_photograph.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_sharp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_sharp.jpg -------------------------------------------------------------------------------- /styles/samples/fooocus_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fooocus_v2.jpg -------------------------------------------------------------------------------- /styles/samples/fortnite_art_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/fortnite_art_style.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_biomechanical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_biomechanical.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_biomechanical_cyberpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_biomechanical_cyberpunk.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_cybernetic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_cybernetic.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_cybernetic_robot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_cybernetic_robot.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_cyberpunk_cityscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_cyberpunk_cityscape.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_futuristic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_futuristic.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_retro_cyberpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_retro_cyberpunk.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_retro_futurism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_retro_futurism.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_sci_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_sci_fi.jpg -------------------------------------------------------------------------------- /styles/samples/futuristic_vaporwave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/futuristic_vaporwave.jpg -------------------------------------------------------------------------------- /styles/samples/game_bubble_bobble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_bubble_bobble.jpg -------------------------------------------------------------------------------- /styles/samples/game_cyberpunk_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_cyberpunk_game.jpg -------------------------------------------------------------------------------- /styles/samples/game_fighting_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_fighting_game.jpg -------------------------------------------------------------------------------- /styles/samples/game_gta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_gta.jpg -------------------------------------------------------------------------------- /styles/samples/game_mario.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_mario.jpg -------------------------------------------------------------------------------- /styles/samples/game_minecraft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_minecraft.jpg -------------------------------------------------------------------------------- /styles/samples/game_pokemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_pokemon.jpg -------------------------------------------------------------------------------- /styles/samples/game_retro_arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_retro_arcade.jpg -------------------------------------------------------------------------------- /styles/samples/game_retro_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_retro_game.jpg -------------------------------------------------------------------------------- /styles/samples/game_rpg_fantasy_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_rpg_fantasy_game.jpg -------------------------------------------------------------------------------- /styles/samples/game_strategy_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_strategy_game.jpg -------------------------------------------------------------------------------- /styles/samples/game_streetfighter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_streetfighter.jpg -------------------------------------------------------------------------------- /styles/samples/game_zelda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/game_zelda.jpg -------------------------------------------------------------------------------- /styles/samples/glo_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/glo_fi.jpg -------------------------------------------------------------------------------- /styles/samples/googie_art_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/googie_art_style.jpg -------------------------------------------------------------------------------- /styles/samples/graffiti_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/graffiti_art.jpg -------------------------------------------------------------------------------- /styles/samples/harlem_renaissance_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/harlem_renaissance_art.jpg -------------------------------------------------------------------------------- /styles/samples/high_fashion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/high_fashion.jpg -------------------------------------------------------------------------------- /styles/samples/infographic_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/infographic_drawing.jpg -------------------------------------------------------------------------------- /styles/samples/ink_dripping_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ink_dripping_drawing.jpg -------------------------------------------------------------------------------- /styles/samples/japanese_ink_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/japanese_ink_drawing.jpg -------------------------------------------------------------------------------- /styles/samples/knolling_photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/knolling_photography.jpg -------------------------------------------------------------------------------- /styles/samples/light_cheery_atmosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/light_cheery_atmosphere.jpg -------------------------------------------------------------------------------- /styles/samples/logo_design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/logo_design.jpg -------------------------------------------------------------------------------- /styles/samples/luxurious_elegance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/luxurious_elegance.jpg -------------------------------------------------------------------------------- /styles/samples/macro_photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/macro_photography.jpg -------------------------------------------------------------------------------- /styles/samples/mandola_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mandola_art.jpg -------------------------------------------------------------------------------- /styles/samples/marker_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/marker_drawing.jpg -------------------------------------------------------------------------------- /styles/samples/misc_architectural.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_architectural.jpg -------------------------------------------------------------------------------- /styles/samples/misc_disco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_disco.jpg -------------------------------------------------------------------------------- /styles/samples/misc_dreamscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_dreamscape.jpg -------------------------------------------------------------------------------- /styles/samples/misc_dystopian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_dystopian.jpg -------------------------------------------------------------------------------- /styles/samples/misc_fairy_tale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_fairy_tale.jpg -------------------------------------------------------------------------------- /styles/samples/misc_gothic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_gothic.jpg -------------------------------------------------------------------------------- /styles/samples/misc_grunge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_grunge.jpg -------------------------------------------------------------------------------- /styles/samples/misc_horror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_horror.jpg -------------------------------------------------------------------------------- /styles/samples/misc_kawaii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_kawaii.jpg -------------------------------------------------------------------------------- /styles/samples/misc_lovecraftian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_lovecraftian.jpg -------------------------------------------------------------------------------- /styles/samples/misc_macabre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_macabre.jpg -------------------------------------------------------------------------------- /styles/samples/misc_manga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_manga.jpg -------------------------------------------------------------------------------- /styles/samples/misc_metropolis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_metropolis.jpg -------------------------------------------------------------------------------- /styles/samples/misc_minimalist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_minimalist.jpg -------------------------------------------------------------------------------- /styles/samples/misc_monochrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_monochrome.jpg -------------------------------------------------------------------------------- /styles/samples/misc_nautical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_nautical.jpg -------------------------------------------------------------------------------- /styles/samples/misc_space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_space.jpg -------------------------------------------------------------------------------- /styles/samples/misc_stained_glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_stained_glass.jpg -------------------------------------------------------------------------------- /styles/samples/misc_techwear_fashion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_techwear_fashion.jpg -------------------------------------------------------------------------------- /styles/samples/misc_tribal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_tribal.jpg -------------------------------------------------------------------------------- /styles/samples/misc_zentangle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/misc_zentangle.jpg -------------------------------------------------------------------------------- /styles/samples/mk_adnate_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_adnate_style.jpg -------------------------------------------------------------------------------- /styles/samples/mk_afrofuturism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_afrofuturism.jpg -------------------------------------------------------------------------------- /styles/samples/mk_albumen_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_albumen_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_alcohol_ink_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_alcohol_ink_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_andy_warhol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_andy_warhol.jpg -------------------------------------------------------------------------------- /styles/samples/mk_anthotype_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_anthotype_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_aquatint_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_aquatint_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_atompunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_atompunk.jpg -------------------------------------------------------------------------------- /styles/samples/mk_basquiat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_basquiat.jpg -------------------------------------------------------------------------------- /styles/samples/mk_bauhaus_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_bauhaus_style.jpg -------------------------------------------------------------------------------- /styles/samples/mk_blacklight_paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_blacklight_paint.jpg -------------------------------------------------------------------------------- /styles/samples/mk_bromoil_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_bromoil_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_calotype_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_calotype_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_carnival_glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_carnival_glass.jpg -------------------------------------------------------------------------------- /styles/samples/mk_chicano_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_chicano_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_chromolithography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_chromolithography.jpg -------------------------------------------------------------------------------- /styles/samples/mk_cibulak_porcelain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_cibulak_porcelain.jpg -------------------------------------------------------------------------------- /styles/samples/mk_color_sketchnote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_color_sketchnote.jpg -------------------------------------------------------------------------------- /styles/samples/mk_coloring_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_coloring_book.jpg -------------------------------------------------------------------------------- /styles/samples/mk_constructivism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_constructivism.jpg -------------------------------------------------------------------------------- /styles/samples/mk_cross_processing_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_cross_processing_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_cross_stitching.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_cross_stitching.jpg -------------------------------------------------------------------------------- /styles/samples/mk_cyanotype_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_cyanotype_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_dayak_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_dayak_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_de_stijl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_de_stijl.jpg -------------------------------------------------------------------------------- /styles/samples/mk_dufaycolor_photograph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_dufaycolor_photograph.jpg -------------------------------------------------------------------------------- /styles/samples/mk_embroidery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_embroidery.jpg -------------------------------------------------------------------------------- /styles/samples/mk_encaustic_paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_encaustic_paint.jpg -------------------------------------------------------------------------------- /styles/samples/mk_fayum_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_fayum_portrait.jpg -------------------------------------------------------------------------------- /styles/samples/mk_gond_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_gond_painting.jpg -------------------------------------------------------------------------------- /styles/samples/mk_gyotaku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_gyotaku.jpg -------------------------------------------------------------------------------- /styles/samples/mk_halftone_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_halftone_print.jpg -------------------------------------------------------------------------------- /styles/samples/mk_herbarium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_herbarium.jpg -------------------------------------------------------------------------------- /styles/samples/mk_illuminated_manuscript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_illuminated_manuscript.jpg -------------------------------------------------------------------------------- /styles/samples/mk_inuit_carving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_inuit_carving.jpg -------------------------------------------------------------------------------- /styles/samples/mk_kalighat_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_kalighat_painting.jpg -------------------------------------------------------------------------------- /styles/samples/mk_lite_brite_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_lite_brite_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_luminogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_luminogram.jpg -------------------------------------------------------------------------------- /styles/samples/mk_madhubani_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_madhubani_painting.jpg -------------------------------------------------------------------------------- /styles/samples/mk_mokume_gane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_mokume_gane.jpg -------------------------------------------------------------------------------- /styles/samples/mk_mosaic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_mosaic.jpg -------------------------------------------------------------------------------- /styles/samples/mk_one_line_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_one_line_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_palekh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_palekh.jpg -------------------------------------------------------------------------------- /styles/samples/mk_patachitra_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_patachitra_painting.jpg -------------------------------------------------------------------------------- /styles/samples/mk_pebble_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_pebble_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_pichwai_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_pichwai_painting.jpg -------------------------------------------------------------------------------- /styles/samples/mk_pictorialism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_pictorialism.jpg -------------------------------------------------------------------------------- /styles/samples/mk_pollock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_pollock.jpg -------------------------------------------------------------------------------- /styles/samples/mk_punk_collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_punk_collage.jpg -------------------------------------------------------------------------------- /styles/samples/mk_ron_english_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_ron_english_style.jpg -------------------------------------------------------------------------------- /styles/samples/mk_samoan_art_inspired.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_samoan_art_inspired.jpg -------------------------------------------------------------------------------- /styles/samples/mk_scrimshaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_scrimshaw.jpg -------------------------------------------------------------------------------- /styles/samples/mk_shepard_fairey_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_shepard_fairey_style.jpg -------------------------------------------------------------------------------- /styles/samples/mk_shibori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_shibori.jpg -------------------------------------------------------------------------------- /styles/samples/mk_singer_sargent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_singer_sargent.jpg -------------------------------------------------------------------------------- /styles/samples/mk_suminagashi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_suminagashi.jpg -------------------------------------------------------------------------------- /styles/samples/mk_tlingit_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_tlingit_art.jpg -------------------------------------------------------------------------------- /styles/samples/mk_ukiyo_e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_ukiyo_e.jpg -------------------------------------------------------------------------------- /styles/samples/mk_van_gogh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_van_gogh.jpg -------------------------------------------------------------------------------- /styles/samples/mk_vintage_airline_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_vintage_airline_poster.jpg -------------------------------------------------------------------------------- /styles/samples/mk_vintage_travel_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_vintage_travel_poster.jpg -------------------------------------------------------------------------------- /styles/samples/mk_vitreous_enamel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mk_vitreous_enamel.jpg -------------------------------------------------------------------------------- /styles/samples/mre_ancient_illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_ancient_illustration.jpg -------------------------------------------------------------------------------- /styles/samples/mre_anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_anime.jpg -------------------------------------------------------------------------------- /styles/samples/mre_artistic_vision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_artistic_vision.jpg -------------------------------------------------------------------------------- /styles/samples/mre_bad_dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_bad_dream.jpg -------------------------------------------------------------------------------- /styles/samples/mre_brave_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_brave_art.jpg -------------------------------------------------------------------------------- /styles/samples/mre_cinematic_dynamic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_cinematic_dynamic.jpg -------------------------------------------------------------------------------- /styles/samples/mre_comic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_comic.jpg -------------------------------------------------------------------------------- /styles/samples/mre_dark_cyberpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_dark_cyberpunk.jpg -------------------------------------------------------------------------------- /styles/samples/mre_dark_dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_dark_dream.jpg -------------------------------------------------------------------------------- /styles/samples/mre_dynamic_illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_dynamic_illustration.jpg -------------------------------------------------------------------------------- /styles/samples/mre_elemental_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_elemental_art.jpg -------------------------------------------------------------------------------- /styles/samples/mre_gloomy_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_gloomy_art.jpg -------------------------------------------------------------------------------- /styles/samples/mre_heroic_fantasy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_heroic_fantasy.jpg -------------------------------------------------------------------------------- /styles/samples/mre_lyrical_geometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_lyrical_geometry.jpg -------------------------------------------------------------------------------- /styles/samples/mre_manga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_manga.jpg -------------------------------------------------------------------------------- /styles/samples/mre_space_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_space_art.jpg -------------------------------------------------------------------------------- /styles/samples/mre_spontaneous_picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_spontaneous_picture.jpg -------------------------------------------------------------------------------- /styles/samples/mre_sumi_e_detailed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_sumi_e_detailed.jpg -------------------------------------------------------------------------------- /styles/samples/mre_sumi_e_symbolic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_sumi_e_symbolic.jpg -------------------------------------------------------------------------------- /styles/samples/mre_surreal_painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_surreal_painting.jpg -------------------------------------------------------------------------------- /styles/samples/mre_undead_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_undead_art.jpg -------------------------------------------------------------------------------- /styles/samples/mre_underground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/mre_underground.jpg -------------------------------------------------------------------------------- /styles/samples/neo_baroque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/neo_baroque.jpg -------------------------------------------------------------------------------- /styles/samples/neo_byzantine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/neo_byzantine.jpg -------------------------------------------------------------------------------- /styles/samples/neo_futurism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/neo_futurism.jpg -------------------------------------------------------------------------------- /styles/samples/neo_impressionism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/neo_impressionism.jpg -------------------------------------------------------------------------------- /styles/samples/neo_rococo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/neo_rococo.jpg -------------------------------------------------------------------------------- /styles/samples/op_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/op_art.jpg -------------------------------------------------------------------------------- /styles/samples/ornate_and_intricate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/ornate_and_intricate.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_collage.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_flat_papercut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_flat_papercut.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_kirigami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_kirigami.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_paper_mache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_paper_mache.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_paper_quilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_paper_quilling.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_papercut_collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_papercut_collage.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_papercut_shadow_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_papercut_shadow_box.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_stacked_papercut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_stacked_papercut.jpg -------------------------------------------------------------------------------- /styles/samples/papercraft_thick_layered_papercut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/papercraft_thick_layered_papercut.jpg -------------------------------------------------------------------------------- /styles/samples/pencil_sketch_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/pencil_sketch_drawing.jpg -------------------------------------------------------------------------------- /styles/samples/photo_alien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_alien.jpg -------------------------------------------------------------------------------- /styles/samples/photo_film_noir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_film_noir.jpg -------------------------------------------------------------------------------- /styles/samples/photo_glamour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_glamour.jpg -------------------------------------------------------------------------------- /styles/samples/photo_hdr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_hdr.jpg -------------------------------------------------------------------------------- /styles/samples/photo_iphone_photographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_iphone_photographic.jpg -------------------------------------------------------------------------------- /styles/samples/photo_long_exposure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_long_exposure.jpg -------------------------------------------------------------------------------- /styles/samples/photo_neon_noir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_neon_noir.jpg -------------------------------------------------------------------------------- /styles/samples/photo_silhouette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_silhouette.jpg -------------------------------------------------------------------------------- /styles/samples/photo_tilt_shift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/photo_tilt_shift.jpg -------------------------------------------------------------------------------- /styles/samples/pop_art_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/pop_art_2.jpg -------------------------------------------------------------------------------- /styles/samples/sai_3d_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_3d_model.jpg -------------------------------------------------------------------------------- /styles/samples/sai_analog_film.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_analog_film.jpg -------------------------------------------------------------------------------- /styles/samples/sai_anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_anime.jpg -------------------------------------------------------------------------------- /styles/samples/sai_cinematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_cinematic.jpg -------------------------------------------------------------------------------- /styles/samples/sai_comic_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_comic_book.jpg -------------------------------------------------------------------------------- /styles/samples/sai_craft_clay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_craft_clay.jpg -------------------------------------------------------------------------------- /styles/samples/sai_digital_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_digital_art.jpg -------------------------------------------------------------------------------- /styles/samples/sai_enhance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_enhance.jpg -------------------------------------------------------------------------------- /styles/samples/sai_fantasy_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_fantasy_art.jpg -------------------------------------------------------------------------------- /styles/samples/sai_isometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_isometric.jpg -------------------------------------------------------------------------------- /styles/samples/sai_line_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_line_art.jpg -------------------------------------------------------------------------------- /styles/samples/sai_lowpoly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_lowpoly.jpg -------------------------------------------------------------------------------- /styles/samples/sai_neonpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_neonpunk.jpg -------------------------------------------------------------------------------- /styles/samples/sai_origami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_origami.jpg -------------------------------------------------------------------------------- /styles/samples/sai_photographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_photographic.jpg -------------------------------------------------------------------------------- /styles/samples/sai_pixel_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_pixel_art.jpg -------------------------------------------------------------------------------- /styles/samples/sai_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sai_texture.jpg -------------------------------------------------------------------------------- /styles/samples/silhouette_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/silhouette_art.jpg -------------------------------------------------------------------------------- /styles/samples/simple_vector_art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/simple_vector_art.jpg -------------------------------------------------------------------------------- /styles/samples/steampunk_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/steampunk_2.jpg -------------------------------------------------------------------------------- /styles/samples/sticker_designs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/sticker_designs.jpg -------------------------------------------------------------------------------- /styles/samples/tranquil_relaxing_atmosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/tranquil_relaxing_atmosphere.jpg -------------------------------------------------------------------------------- /styles/samples/vibrant_rim_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/vibrant_rim_light.jpg -------------------------------------------------------------------------------- /styles/samples/volumetric_lighting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/volumetric_lighting.jpg -------------------------------------------------------------------------------- /styles/samples/watercolor_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/watercolor_2.jpg -------------------------------------------------------------------------------- /styles/samples/whimsical_and_playful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/17Retoucher/ComfyUI_Fooocus/79ef0bf1e5a7633fd0f6e672101252bdfd987124/styles/samples/whimsical_and_playful.jpg --------------------------------------------------------------------------------