├── README.md ├── data └── 1k.csv ├── modifiers.json ├── modifiers ├── art │ ├── art movements.txt │ ├── art styles.txt │ └── descriptive terms.txt ├── digital-art │ ├── 3D.txt │ ├── character.txt │ ├── cursed.txt │ ├── fractal.txt │ ├── illustration.txt │ └── matte painting.txt ├── general │ ├── design tools and communities.txt │ └── genres.txt ├── painting │ └── painting.txt ├── photography │ └── photography.txt └── styles │ ├── alien.txt │ └── futuristic.txt ├── presets.json ├── presets └── krea │ └── glossy tubes.txt ├── static └── krea.gif ├── update_modifiers.py └── update_presets.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/README.md -------------------------------------------------------------------------------- /data/1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/data/1k.csv -------------------------------------------------------------------------------- /modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers.json -------------------------------------------------------------------------------- /modifiers/art/art movements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/art/art movements.txt -------------------------------------------------------------------------------- /modifiers/art/art styles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/art/art styles.txt -------------------------------------------------------------------------------- /modifiers/art/descriptive terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/art/descriptive terms.txt -------------------------------------------------------------------------------- /modifiers/digital-art/3D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/digital-art/3D.txt -------------------------------------------------------------------------------- /modifiers/digital-art/character.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/digital-art/character.txt -------------------------------------------------------------------------------- /modifiers/digital-art/cursed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/digital-art/cursed.txt -------------------------------------------------------------------------------- /modifiers/digital-art/fractal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/digital-art/fractal.txt -------------------------------------------------------------------------------- /modifiers/digital-art/illustration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/digital-art/illustration.txt -------------------------------------------------------------------------------- /modifiers/digital-art/matte painting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/digital-art/matte painting.txt -------------------------------------------------------------------------------- /modifiers/general/design tools and communities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/general/design tools and communities.txt -------------------------------------------------------------------------------- /modifiers/general/genres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/general/genres.txt -------------------------------------------------------------------------------- /modifiers/painting/painting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/painting/painting.txt -------------------------------------------------------------------------------- /modifiers/photography/photography.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/photography/photography.txt -------------------------------------------------------------------------------- /modifiers/styles/alien.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/styles/alien.txt -------------------------------------------------------------------------------- /modifiers/styles/futuristic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/modifiers/styles/futuristic.txt -------------------------------------------------------------------------------- /presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/presets.json -------------------------------------------------------------------------------- /presets/krea/glossy tubes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/presets/krea/glossy tubes.txt -------------------------------------------------------------------------------- /static/krea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/static/krea.gif -------------------------------------------------------------------------------- /update_modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/update_modifiers.py -------------------------------------------------------------------------------- /update_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krea-ai/open-prompts/HEAD/update_presets.py --------------------------------------------------------------------------------