├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── data ├── Animation_studios_2000s │ └── New Text Document.json ├── Anime │ └── anime.json ├── Azazeal Styles │ ├── Aesthetic_Styles.json │ ├── Anime_Styles.json │ ├── Fantasy_Styles.json │ ├── Gothic_Styles.json │ ├── Line_Art_Styles.json │ ├── Movie_Poster_Styles.json │ ├── Punk_Styles.json │ └── Travel_Poster_Styles.json ├── Azazeal_Styles │ ├── Aesthetic_Styles.json │ ├── Anime_Styles.json │ ├── Fantasy_Styles.json │ ├── Gothic_Styles.json │ ├── Line_Art_Styles.json │ ├── Movie_Poster_Styles.json │ ├── Punk_Styles.json │ └── Travel_Poster_Styles.json ├── Claymation_Studios │ └── CMS.json ├── Fashion │ └── fashion_style_options_reformatted_50_corrected.json ├── FluxMileHighBeta │ └── FLUX_Finish_Styles.json ├── FluxMileHighTest │ └── mile_high_styles_Flux_power.json ├── FluxMileHighalpha │ ├── FLUX_Mode_Style.jsonx │ └── Flux_utf8.json ├── LUTs │ └── Modified_LUTs_100.json ├── Twiri+Sai │ ├── sdxl_styles_base.json │ ├── sdxl_styles_sai.json │ └── sdxl_styles_twri.json ├── adjective │ └── adjective.json ├── artist │ └── Artists.json ├── banana_styles │ └── bananas.json ├── breast_state │ └── breast_state.json ├── camera │ └── sdxl_camera_styles.json ├── camera_angles │ └── camera_angles.json ├── cgi │ └── cgi.json ├── clothing_state │ └── clothing_state.json ├── clothing_style │ └── clothing_style.json ├── composition │ └── Composition_Styles.json ├── depth │ └── depth.json ├── environment │ ├── Environments.json │ └── location.json ├── era │ └── era_options_reformatted_50_corrected.json ├── face │ └── face.json ├── filter │ └── Filter_Styles.json ├── filter_options │ └── filter_options_reformatted_modified.json ├── fluxfinish │ └── FLUX_Finish_Styles2.json ├── focal point │ └── focal point.json ├── focal_point │ └── focal point.json ├── focus │ └── Focus_Styles.json ├── lighting │ └── Lighting_Styles.json ├── materials │ └── materials.json ├── milehigh │ └── mile_high_styles.json ├── milehighV2 │ └── final_correctly_formatted_mile_high_styles.json ├── milehighV3 │ ├── e.json │ ├── final_corrected_merged_styles_part1.json │ ├── final_corrected_merged_styles_part2.json │ ├── final_corrected_merged_styles_part3.json │ └── final_corrected_merged_styles_part4.json ├── mode │ └── mode_options_reformatted_50_corrected.json ├── mood │ └── Mood_Styles.json ├── nouns │ └── nouns.json ├── preposition │ └── preposition.json ├── subject │ └── Subjects.json ├── subject_count │ └── subject_count_options_reformatted_50_corrected.json ├── theme │ └── themes.json ├── timeofday │ └── ToD_Styles.json ├── unique_identifier │ └── unique_style_identifier_modified.json └── verbing │ └── verbing.json ├── examples ├── sdxl_prompt_styler.png └── sdxl_prompt_styler_advanced.png ├── pyproject.toml ├── sdxl_prompt_styler.py ├── sdxl_styles_base.json ├── sdxl_styles_sai.json ├── sdxl_styles_twri.json └── styler_config.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/__init__.py -------------------------------------------------------------------------------- /data/Animation_studios_2000s/New Text Document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Animation_studios_2000s/New Text Document.json -------------------------------------------------------------------------------- /data/Anime/anime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Anime/anime.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Aesthetic_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Aesthetic_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Anime_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Anime_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Fantasy_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Fantasy_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Gothic_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Gothic_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Line_Art_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Line_Art_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Movie_Poster_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Movie_Poster_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Punk_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Punk_Styles.json -------------------------------------------------------------------------------- /data/Azazeal Styles/Travel_Poster_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal Styles/Travel_Poster_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Aesthetic_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Aesthetic_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Anime_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Anime_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Fantasy_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Fantasy_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Gothic_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Gothic_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Line_Art_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Line_Art_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Movie_Poster_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Movie_Poster_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Punk_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Punk_Styles.json -------------------------------------------------------------------------------- /data/Azazeal_Styles/Travel_Poster_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Azazeal_Styles/Travel_Poster_Styles.json -------------------------------------------------------------------------------- /data/Claymation_Studios/CMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Claymation_Studios/CMS.json -------------------------------------------------------------------------------- /data/Fashion/fashion_style_options_reformatted_50_corrected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Fashion/fashion_style_options_reformatted_50_corrected.json -------------------------------------------------------------------------------- /data/FluxMileHighBeta/FLUX_Finish_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/FluxMileHighBeta/FLUX_Finish_Styles.json -------------------------------------------------------------------------------- /data/FluxMileHighTest/mile_high_styles_Flux_power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/FluxMileHighTest/mile_high_styles_Flux_power.json -------------------------------------------------------------------------------- /data/FluxMileHighalpha/FLUX_Mode_Style.jsonx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/FluxMileHighalpha/FLUX_Mode_Style.jsonx -------------------------------------------------------------------------------- /data/FluxMileHighalpha/Flux_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/FluxMileHighalpha/Flux_utf8.json -------------------------------------------------------------------------------- /data/LUTs/Modified_LUTs_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/LUTs/Modified_LUTs_100.json -------------------------------------------------------------------------------- /data/Twiri+Sai/sdxl_styles_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Twiri+Sai/sdxl_styles_base.json -------------------------------------------------------------------------------- /data/Twiri+Sai/sdxl_styles_sai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Twiri+Sai/sdxl_styles_sai.json -------------------------------------------------------------------------------- /data/Twiri+Sai/sdxl_styles_twri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/Twiri+Sai/sdxl_styles_twri.json -------------------------------------------------------------------------------- /data/adjective/adjective.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/adjective/adjective.json -------------------------------------------------------------------------------- /data/artist/Artists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/artist/Artists.json -------------------------------------------------------------------------------- /data/banana_styles/bananas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/banana_styles/bananas.json -------------------------------------------------------------------------------- /data/breast_state/breast_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/breast_state/breast_state.json -------------------------------------------------------------------------------- /data/camera/sdxl_camera_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/camera/sdxl_camera_styles.json -------------------------------------------------------------------------------- /data/camera_angles/camera_angles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/camera_angles/camera_angles.json -------------------------------------------------------------------------------- /data/cgi/cgi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/cgi/cgi.json -------------------------------------------------------------------------------- /data/clothing_state/clothing_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/clothing_state/clothing_state.json -------------------------------------------------------------------------------- /data/clothing_style/clothing_style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/clothing_style/clothing_style.json -------------------------------------------------------------------------------- /data/composition/Composition_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/composition/Composition_Styles.json -------------------------------------------------------------------------------- /data/depth/depth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/depth/depth.json -------------------------------------------------------------------------------- /data/environment/Environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/environment/Environments.json -------------------------------------------------------------------------------- /data/environment/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/environment/location.json -------------------------------------------------------------------------------- /data/era/era_options_reformatted_50_corrected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/era/era_options_reformatted_50_corrected.json -------------------------------------------------------------------------------- /data/face/face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/face/face.json -------------------------------------------------------------------------------- /data/filter/Filter_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/filter/Filter_Styles.json -------------------------------------------------------------------------------- /data/filter_options/filter_options_reformatted_modified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/filter_options/filter_options_reformatted_modified.json -------------------------------------------------------------------------------- /data/fluxfinish/FLUX_Finish_Styles2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/fluxfinish/FLUX_Finish_Styles2.json -------------------------------------------------------------------------------- /data/focal point/focal point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/focal point/focal point.json -------------------------------------------------------------------------------- /data/focal_point/focal point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/focal_point/focal point.json -------------------------------------------------------------------------------- /data/focus/Focus_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/focus/Focus_Styles.json -------------------------------------------------------------------------------- /data/lighting/Lighting_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/lighting/Lighting_Styles.json -------------------------------------------------------------------------------- /data/materials/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/materials/materials.json -------------------------------------------------------------------------------- /data/milehigh/mile_high_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehigh/mile_high_styles.json -------------------------------------------------------------------------------- /data/milehighV2/final_correctly_formatted_mile_high_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehighV2/final_correctly_formatted_mile_high_styles.json -------------------------------------------------------------------------------- /data/milehighV3/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehighV3/e.json -------------------------------------------------------------------------------- /data/milehighV3/final_corrected_merged_styles_part1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehighV3/final_corrected_merged_styles_part1.json -------------------------------------------------------------------------------- /data/milehighV3/final_corrected_merged_styles_part2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehighV3/final_corrected_merged_styles_part2.json -------------------------------------------------------------------------------- /data/milehighV3/final_corrected_merged_styles_part3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehighV3/final_corrected_merged_styles_part3.json -------------------------------------------------------------------------------- /data/milehighV3/final_corrected_merged_styles_part4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/milehighV3/final_corrected_merged_styles_part4.json -------------------------------------------------------------------------------- /data/mode/mode_options_reformatted_50_corrected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/mode/mode_options_reformatted_50_corrected.json -------------------------------------------------------------------------------- /data/mood/Mood_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/mood/Mood_Styles.json -------------------------------------------------------------------------------- /data/nouns/nouns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/nouns/nouns.json -------------------------------------------------------------------------------- /data/preposition/preposition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/preposition/preposition.json -------------------------------------------------------------------------------- /data/subject/Subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/subject/Subjects.json -------------------------------------------------------------------------------- /data/subject_count/subject_count_options_reformatted_50_corrected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/subject_count/subject_count_options_reformatted_50_corrected.json -------------------------------------------------------------------------------- /data/theme/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/theme/themes.json -------------------------------------------------------------------------------- /data/timeofday/ToD_Styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/timeofday/ToD_Styles.json -------------------------------------------------------------------------------- /data/unique_identifier/unique_style_identifier_modified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/unique_identifier/unique_style_identifier_modified.json -------------------------------------------------------------------------------- /data/verbing/verbing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/data/verbing/verbing.json -------------------------------------------------------------------------------- /examples/sdxl_prompt_styler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/examples/sdxl_prompt_styler.png -------------------------------------------------------------------------------- /examples/sdxl_prompt_styler_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/examples/sdxl_prompt_styler_advanced.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sdxl_prompt_styler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/sdxl_prompt_styler.py -------------------------------------------------------------------------------- /sdxl_styles_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/sdxl_styles_base.json -------------------------------------------------------------------------------- /sdxl_styles_sai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/sdxl_styles_sai.json -------------------------------------------------------------------------------- /sdxl_styles_twri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/sdxl_styles_twri.json -------------------------------------------------------------------------------- /styler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TripleHeadedMonkey/ComfyUI_MileHighStyler/HEAD/styler_config.json --------------------------------------------------------------------------------