File size: 119,418 Bytes
c6535db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 | [
{
"name": "Fooocus Enhance",
"negative_prompt": "(worst quality, low quality, normal quality, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art:1.4), (watermark, signature, text font, username, error, logo, words, letters, digits, autograph, trademark, name:1.2), (blur, blurry, grainy), morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, censored, jpeg artifacts, out of focus, glitch, duplicate, (airbrushed, cartoon, anime, semi-realistic, cgi, render, blender, digital art, manga, amateur:1.3), (3D ,3D Game, 3D Game Scene, 3D Character:1.1), (bad hands, bad anatomy, bad body, bad face, bad teeth, bad arms, bad legs, deformities:1.3)",
"name_cn": "Fooocus-优化增强",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fooocus_enhance.jpg"
},
{
"name": "Fooocus Sharp",
"prompt": "cinematic still {prompt} . emotional, harmonious, vignette, 4k epic detailed, shot on kodak, 35mm photo, sharp focus, high budget, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "anime, cartoon, graphic, (blur, blurry, bokeh), text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured",
"name_cn": "Fooocus-锐化",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fooocus_sharp.jpg"
},
{
"name": "Fooocus Masterpiece",
"prompt": "(masterpiece), (best quality), (ultra-detailed), {prompt}, illustration, disheveled hair, detailed eyes, perfect composition, moist skin, intricate details, earrings, by wlop",
"negative_prompt": "longbody, lowres, bad anatomy, bad hands, missing fingers, pubic hair,extra digit, fewer digits, cropped, worst quality, low quality",
"name_cn": "Fooocus-杰作",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fooocus_masterpiece.jpg"
},
{
"name": "Fooocus Photograph",
"prompt": "photograph {prompt}, 50mm . cinematic 4k epic detailed 4k epic detailed photograph shot on kodak detailed cinematic hbo dark moody, 35mm photo, grainy, vignette, vintage, Kodachrome, Lomography, stained, highly detailed, found footage",
"negative_prompt": "Brad Pitt, bokeh, depth of field, blurry, cropped, regular face, saturated, contrast, deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime, text, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck",
"name_cn": "Fooocus-照片",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fooocus_photograph.jpg"
},
{
"name": "Fooocus Negative",
"negative_prompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch",
"name_cn": "Fooocus-反向提示词",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fooocus_negative.jpg"
},
{
"name": "Fooocus Cinematic",
"prompt": "cinematic still {prompt} . emotional, harmonious, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured",
"name_cn": "Fooocus-电影感",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fooocus_cinematic.jpg"
},
{
"name": "sai-3d-model",
"prompt": "professional 3d model {prompt} . octane render, highly detailed, volumetric, dramatic lighting",
"negative_prompt": "ugly, deformed, noisy, low poly, blurry, painting",
"name_cn": "SAI-3D模型",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_3d_model.jpg"
},
{
"name": "sai-analog film",
"prompt": "analog film photo {prompt} . faded film, desaturated, 35mm photo, grainy, vignette, vintage, Kodachrome, Lomography, stained, highly detailed, found footage",
"negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured",
"name_cn": "SAI-模拟电影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_analog_film.jpg"
},
{
"name": "sai-anime",
"prompt": "anime artwork {prompt} . anime style, key visual, vibrant, studio anime, highly detailed",
"negative_prompt": "photo, deformed, black and white, realism, disfigured, low contrast",
"name_cn": "SAI-动漫",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_anime.jpg"
},
{
"name": "sai-cinematic",
"prompt": "cinematic film still {prompt} . shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured",
"name_cn": "SAI-电影片段",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_cinematic.jpg"
},
{
"name": "sai-comic book",
"prompt": "comic {prompt} . graphic illustration, comic art, graphic novel art, vibrant, highly detailed",
"negative_prompt": "photograph, deformed, glitch, noisy, realistic, stock photo",
"name_cn": "SAI-漫画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_comic_book.jpg"
},
{
"name": "sai-craft clay",
"prompt": "play-doh style {prompt} . sculpture, clay art, centered composition, Claymation",
"negative_prompt": "sloppy, messy, grainy, highly detailed, ultra textured, photo",
"name_cn": "SAI-工艺粘土",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_craft_clay.jpg"
},
{
"name": "sai-digital art",
"prompt": "concept art {prompt} . digital artwork, illustrative, painterly, matte painting, highly detailed",
"negative_prompt": "photo, photorealistic, realism, ugly",
"name_cn": "SAI-数字艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_digital_art.jpg"
},
{
"name": "sai-enhance",
"prompt": "breathtaking {prompt} . award-winning, professional, highly detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy",
"name_cn": "SAI-增强",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_enhance.jpg"
},
{
"name": "sai-fantasy art",
"prompt": "ethereal fantasy concept art of {prompt} . magnificent, celestial, ethereal, painterly, epic, majestic, magical, fantasy art, cover art, dreamy",
"negative_prompt": "photographic, realistic, realism, 35mm film, dslr, cropped, frame, text, deformed, glitch, noise, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, sloppy, duplicate, mutated, black and white",
"name_cn": "SAI-奇幻艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_fantasy_art.jpg"
},
{
"name": "sai-isometric",
"prompt": "isometric style {prompt} . vibrant, beautiful, crisp, detailed, ultra detailed, intricate",
"negative_prompt": "deformed, mutated, ugly, disfigured, blur, blurry, noise, noisy, realistic, photographic",
"name_cn": "SAI-等距风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_isometric.jpg"
},
{
"name": "sai-line art",
"prompt": "line art drawing {prompt} . professional, sleek, modern, minimalist, graphic, line art, vector graphics",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, blurry, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, mutated, realism, realistic, impressionism, expressionism, oil, acrylic",
"name_cn": "SAI-线条艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_line_art.jpg"
},
{
"name": "sai-lowpoly",
"prompt": "low-poly style {prompt} . low-poly game art, polygon mesh, jagged, blocky, wireframe edges, centered composition",
"negative_prompt": "noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo",
"name_cn": "SAI-低多边形",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_lowpoly.jpg"
},
{
"name": "sai-neonpunk",
"prompt": "neonpunk style {prompt} . cyberpunk, vaporwave, neon, vibes, vibrant, stunningly beautiful, crisp, detailed, sleek, ultramodern, magenta highlights, dark purple shadows, high contrast, cinematic, ultra detailed, intricate, professional",
"negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured",
"name_cn": "SAI-霓虹朋克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_neonpunk.jpg"
},
{
"name": "sai-origami",
"prompt": "origami style {prompt} . paper art, pleated paper, folded, origami art, pleats, cut and fold, centered composition",
"negative_prompt": "noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo",
"name_cn": "SAI-折纸",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_origami.jpg"
},
{
"name": "sai-photographic",
"prompt": "cinematic photo {prompt} . 35mm photograph, film, bokeh, professional, 4k, highly detailed",
"negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly",
"name_cn": "SAI-摄影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_photographic.jpg"
},
{
"name": "sai-pixel art",
"prompt": "pixel-art {prompt} . low-res, blocky, pixel art style, 8-bit graphics",
"negative_prompt": "sloppy, messy, blurry, noisy, highly detailed, ultra textured, photo, realistic",
"name_cn": "SAI-像素艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_pixel_art.jpg"
},
{
"name": "sai-texture",
"prompt": "texture {prompt} top down close-up",
"negative_prompt": "ugly, deformed, noisy, blurry",
"name_cn": "SAI-纹理",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sai_texture.jpg"
},
{
"name": "mre-cinematic-dynamic",
"prompt": "epic cinematic shot of dynamic {prompt} in motion. main subject of high budget action movie. raw photo, motion blur. best quality, high resolution",
"negative_prompt": "static, still, motionless, sluggish. drawing, painting, illustration, rendered. low budget. low quality, low resolution",
"name_cn": "MRE-史诗电影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_cinematic_dynamic.jpg"
},
{
"name": "mre-spontaneous-picture",
"prompt": "spontaneous picture of {prompt}, taken by talented amateur. best quality, high resolution. magical moment, natural look. simple but good looking",
"negative_prompt": "overthinked. low quality, low resolution",
"name_cn": "MRE-自然的抓拍照片",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_spontaneous_picture.jpg"
},
{
"name": "mre-artistic-vision",
"prompt": "powerful artistic vision of {prompt}. breathtaking masterpiece made by great artist. best quality, high resolution",
"negative_prompt": "insignificant, flawed, made by bad artist. low quality, low resolution",
"name_cn": "MRE-艺术视觉",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_artistic_vision.jpg"
},
{
"name": "mre-dark-dream",
"prompt": "dark and unsettling dream showing {prompt}. best quality, high resolution. created by genius but depressed mad artist. grim beauty",
"negative_prompt": "naive, cheerful. comfortable, casual, boring, cliche. low quality, low resolution",
"name_cn": "MRE-黑暗梦境",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_dark_dream.jpg"
},
{
"name": "mre-gloomy-art",
"prompt": "astonishing gloomy art made mainly of shadows and lighting, forming {prompt}. masterful usage of lighting, shadows and chiaroscuro. made by black-hearted artist, drawing from darkness. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-阴郁艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_gloomy_art.jpg"
},
{
"name": "mre-bad-dream",
"prompt": "picture from really bad dream about terrifying {prompt}, true horror. bone-chilling vision. mad world that shouldn't exist. best quality, high resolution",
"negative_prompt": "nice dream, pleasant experience. low quality, low resolution",
"name_cn": "MRE-噩梦",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_bad_dream.jpg"
},
{
"name": "mre-underground",
"prompt": "uncanny caliginous vision of {prompt}, created by remarkable underground artist. best quality, high resolution. raw and brutal art, careless but impressive style. inspired by darkness and chaos",
"negative_prompt": "photography, mainstream, civilized. low quality, low resolution",
"name_cn": "MRE-阴森地下",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_underground.jpg"
},
{
"name": "mre-surreal-painting",
"prompt": "surreal painting representing strange vision of {prompt}. harmonious madness, synergy with chance. unique artstyle, mindbending art, magical surrealism. best quality, high resolution",
"negative_prompt": "photography, illustration, drawing. realistic, possible. logical, sane. low quality, low resolution",
"name_cn": "MRE-超现实主义绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_surreal_painting.jpg"
},
{
"name": "mre-dynamic-illustration",
"prompt": "insanely dynamic illustration of {prompt}. best quality, high resolution. crazy artstyle, careless brushstrokes, emotional and fun",
"negative_prompt": "photography, realistic. static, still, slow, boring. low quality, low resolution",
"name_cn": "MRE-动态插画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_dynamic_illustration.jpg"
},
{
"name": "mre-undead-art",
"prompt": "long forgotten art created by undead artist illustrating {prompt}, tribute to the death and decay. miserable art of the damned. wretched and decaying world. best quality, high resolution",
"negative_prompt": "alive, playful, living. low quality, low resolution",
"name_cn": "MRE-遗忘艺术家作品",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_undead_art.jpg"
},
{
"name": "mre-elemental-art",
"prompt": "art illustrating insane amounts of raging elemental energy turning into {prompt}, avatar of elements. magical surrealism, wizardry. best quality, high resolution",
"negative_prompt": "photography, realistic, real. low quality, low resolution",
"name_cn": "MRE-元素艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_elemental_art.jpg"
},
{
"name": "mre-space-art",
"prompt": "winner of inter-galactic art contest illustrating {prompt}, symbol of the interstellar singularity. best quality, high resolution. artstyle previously unseen in the whole galaxy",
"negative_prompt": "created by human race, low quality, low resolution",
"name_cn": "MRE-空间艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_space_art.jpg"
},
{
"name": "mre-ancient-illustration",
"prompt": "sublime ancient illustration of {prompt}, predating human civilization. crude and simple, but also surprisingly beautiful artwork, made by genius primeval artist. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-古代插图",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_ancient_illustration.jpg"
},
{
"name": "mre-brave-art",
"prompt": "brave, shocking, and brutally true art showing {prompt}. inspired by courage and unlimited creativity. truth found in chaos. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-勇敢艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_brave_art.jpg"
},
{
"name": "mre-heroic-fantasy",
"prompt": "heroic fantasy painting of {prompt}, in the dangerous fantasy world. airbrush over oil on canvas. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-英雄幻想",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_heroic_fantasy.jpg"
},
{
"name": "mre-dark-cyberpunk",
"prompt": "dark cyberpunk illustration of brutal {prompt} in a world without hope, ruled by ruthless criminal corporations. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-黑暗赛博朋克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_dark_cyberpunk.jpg"
},
{
"name": "mre-lyrical-geometry",
"prompt": "geometric and lyrical abstraction painting presenting {prompt}. oil on metal. best quality, high resolution",
"negative_prompt": "photography, realistic, drawing, rendered. low quality, low resolution",
"name_cn": "MRE-抒情几何抽象画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_lyrical_geometry.jpg"
},
{
"name": "mre-sumi-e-symbolic",
"prompt": "big long brushstrokes of deep black sumi-e turning into symbolic painting of {prompt}. master level raw art. best quality, high resolution",
"negative_prompt": "photography, rendered. low quality, low resolution",
"name_cn": "MRE-墨绘长笔画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_sumi_e_symbolic.jpg"
},
{
"name": "mre-sumi-e-detailed",
"prompt": "highly detailed black sumi-e painting of {prompt}. in-depth study of perfection, created by a master. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-精细墨绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_sumi_e_detailed.jpg"
},
{
"name": "mre-manga",
"prompt": "manga artwork presenting {prompt}. created by japanese manga artist. highly emotional. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-日本漫画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_manga.jpg"
},
{
"name": "mre-anime",
"prompt": "anime artwork illustrating {prompt}. created by japanese anime studio. highly emotional. best quality, high resolution",
"negative_prompt": "low quality, low resolution",
"name_cn": "MRE-日本动画片",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_anime.jpg"
},
{
"name": "mre-comic",
"prompt": "breathtaking illustration from adult comic book presenting {prompt}. fabulous artwork. best quality, high resolution",
"negative_prompt": "deformed, ugly, low quality, low resolution",
"name_cn": "MRE-成人漫画书插画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mre_comic.jpg"
},
{
"name": "ads-advertising",
"prompt": "advertising poster style {prompt} . Professional, modern, product-focused, commercial, eye-catching, highly detailed",
"negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive",
"name_cn": "广告-广告",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_advertising.jpg"
},
{
"name": "ads-automotive",
"prompt": "automotive advertisement style {prompt} . sleek, dynamic, professional, commercial, vehicle-focused, high-resolution, highly detailed",
"negative_prompt": "noisy, blurry, unattractive, sloppy, unprofessional",
"name_cn": "广告-汽车",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_automotive.jpg"
},
{
"name": "ads-corporate",
"prompt": "corporate branding style {prompt} . professional, clean, modern, sleek, minimalist, business-oriented, highly detailed",
"negative_prompt": "noisy, blurry, grungy, sloppy, cluttered, disorganized",
"name_cn": "广告-企业品牌",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_corporate.jpg"
},
{
"name": "ads-fashion editorial",
"prompt": "fashion editorial style {prompt} . high fashion, trendy, stylish, editorial, magazine style, professional, highly detailed",
"negative_prompt": "outdated, blurry, noisy, unattractive, sloppy",
"name_cn": "广告-时尚编辑",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_fashion_editorial.jpg"
},
{
"name": "ads-food photography",
"prompt": "food photography style {prompt} . appetizing, professional, culinary, high-resolution, commercial, highly detailed",
"negative_prompt": "unappetizing, sloppy, unprofessional, noisy, blurry",
"name_cn": "广告-食品摄影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_food_photography.jpg"
},
{
"name": "ads-gourmet food photography",
"prompt": "gourmet food photo of {prompt} . soft natural lighting, macro details, vibrant colors, fresh ingredients, glistening textures, bokeh background, styled plating, wooden tabletop, garnished, tantalizing, editorial quality",
"negative_prompt": "cartoon, anime, sketch, grayscale, dull, overexposed, cluttered, messy plate, deformed",
"name_cn": "广告-顶级美食摄影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_gourmet_food_photography.jpg"
},
{
"name": "ads-luxury",
"prompt": "luxury product style {prompt} . elegant, sophisticated, high-end, luxurious, professional, highly detailed",
"negative_prompt": "cheap, noisy, blurry, unattractive, amateurish",
"name_cn": "广告-奢侈品",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_luxury.jpg"
},
{
"name": "ads-real estate",
"prompt": "real estate photography style {prompt} . professional, inviting, well-lit, high-resolution, property-focused, commercial, highly detailed",
"negative_prompt": "dark, blurry, unappealing, noisy, unprofessional",
"name_cn": "广告-房地产",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_real_estate.jpg"
},
{
"name": "ads-retail",
"prompt": "retail packaging style {prompt} . vibrant, enticing, commercial, product-focused, eye-catching, professional, highly detailed",
"negative_prompt": "noisy, blurry, amateurish, sloppy, unattractive",
"name_cn": "广告-零售",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ads_retail.jpg"
},
{
"name": "artstyle-abstract",
"prompt": "abstract style {prompt} . non-representational, colors and shapes, expression of feelings, imaginative, highly detailed",
"negative_prompt": "realistic, photographic, figurative, concrete",
"name_cn": "艺术风格-抽象",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_abstract.jpg"
},
{
"name": "artstyle-abstract expressionism",
"prompt": "abstract expressionist painting {prompt} . energetic brushwork, bold colors, abstract forms, expressive, emotional",
"negative_prompt": "realistic, photorealistic, low contrast, plain, simple, monochrome",
"name_cn": "艺术风格-抽象表现主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_abstract_expressionism.jpg"
},
{
"name": "artstyle-art deco",
"prompt": "art deco style {prompt} . geometric shapes, bold colors, luxurious, elegant, decorative, symmetrical, ornate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist",
"name_cn": "艺术风格-装饰艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_art_deco.jpg"
},
{
"name": "artstyle-art nouveau",
"prompt": "art nouveau style {prompt} . elegant, decorative, curvilinear forms, nature-inspired, ornate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist",
"name_cn": "艺术风格-新艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_art_nouveau.jpg"
},
{
"name": "artstyle-constructivist",
"prompt": "constructivist style {prompt} . geometric shapes, bold colors, dynamic composition, propaganda art style",
"negative_prompt": "realistic, photorealistic, low contrast, plain, simple, abstract expressionism",
"name_cn": "艺术风格-构造主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_constructivist.jpg"
},
{
"name": "artstyle-cubist",
"prompt": "cubist artwork {prompt} . geometric shapes, abstract, innovative, revolutionary",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy",
"name_cn": "艺术风格-立体主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_cubist.jpg"
},
{
"name": "artstyle-expressionist",
"prompt": "expressionist {prompt} . raw, emotional, dynamic, distortion for emotional effect, vibrant, use of unusual colors, detailed",
"negative_prompt": "realism, symmetry, quiet, calm, photo",
"name_cn": "艺术风格-表现主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_expressionist.jpg"
},
{
"name": "artstyle-graffiti",
"prompt": "graffiti style {prompt} . street art, vibrant, urban, detailed, tag, mural",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic",
"name_cn": "艺术风格-涂鸦",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_graffiti.jpg"
},
{
"name": "artstyle-hyperrealism",
"prompt": "hyperrealistic art {prompt} . extremely high-resolution details, photographic, realism pushed to extreme, fine texture, incredibly lifelike",
"negative_prompt": "simplified, abstract, unrealistic, impressionistic, low resolution",
"name_cn": "艺术风格-超写实主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_hyperrealism.jpg"
},
{
"name": "artstyle-impressionist",
"prompt": "impressionist painting {prompt} . loose brushwork, vibrant color, light and shadow play, captures feeling over form",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy",
"name_cn": "艺术风格-印象派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_impressionist.jpg"
},
{
"name": "artstyle-pointillism",
"prompt": "pointillism style {prompt} . composed entirely of small, distinct dots of color, vibrant, highly detailed",
"negative_prompt": "line drawing, smooth shading, large color fields, simplistic",
"name_cn": "艺术风格-点彩派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_pointillism.jpg"
},
{
"name": "artstyle-pop art",
"prompt": "pop Art style {prompt} . bright colors, bold outlines, popular culture themes, ironic or kitsch",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, minimalist",
"name_cn": "艺术风格-波普艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_pop_art.jpg"
},
{
"name": "artstyle-psychedelic",
"prompt": "psychedelic style {prompt} . vibrant colors, swirling patterns, abstract forms, surreal, trippy",
"negative_prompt": "monochrome, black and white, low contrast, realistic, photorealistic, plain, simple",
"name_cn": "艺术风格-迷幻",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_psychedelic.jpg"
},
{
"name": "artstyle-renaissance",
"prompt": "renaissance style {prompt} . realistic, perspective, light and shadow, religious or mythological themes, highly detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, modernist, minimalist, abstract",
"name_cn": "艺术风格-文艺复兴",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_renaissance.jpg"
},
{
"name": "artstyle-steampunk",
"prompt": "steampunk style {prompt} . antique, mechanical, brass and copper tones, gears, intricate, detailed",
"negative_prompt": "deformed, glitch, noisy, low contrast, anime, photorealistic",
"name_cn": "艺术风格-蒸汽朋克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_steampunk.jpg"
},
{
"name": "artstyle-surrealist",
"prompt": "surrealist art {prompt} . dreamlike, mysterious, provocative, symbolic, intricate, detailed",
"negative_prompt": "anime, photorealistic, realistic, deformed, glitch, noisy, low contrast",
"name_cn": "艺术风格-超现实主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_surrealist.jpg"
},
{
"name": "artstyle-typography",
"prompt": "typographic art {prompt} . stylized, intricate, detailed, artistic, text-based",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic",
"name_cn": "艺术风格-字体设计",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_typography.jpg"
},
{
"name": "artstyle-watercolor",
"prompt": "watercolor painting {prompt} . vibrant, beautiful, painterly, detailed, textural, artistic",
"negative_prompt": "anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy",
"name_cn": "艺术风格-水彩",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/artstyle_watercolor.jpg"
},
{
"name": "futuristic-biomechanical",
"prompt": "biomechanical style {prompt} . blend of organic and mechanical elements, futuristic, cybernetic, detailed, intricate",
"negative_prompt": "natural, rustic, primitive, organic, simplistic",
"name_cn": "未来主义-生物机械",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_biomechanical.jpg"
},
{
"name": "futuristic-biomechanical cyberpunk",
"prompt": "biomechanical cyberpunk {prompt} . cybernetics, human-machine fusion, dystopian, organic meets artificial, dark, intricate, highly detailed",
"negative_prompt": "natural, colorful, deformed, sketch, low contrast, watercolor",
"name_cn": "未来主义-生物机械-赛博朋克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_biomechanical_cyberpunk.jpg"
},
{
"name": "futuristic-cybernetic",
"prompt": "cybernetic style {prompt} . futuristic, technological, cybernetic enhancements, robotics, artificial intelligence themes",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval",
"name_cn": "未来主义-人机融合",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_cybernetic.jpg"
},
{
"name": "futuristic-cybernetic robot",
"prompt": "cybernetic robot {prompt} . android, AI, machine, metal, wires, tech, futuristic, highly detailed",
"negative_prompt": "organic, natural, human, sketch, watercolor, low contrast",
"name_cn": "未来主义-人机融合-机器人",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_cybernetic_robot.jpg"
},
{
"name": "futuristic-cyberpunk cityscape",
"prompt": "cyberpunk cityscape {prompt} . neon lights, dark alleys, skyscrapers, futuristic, vibrant colors, high contrast, highly detailed",
"negative_prompt": "natural, rural, deformed, low contrast, black and white, sketch, watercolor",
"name_cn": "未来主义-赛博朋克城市",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_cyberpunk_cityscape.jpg"
},
{
"name": "futuristic-futuristic",
"prompt": "futuristic style {prompt} . sleek, modern, ultramodern, high tech, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vintage, antique",
"name_cn": "未来主义-未来主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_futuristic.jpg"
},
{
"name": "futuristic-retro cyberpunk",
"prompt": "retro cyberpunk {prompt} . 80's inspired, synthwave, neon, vibrant, detailed, retro futurism",
"negative_prompt": "modern, desaturated, black and white, realism, low contrast",
"name_cn": "未来主义-复古赛博朋克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_retro_cyberpunk.jpg"
},
{
"name": "futuristic-retro futurism",
"prompt": "retro-futuristic {prompt} . vintage sci-fi, 50s and 60s style, atomic age, vibrant, highly detailed",
"negative_prompt": "contemporary, realistic, rustic, primitive",
"name_cn": "未来主义-复古未来主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_retro_futurism.jpg"
},
{
"name": "futuristic-sci-fi",
"prompt": "sci-fi style {prompt} . futuristic, technological, alien worlds, space themes, advanced civilizations",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval",
"name_cn": "未来主义-科幻",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_sci_fi.jpg"
},
{
"name": "futuristic-vaporwave",
"prompt": "vaporwave style {prompt} . retro aesthetic, cyberpunk, vibrant, neon colors, vintage 80s and 90s style, highly detailed",
"negative_prompt": "monochrome, muted colors, realism, rustic, minimalist, dark",
"name_cn": "未来主义-蒸汽波",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futuristic_vaporwave.jpg"
},
{
"name": "game-bubble bobble",
"prompt": "Bubble Bobble style {prompt} . 8-bit, cute, pixelated, fantasy, vibrant, reminiscent of Bubble Bobble game",
"negative_prompt": "realistic, modern, photorealistic, violent, horror",
"name_cn": "游戏-泡泡龙",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_bubble_bobble.jpg"
},
{
"name": "game-cyberpunk game",
"prompt": "cyberpunk game style {prompt} . neon, dystopian, futuristic, digital, vibrant, detailed, high contrast, reminiscent of cyberpunk genre video games",
"negative_prompt": "historical, natural, rustic, low detailed",
"name_cn": "游戏-赛博朋克游戏",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_cyberpunk_game.jpg"
},
{
"name": "game-fighting game",
"prompt": "fighting game style {prompt} . dynamic, vibrant, action-packed, detailed character design, reminiscent of fighting video games",
"negative_prompt": "peaceful, calm, minimalist, photorealistic",
"name_cn": "游戏-格斗游戏",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_fighting_game.jpg"
},
{
"name": "game-gta",
"prompt": "GTA-style artwork {prompt} . satirical, exaggerated, pop art style, vibrant colors, iconic characters, action-packed",
"negative_prompt": "realistic, black and white, low contrast, impressionist, cubist, noisy, blurry, deformed",
"name_cn": "游戏-侠盗猎车手",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_gta.jpg"
},
{
"name": "game-mario",
"prompt": "Super Mario style {prompt} . vibrant, cute, cartoony, fantasy, playful, reminiscent of Super Mario series",
"negative_prompt": "realistic, modern, horror, dystopian, violent",
"name_cn": "游戏-马里奥",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_mario.jpg"
},
{
"name": "game-minecraft",
"prompt": "Minecraft style {prompt} . blocky, pixelated, vibrant colors, recognizable characters and objects, game assets",
"negative_prompt": "smooth, realistic, detailed, photorealistic, noise, blurry, deformed",
"name_cn": "游戏-我的世界",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_minecraft.jpg"
},
{
"name": "game-pokemon",
"prompt": "Pokémon style {prompt} . vibrant, cute, anime, fantasy, reminiscent of Pokémon series",
"negative_prompt": "realistic, modern, horror, dystopian, violent",
"name_cn": "游戏-宝可梦",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_pokemon.jpg"
},
{
"name": "game-retro arcade",
"prompt": "retro arcade style {prompt} . 8-bit, pixelated, vibrant, classic video game, old school gaming, reminiscent of 80s and 90s arcade games",
"negative_prompt": "modern, ultra-high resolution, photorealistic, 3D",
"name_cn": "游戏-复古街机",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_retro_arcade.jpg"
},
{
"name": "game-retro game",
"prompt": "retro game art {prompt} . 16-bit, vibrant colors, pixelated, nostalgic, charming, fun",
"negative_prompt": "realistic, photorealistic, 35mm film, deformed, glitch, low contrast, noisy",
"name_cn": "游戏-复古游戏",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_retro_game.jpg"
},
{
"name": "game-rpg fantasy game",
"prompt": "role-playing game (RPG) style fantasy {prompt} . detailed, vibrant, immersive, reminiscent of high fantasy RPG games",
"negative_prompt": "sci-fi, modern, urban, futuristic, low detailed",
"name_cn": "游戏-角色扮演幻想游戏",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_rpg_fantasy_game.jpg"
},
{
"name": "game-strategy game",
"prompt": "strategy game style {prompt} . overhead view, detailed map, units, reminiscent of real-time strategy video games",
"negative_prompt": "first-person view, modern, photorealistic",
"name_cn": "游戏-策略游戏",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_strategy_game.jpg"
},
{
"name": "game-streetfighter",
"prompt": "Street Fighter style {prompt} . vibrant, dynamic, arcade, 2D fighting game, highly detailed, reminiscent of Street Fighter series",
"negative_prompt": "3D, realistic, modern, photorealistic, turn-based strategy",
"name_cn": "游戏-街头霸王",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_streetfighter.jpg"
},
{
"name": "game-zelda",
"prompt": "Legend of Zelda style {prompt} . vibrant, fantasy, detailed, epic, heroic, reminiscent of The Legend of Zelda series",
"negative_prompt": "sci-fi, modern, realistic, horror",
"name_cn": "游戏-塞尔达传说",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/game_zelda.jpg"
},
{
"name": "misc-architectural",
"prompt": "architectural style {prompt} . clean lines, geometric shapes, minimalist, modern, architectural drawing, highly detailed",
"negative_prompt": "curved lines, ornate, baroque, abstract, grunge",
"name_cn": "其他-建筑",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_architectural.jpg"
},
{
"name": "misc-disco",
"prompt": "disco-themed {prompt} . vibrant, groovy, retro 70s style, shiny disco balls, neon lights, dance floor, highly detailed",
"negative_prompt": "minimalist, rustic, monochrome, contemporary, simplistic",
"name_cn": "其他-迪斯科",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_disco.jpg"
},
{
"name": "misc-dreamscape",
"prompt": "dreamscape {prompt} . surreal, ethereal, dreamy, mysterious, fantasy, highly detailed",
"negative_prompt": "realistic, concrete, ordinary, mundane",
"name_cn": "其他-梦境",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_dreamscape.jpg"
},
{
"name": "misc-dystopian",
"prompt": "dystopian style {prompt} . bleak, post-apocalyptic, somber, dramatic, highly detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, cheerful, optimistic, vibrant, colorful",
"name_cn": "其他-反乌托邦",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_dystopian.jpg"
},
{
"name": "misc-fairy tale",
"prompt": "fairy tale {prompt} . magical, fantastical, enchanting, storybook style, highly detailed",
"negative_prompt": "realistic, modern, ordinary, mundane",
"name_cn": "其他-童话故事",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_fairy_tale.jpg"
},
{
"name": "misc-gothic",
"prompt": "gothic style {prompt} . dark, mysterious, haunting, dramatic, ornate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, cheerful, optimistic",
"name_cn": "其他-哥特风",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_gothic.jpg"
},
{
"name": "misc-grunge",
"prompt": "grunge style {prompt} . textured, distressed, vintage, edgy, punk rock vibe, dirty, noisy",
"negative_prompt": "smooth, clean, minimalist, sleek, modern, photorealistic",
"name_cn": "其他-垮掉的",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_grunge.jpg"
},
{
"name": "misc-horror",
"prompt": "horror-themed {prompt} . eerie, unsettling, dark, spooky, suspenseful, grim, highly detailed",
"negative_prompt": "cheerful, bright, vibrant, light-hearted, cute",
"name_cn": "其他-恐怖",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_horror.jpg"
},
{
"name": "misc-kawaii",
"prompt": "kawaii style {prompt} . cute, adorable, brightly colored, cheerful, anime influence, highly detailed",
"negative_prompt": "dark, scary, realistic, monochrome, abstract",
"name_cn": "其他-可爱",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_kawaii.jpg"
},
{
"name": "misc-lovecraftian",
"prompt": "lovecraftian horror {prompt} . eldritch, cosmic horror, unknown, mysterious, surreal, highly detailed",
"negative_prompt": "light-hearted, mundane, familiar, simplistic, realistic",
"name_cn": "其他-洛夫克拉夫特",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_lovecraftian.jpg"
},
{
"name": "misc-macabre",
"prompt": "macabre style {prompt} . dark, gothic, grim, haunting, highly detailed",
"negative_prompt": "bright, cheerful, light-hearted, cartoonish, cute",
"name_cn": "其他-恐怖",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_macabre.jpg"
},
{
"name": "misc-manga",
"prompt": "manga style {prompt} . vibrant, high-energy, detailed, iconic, Japanese comic style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, Western comic style",
"name_cn": "其他-漫画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_manga.jpg"
},
{
"name": "misc-metropolis",
"prompt": "metropolis-themed {prompt} . urban, cityscape, skyscrapers, modern, futuristic, highly detailed",
"negative_prompt": "rural, natural, rustic, historical, simple",
"name_cn": "其他-大都市",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_metropolis.jpg"
},
{
"name": "misc-minimalist",
"prompt": "minimalist style {prompt} . simple, clean, uncluttered, modern, elegant",
"negative_prompt": "ornate, complicated, highly detailed, cluttered, disordered, messy, noisy",
"name_cn": "其他-极简主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_minimalist.jpg"
},
{
"name": "misc-monochrome",
"prompt": "monochrome {prompt} . black and white, contrast, tone, texture, detailed",
"negative_prompt": "colorful, vibrant, noisy, blurry, deformed",
"name_cn": "其他-单色",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_monochrome.jpg"
},
{
"name": "misc-nautical",
"prompt": "nautical-themed {prompt} . sea, ocean, ships, maritime, beach, marine life, highly detailed",
"negative_prompt": "landlocked, desert, mountains, urban, rustic",
"name_cn": "其他-航海",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_nautical.jpg"
},
{
"name": "misc-space",
"prompt": "space-themed {prompt} . cosmic, celestial, stars, galaxies, nebulas, planets, science fiction, highly detailed",
"negative_prompt": "earthly, mundane, ground-based, realism",
"name_cn": "其他-太空",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_space.jpg"
},
{
"name": "misc-stained glass",
"prompt": "stained glass style {prompt} . vibrant, beautiful, translucent, intricate, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic",
"name_cn": "其他-彩色玻璃",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_stained_glass.jpg"
},
{
"name": "misc-techwear fashion",
"prompt": "techwear fashion {prompt} . futuristic, cyberpunk, urban, tactical, sleek, dark, highly detailed",
"negative_prompt": "vintage, rural, colorful, low contrast, realism, sketch, watercolor",
"name_cn": "其他-科技时尚",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_techwear_fashion.jpg"
},
{
"name": "misc-tribal",
"prompt": "tribal style {prompt} . indigenous, ethnic, traditional patterns, bold, natural colors, highly detailed",
"negative_prompt": "modern, futuristic, minimalist, pastel",
"name_cn": "其他-部落",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_tribal.jpg"
},
{
"name": "misc-zentangle",
"prompt": "zentangle {prompt} . intricate, abstract, monochrome, patterns, meditative, highly detailed",
"negative_prompt": "colorful, representative, simplistic, large fields of color",
"name_cn": "其他-禅绕画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/misc_zentangle.jpg"
},
{
"name": "papercraft-collage",
"prompt": "collage style {prompt} . mixed media, layered, textural, detailed, artistic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic",
"name_cn": "手工艺-拼贴",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_collage.jpg"
},
{
"name": "papercraft-flat papercut",
"prompt": "flat papercut style {prompt} . silhouette, clean cuts, paper, sharp edges, minimalist, color block",
"negative_prompt": "3D, high detail, noise, grainy, blurry, painting, drawing, photo, disfigured",
"name_cn": "手工艺-平面剪纸",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_flat_papercut.jpg"
},
{
"name": "papercraft-kirigami",
"prompt": "kirigami representation of {prompt} . 3D, paper folding, paper cutting, Japanese, intricate, symmetrical, precision, clean lines",
"negative_prompt": "painting, drawing, 2D, noisy, blurry, deformed",
"name_cn": "手工艺-切纸",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_kirigami.jpg"
},
{
"name": "papercraft-paper mache",
"prompt": "paper mache representation of {prompt} . 3D, sculptural, textured, handmade, vibrant, fun",
"negative_prompt": "2D, flat, photo, sketch, digital art, deformed, noisy, blurry",
"name_cn": "手工艺-纸浆塑造",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_paper_mache.jpg"
},
{
"name": "papercraft-paper quilling",
"prompt": "paper quilling art of {prompt} . intricate, delicate, curling, rolling, shaping, coiling, loops, 3D, dimensional, ornamental",
"negative_prompt": "photo, painting, drawing, 2D, flat, deformed, noisy, blurry",
"name_cn": "手工艺-纸艺卷轴",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_paper_quilling.jpg"
},
{
"name": "papercraft-papercut collage",
"prompt": "papercut collage of {prompt} . mixed media, textured paper, overlapping, asymmetrical, abstract, vibrant",
"negative_prompt": "photo, 3D, realistic, drawing, painting, high detail, disfigured",
"name_cn": "手工艺-剪纸拼贴",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_papercut_collage.jpg"
},
{
"name": "papercraft-papercut shadow box",
"prompt": "3D papercut shadow box of {prompt} . layered, dimensional, depth, silhouette, shadow, papercut, handmade, high contrast",
"negative_prompt": "painting, drawing, photo, 2D, flat, high detail, blurry, noisy, disfigured",
"name_cn": "手工艺-剪纸影箱",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_papercut_shadow_box.jpg"
},
{
"name": "papercraft-stacked papercut",
"prompt": "stacked papercut art of {prompt} . 3D, layered, dimensional, depth, precision cut, stacked layers, papercut, high contrast",
"negative_prompt": "2D, flat, noisy, blurry, painting, drawing, photo, deformed",
"name_cn": "手工艺-层叠剪纸",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_stacked_papercut.jpg"
},
{
"name": "papercraft-thick layered papercut",
"prompt": "thick layered papercut art of {prompt} . deep 3D, volumetric, dimensional, depth, thick paper, high stack, heavy texture, tangible layers",
"negative_prompt": "2D, flat, thin paper, low stack, smooth texture, painting, drawing, photo, deformed",
"name_cn": "手工艺-厚层剪纸",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/papercraft_thick_layered_papercut.jpg"
},
{
"name": "photo-alien",
"prompt": "alien-themed {prompt} . extraterrestrial, cosmic, otherworldly, mysterious, sci-fi, highly detailed",
"negative_prompt": "earthly, mundane, common, realistic, simple",
"name_cn": "摄影-外星人",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_alien.jpg"
},
{
"name": "photo-film noir",
"prompt": "film noir style {prompt} . monochrome, high contrast, dramatic shadows, 1940s style, mysterious, cinematic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vibrant, colorful",
"name_cn": "摄影-黑色电影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_film_noir.jpg"
},
{
"name": "photo-glamour",
"prompt": "glamorous photo {prompt} . high fashion, luxurious, extravagant, stylish, sensual, opulent, elegance, stunning beauty, professional, high contrast, detailed",
"negative_prompt": "ugly, deformed, noisy, blurry, distorted, grainy, sketch, low contrast, dull, plain, modest",
"name_cn": "摄影-魅力",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_glamour.jpg"
},
{
"name": "photo-hdr",
"prompt": "HDR photo of {prompt} . High dynamic range, vivid, rich details, clear shadows and highlights, realistic, intense, enhanced contrast, highly detailed",
"negative_prompt": "flat, low contrast, oversaturated, underexposed, overexposed, blurred, noisy",
"name_cn": "摄影-高动态范围",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_hdr.jpg"
},
{
"name": "photo-iphone photographic",
"prompt": "iphone photo {prompt} . large depth of field, deep depth of field, highly detailed",
"negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, shallow depth of field, bokeh",
"name_cn": "摄影-苹果手机摄影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_iphone_photographic.jpg"
},
{
"name": "photo-long exposure",
"prompt": "long exposure photo of {prompt} . Blurred motion, streaks of light, surreal, dreamy, ghosting effect, highly detailed",
"negative_prompt": "static, noisy, deformed, shaky, abrupt, flat, low contrast",
"name_cn": "摄影-长曝光",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_long_exposure.jpg"
},
{
"name": "photo-neon noir",
"prompt": "neon noir {prompt} . cyberpunk, dark, rainy streets, neon signs, high contrast, low light, vibrant, highly detailed",
"negative_prompt": "bright, sunny, daytime, low contrast, black and white, sketch, watercolor",
"name_cn": "摄影-霓虹黑色",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_neon_noir.jpg"
},
{
"name": "photo-silhouette",
"prompt": "silhouette style {prompt} . high contrast, minimalistic, black and white, stark, dramatic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, color, realism, photorealistic",
"name_cn": "摄影-轮廓",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_silhouette.jpg"
},
{
"name": "photo-tilt-shift",
"prompt": "tilt-shift photo of {prompt} . selective focus, miniature effect, blurred background, highly detailed, vibrant, perspective control",
"negative_prompt": "blurry, noisy, deformed, flat, low contrast, unrealistic, oversaturated, underexposed",
"name_cn": "摄影-移轴",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/photo_tilt_shift.jpg"
},
{
"name": "cinematic-diva",
"prompt": "UHD, 8K, ultra detailed, a cinematic photograph of {prompt}, beautiful lighting, great composition",
"negative_prompt": "ugly, deformed, noisy, blurry, NSFW",
"name_cn": "电影女主角",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/cinematic_diva.jpg"
},
{
"name": "Abstract Expressionism",
"prompt": "Abstract Expressionism Art, {prompt}, High contrast, minimalistic, colorful, stark, dramatic, expressionism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic",
"name_cn": "抽象表现主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/abstract_expressionism.jpg"
},
{
"name": "Academia",
"prompt": "Academia, {prompt}, preppy Ivy League style, stark, dramatic, chic boarding school, academia",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, grunge, sloppy, unkempt",
"name_cn": "学术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/academia.jpg"
},
{
"name": "Action Figure",
"prompt": "Action Figure, {prompt}, plastic collectable action figure, collectable toy action figure",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "动作人偶",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/action_figure.jpg"
},
{
"name": "Adorable 3D Character",
"prompt": "Adorable 3D Character, {prompt}, 3D render, adorable character, 3D art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, grunge, sloppy, unkempt, photograph, photo, realistic",
"name_cn": "可爱的3D角色",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/adorable_3d_character.jpg"
},
{
"name": "Adorable Kawaii",
"prompt": "Adorable Kawaii, {prompt}, pretty, cute, adorable, kawaii",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, gothic, dark, moody, monochromatic",
"name_cn": "可爱的卡哇伊",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/adorable_kawaii.jpg"
},
{
"name": "Art Deco",
"prompt": "Art Deco, {prompt}, sleek, geometric forms, art deco style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "装饰艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/art_deco.jpg"
},
{
"name": "Art Nouveau",
"prompt": "Art Nouveau, beautiful art, {prompt}, sleek, organic forms, long, sinuous, art nouveau style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, industrial, mechanical",
"name_cn": "新艺术,美丽艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/art_nouveau.jpg"
},
{
"name": "Astral Aura",
"prompt": "Astral Aura, {prompt}, astral, colorful aura, vibrant energy",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "星体光环",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/astral_aura.jpg"
},
{
"name": "Avant-garde",
"prompt": "Avant-garde, {prompt}, unusual, experimental, avant-garde art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "前卫",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/avant_garde.jpg"
},
{
"name": "Baroque",
"prompt": "Baroque, {prompt}, dramatic, exuberant, grandeur, baroque art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "巴洛克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/baroque.jpg"
},
{
"name": "Bauhaus-Style Poster",
"prompt": "Bauhaus-Style Poster, {prompt}, simple geometric shapes, clean lines, primary colors, Bauhaus-Style Poster",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "包豪斯风格海报",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/bauhaus_style_poster.jpg"
},
{
"name": "Blueprint Schematic Drawing",
"prompt": "Blueprint Schematic Drawing, {prompt}, technical drawing, blueprint, schematic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "蓝图示意图",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/blueprint_schematic_drawing.jpg"
},
{
"name": "Caricature",
"prompt": "Caricature, {prompt}, exaggerated, comical, caricature",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic",
"name_cn": "漫画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/caricature.jpg"
},
{
"name": "Cel Shaded Art",
"prompt": "Cel Shaded Art, {prompt}, 2D, flat color, toon shading, cel shaded style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "卡通渲染",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/cel_shaded_art.jpg"
},
{
"name": "Character Design Sheet",
"prompt": "Character Design Sheet, {prompt}, character reference sheet, character turn around",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "角色设计表",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/character_design_sheet.jpg"
},
{
"name": "Classicism Art",
"prompt": "Classicism Art, {prompt}, inspired by Roman and Greek culture, clarity, harmonious, classicism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "古典主义艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/classicism_art.jpg"
},
{
"name": "Color Field Painting",
"prompt": "Color Field Painting, {prompt}, abstract, simple, geometic, color field painting style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "色彩领域绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/color_field_painting.jpg"
},
{
"name": "Colored Pencil Art",
"prompt": "Colored Pencil Art, {prompt}, colored pencil strokes, light color, visible paper texture, colored pencil art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "彩色铅笔艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/colored_pencil_art.jpg"
},
{
"name": "Conceptual Art",
"prompt": "Conceptual Art, {prompt}, concept art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "概念艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/conceptual_art.jpg"
},
{
"name": "Constructivism",
"prompt": "Constructivism Art, {prompt}, minimalistic, geometric forms, constructivism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "建构主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/constructivism.jpg"
},
{
"name": "Cubism",
"prompt": "Cubism Art, {prompt}, flat geometric forms, cubism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "立体主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/cubism.jpg"
},
{
"name": "Dadaism",
"prompt": "Dadaism Art, {prompt}, satirical, nonsensical, dadaism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "达达主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/dadaism.jpg"
},
{
"name": "Dark Fantasy",
"prompt": "Dark Fantasy Art, {prompt}, dark, moody, dark fantasy style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, bright, sunny",
"name_cn": "黑暗奇幻",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/dark_fantasy.jpg"
},
{
"name": "Dark Moody Atmosphere",
"prompt": "Dark Moody Atmosphere, {prompt}, dramatic, mysterious, dark moody atmosphere",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, vibrant, colorful, bright",
"name_cn": "黑暗忧郁气氛",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/dark_moody_atmosphere.jpg"
},
{
"name": "DMT Art Style",
"prompt": "DMT Art Style, {prompt}, bright colors, surreal visuals, swirling patterns, DMT art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "迷幻艺术风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/dmt_art_style.jpg"
},
{
"name": "Doodle Art",
"prompt": "Doodle Art Style, {prompt}, drawing, freeform, swirling patterns, doodle art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "涂鸦艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/doodle_art.jpg"
},
{
"name": "Double Exposure",
"prompt": "Double Exposure Style, {prompt}, double image ghost effect, image combination, double exposure style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "双重曝光",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/double_exposure.jpg"
},
{
"name": "Dripping Paint Splatter Art",
"prompt": "Dripping Paint Splatter Art, {prompt}, dramatic, paint drips, splatters, dripping paint",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "滴漆飞溅艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/dripping_paint_splatter_art.jpg"
},
{
"name": "Expressionism",
"prompt": "Expressionism Art Style, {prompt}, movement, contrast, emotional, exaggerated forms, expressionism art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "表现主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/expressionism.jpg"
},
{
"name": "Faded Polaroid Photo",
"prompt": "Faded Polaroid Photo, {prompt}, analog, old faded photo, old polaroid",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, vibrant, colorful",
"name_cn": "褪色的宝丽来照片",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/faded_polaroid_photo.jpg"
},
{
"name": "Fauvism",
"prompt": "Fauvism Art, {prompt}, painterly, bold colors, textured brushwork, fauvism art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "野兽派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fauvism.jpg"
},
{
"name": "Flat 2D Art",
"prompt": "Flat 2D Art, {prompt}, simple flat color, 2-dimensional, Flat 2D Art Style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, 3D, photo, realistic",
"name_cn": "平面 2D 艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/flat_2d_art.jpg"
},
{
"name": "Fortnite Art Style",
"prompt": "Fortnite Art Style, {prompt}, 3D cartoon, colorful, Fortnite Art Style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, realistic",
"name_cn": "堡垒之夜艺术风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/fortnite_art_style.jpg"
},
{
"name": "Futurism",
"prompt": "Futurism Art Style, {prompt}, dynamic, dramatic, Futurism Art Style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "未来派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/futurism.jpg"
},
{
"name": "Glitchcore",
"prompt": "Glitchcore Art Style, {prompt}, dynamic, dramatic, distorted, vibrant colors, glitchcore art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "故障核心",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/glitchcore.jpg"
},
{
"name": "Glo-fi",
"prompt": "Glo-fi Art Style, {prompt}, dynamic, dramatic, vibrant colors, glo-fi art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "光明高保真",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/glo_fi.jpg"
},
{
"name": "Googie Art Style",
"prompt": "Googie Art Style, {prompt}, dynamic, dramatic, 1950's futurism, bold boomerang angles, Googie art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "古吉艺术风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/googie_art_style.jpg"
},
{
"name": "Graffiti Art",
"prompt": "Graffiti Art Style, {prompt}, dynamic, dramatic, vibrant colors, graffiti art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "涂鸦艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/graffiti_art.jpg"
},
{
"name": "Harlem Renaissance Art",
"prompt": "Harlem Renaissance Art Style, {prompt}, dynamic, dramatic, 1920s African American culture, Harlem Renaissance art style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "哈莱姆文艺复兴艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/harlem_renaissance_art.jpg"
},
{
"name": "High Fashion",
"prompt": "High Fashion, {prompt}, dynamic, dramatic, haute couture, elegant, ornate clothing, High Fashion",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "高级时装",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/high_fashion.jpg"
},
{
"name": "Idyllic",
"prompt": "Idyllic, {prompt}, peaceful, happy, pleasant, happy, harmonious, picturesque, charming",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "田园诗般",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/idyllic.jpg"
},
{
"name": "Impressionism",
"prompt": "Impressionism, {prompt}, painterly, small brushstrokes, visible brushstrokes, impressionistic style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "印象派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/impressionism.jpg"
},
{
"name": "Infographic Drawing",
"prompt": "Infographic Drawing, {prompt}, diagram, infographic",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "信息图表绘图",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/infographic_drawing.jpg"
},
{
"name": "Ink Dripping Drawing",
"prompt": "Ink Dripping Drawing, {prompt}, ink drawing, dripping ink",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, colorful, vibrant",
"name_cn": "滴墨绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ink_dripping_drawing.jpg"
},
{
"name": "Japanese Ink Drawing",
"prompt": "Japanese Ink Drawing, {prompt}, ink drawing, inkwash, Japanese Ink Drawing",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, colorful, vibrant",
"name_cn": "日式水墨画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/japanese_ink_drawing.jpg"
},
{
"name": "Knolling Photography",
"prompt": "Knolling Photography, {prompt}, flat lay photography, object arrangment, knolling photography",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "规律摆放摄影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/knolling_photography.jpg"
},
{
"name": "Light Cheery Atmosphere",
"prompt": "Light Cheery Atmosphere, {prompt}, happy, joyful, cheerful, carefree, gleeful, lighthearted, pleasant atmosphere",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, monochromatic, dark, moody",
"name_cn": "轻松愉快的气氛",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/light_cheery_atmosphere.jpg"
},
{
"name": "Logo Design",
"prompt": "Logo Design, {prompt}, dynamic graphic art, vector art, minimalist, professional logo design",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "标志设计",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/logo_design.jpg"
},
{
"name": "Luxurious Elegance",
"prompt": "Luxurious Elegance, {prompt}, extravagant, ornate, designer, opulent, picturesque, lavish",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "奢华优雅",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/luxurious_elegance.jpg"
},
{
"name": "Macro Photography",
"prompt": "Macro Photography, {prompt}, close-up, macro 100mm, macro photography",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "微距摄影",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/macro_photography.jpg"
},
{
"name": "Mandola Art",
"prompt": "Mandola art style, {prompt}, complex, circular design, mandola",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "曼陀罗艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mandola_art.jpg"
},
{
"name": "Marker Drawing",
"prompt": "Marker Drawing, {prompt}, bold marker lines, visibile paper texture, marker drawing",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photograph, realistic",
"name_cn": "马克笔绘图",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/marker_drawing.jpg"
},
{
"name": "Medievalism",
"prompt": "Medievalism, {prompt}, inspired by The Middle Ages, medieval art, elaborate patterns and decoration, Medievalism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "中世纪主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/medievalism.jpg"
},
{
"name": "Minimalism",
"prompt": "Minimalism, {prompt}, abstract, simple geometic shapes, hard edges, sleek contours, Minimalism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "极简主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/minimalism.jpg"
},
{
"name": "Neo-Baroque",
"prompt": "Neo-Baroque, {prompt}, ornate and elaborate, dynaimc, Neo-Baroque",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "新巴洛克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/neo_baroque.jpg"
},
{
"name": "Neo-Byzantine",
"prompt": "Neo-Byzantine, {prompt}, grand decorative religious style, Orthodox Christian inspired, Neo-Byzantine",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "新拜占庭",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/neo_byzantine.jpg"
},
{
"name": "Neo-Futurism",
"prompt": "Neo-Futurism, {prompt}, high-tech, curves, spirals, flowing lines, idealistic future, Neo-Futurism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "新未来派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/neo_futurism.jpg"
},
{
"name": "Neo-Impressionism",
"prompt": "Neo-Impressionism, {prompt}, tiny dabs of color, Pointillism, painterly, Neo-Impressionism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photograph, realistic",
"name_cn": "新印象派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/neo_impressionism.jpg"
},
{
"name": "Neo-Rococo",
"prompt": "Neo-Rococo, {prompt}, curved forms, naturalistic ornamentation, elaborate, decorative, gaudy, Neo-Rococo",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "新洛可可",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/neo_rococo.jpg"
},
{
"name": "Neoclassicism",
"prompt": "Neoclassicism, {prompt}, ancient Rome and Greece inspired, idealic, sober colors, Neoclassicism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "新古典主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/neoclassicism.jpg"
},
{
"name": "Op Art",
"prompt": "Op Art, {prompt}, optical illusion, abstract, geometric pattern, impression of movement, Op Art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "欧普艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/op_art.jpg"
},
{
"name": "Ornate and Intricate",
"prompt": "Ornate and Intricate, {prompt}, decorative, highly detailed, elaborate, ornate, intricate",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "华丽而复杂",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/ornate_and_intricate.jpg"
},
{
"name": "Pencil Sketch Drawing",
"prompt": "Pencil Sketch Drawing, {prompt}, black and white drawing, graphite drawing",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "铅笔素描",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/pencil_sketch_drawing.jpg"
},
{
"name": "Pop Art 2",
"prompt": "Pop Art, {prompt}, vivid colors, flat color, 2D, strong lines, Pop Art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, realistic",
"name_cn": "流行艺术2",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/pop_art_2.jpg"
},
{
"name": "Rococo",
"prompt": "Rococo, {prompt}, flamboyant, pastel colors, curved lines, elaborate detail, Rococo",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "洛可可",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/rococo.jpg"
},
{
"name": "Silhouette Art",
"prompt": "Silhouette Art, {prompt}, high contrast, well defined, Silhouette Art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "剪影艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/silhouette_art.jpg"
},
{
"name": "Simple Vector Art",
"prompt": "Simple Vector Art, {prompt}, 2D flat, simple shapes, minimalistic, professional graphic, flat color, high contrast, Simple Vector Art",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, 3D, photo, realistic",
"name_cn": "简单矢量艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/simple_vector_art.jpg"
},
{
"name": "Sketchup",
"prompt": "Sketchup, {prompt}, CAD, professional design, Sketchup",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, photograph",
"name_cn": "草图",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sketchup.jpg"
},
{
"name": "Steampunk 2",
"prompt": "Steampunk, {prompt}, retrofuturistic science fantasy, steam-powered tech, vintage industry, gears, neo-victorian, steampunk",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "赛博朋克2",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/steampunk_2.jpg"
},
{
"name": "Surrealism",
"prompt": "Surrealism, {prompt}, expressive, dramatic, organic lines and forms, dreamlike and mysterious, Surrealism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic",
"name_cn": "超现实主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/surrealism.jpg"
},
{
"name": "Suprematism",
"prompt": "Suprematism, {prompt}, abstract, limited color palette, geometric forms, Suprematism",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realistic",
"name_cn": "至上主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/suprematism.jpg"
},
{
"name": "Terragen",
"prompt": "Terragen, {prompt}, beautiful massive landscape, epic scenery, Terragen",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "地表风景",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/terragen.jpg"
},
{
"name": "Tranquil Relaxing Atmosphere",
"prompt": "Tranquil Relaxing Atmosphere, {prompt}, calming style, soothing colors, peaceful, idealic, Tranquil Relaxing Atmosphere",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, oversaturated",
"name_cn": "宁静轻松的氛围",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/tranquil_relaxing_atmosphere.jpg"
},
{
"name": "Sticker Designs",
"prompt": "Vector Art Stickers, {prompt}, professional vector design, sticker designs, Sticker Sheet",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "贴纸设计",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/sticker_designs.jpg"
},
{
"name": "Vibrant Rim Light",
"prompt": "Vibrant Rim Light, {prompt}, bright rim light, high contrast, bold edge light",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "生动的边缘光",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/vibrant_rim_light.jpg"
},
{
"name": "Volumetric Lighting",
"prompt": "Volumetric Lighting, {prompt}, light depth, dramatic atmospheric lighting, Volumetric Lighting",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast",
"name_cn": "体积照明",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/volumetric_lighting.jpg"
},
{
"name": "Watercolor 2",
"prompt": "Watercolor style painting, {prompt}, visible paper texture, colorwash, watercolor",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, photo, realistic",
"name_cn": "水彩2",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/watercolor_2.jpg"
},
{
"name": "Whimsical and Playful",
"prompt": "Whimsical and Playful, {prompt}, imaginative, fantastical, bight colors, stylized, happy, Whimsical and Playful",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, drab, boring, moody",
"name_cn": "异想天开、俏皮",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/whimsical_and_playful.jpg"
},
{
"name": "MK Chromolithography",
"prompt": "Chromolithograph {prompt}. Vibrant colors, intricate details, rich color saturation, meticulous registration, multi-layered printing, decorative elements, historical charm, artistic reproductions, commercial posters, nostalgic, ornate compositions.",
"negative_prompt": "monochromatic, simple designs, limited color palette, imprecise registration, minimalistic, modern aesthetic, digital appearance.",
"name_cn": "MK 色彩版画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_chromolithography.jpg"
},
{
"name": "MK Cross Processing Print",
"prompt": "Cross processing print {prompt}. Experimental color shifts, unconventional tonalities, vibrant and surreal hues, heightened contrasts, unpredictable results, artistic unpredictability, retro and vintage feel, dynamic color interplay, abstract and dreamlike.",
"negative_prompt": "predictable color tones, traditional processing, realistic color representation, subdued contrasts, standard photographic aesthetics.",
"name_cn": "MK 交叉过程打印",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_cross_processing_print.jpg"
},
{
"name": "MK Dufaycolor Photograph",
"prompt": "Dufaycolor photograph {prompt}. Vintage color palette, distinctive color rendering, soft and dreamy atmosphere, historical charm, unique color process, grainy texture, evocative mood, nostalgic aesthetic, hand-tinted appearance, artistic patina.",
"negative_prompt": "modern color reproduction, hyperrealistic tones, sharp and clear details, digital precision, contemporary aesthetic.",
"name_cn": "MK 杜法色彩照片",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_dufaycolor_photograph.jpg"
},
{
"name": "MK Herbarium",
"prompt": "Herbarium drawing{prompt}. Botanical accuracy, old botanical book illustration, detailed illustrations, pressed plants, delicate and precise linework, scientific documentation, meticulous presentation, educational purpose, organic compositions, timeless aesthetic, naturalistic beauty.",
"negative_prompt": "abstract representation, vibrant colors, artistic interpretation, chaotic compositions, fantastical elements, digital appearance.",
"name_cn": "MK 植物标本馆",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_herbarium.jpg"
},
{
"name": "MK Punk Collage",
"prompt": "punk collage style {prompt} . mixed media, papercut,textured paper, overlapping, ripped posters, safety pins, chaotic layers, graffiti-style elements, anarchy symbols, vintage photos, cut-and-paste aesthetic, bold typography, distorted images, political messages, urban decay, distressed textures, newspaper clippings, spray paint, rebellious icons, DIY spirit, vivid colors, punk band logos, edgy and raw compositions, ",
"negative_prompt": "conventional,blurry, noisy, low contrast",
"name_cn": "MK 朋克拼贴画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_punk_collage.jpg"
},
{
"name": "MK mosaic",
"prompt": "mosaic style {prompt} . fragmented, assembled, colorful, highly detailed",
"negative_prompt": "whole, unbroken, monochrome",
"name_cn": "MK 镶嵌图",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_mosaic.jpg"
},
{
"name": "MK Van Gogh",
"prompt": "Oil painting by Van Gogh {prompt} . Expressive, impasto, swirling brushwork, vibrant, brush strokes, Brushstroke-heavy, Textured, Impasto, Colorful, Dynamic, Bold, Distinctive, Vibrant, Whirling, Expressive, Dramatic, Swirling, Layered, Intense, Contrastive, Atmospheric, Luminous, Textural, Evocative, SpiraledVan Gogh style",
"negative_prompt": "realistic, photorealistic, calm, straight lines, signature, frame, text, watermark",
"name_cn": "MK 梵高",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_van_gogh.jpg"
},
{
"name": "MK Coloring Book",
"prompt": "centered black and white high contrast line drawing, coloring book style,{prompt} . monochrome, blank white background",
"negative_prompt": "greyscale, gradients,shadows,shadow, colored, Red, Blue, Yellow, Green, Orange, Purple, Pink, Brown, Gray, Beige, Turquoise, Lavender, Cyan, Magenta, Olive, Indigo, black background",
"name_cn": "MK 色彩书",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_coloring_book.jpg"
},
{
"name": "MK Singer Sargent",
"prompt": "Oil painting by John Singer Sargent {prompt}. Elegant, refined, masterful technique,realistic portrayal, subtle play of light, captivating expression, rich details, harmonious colors, skillful composition, brush strokes, chiaroscuro.",
"negative_prompt": "realistic, photorealistic, abstract, overly stylized, excessive contrasts, distorted,bright colors,disorder.",
"name_cn": "MK 辛格 · 萨尔生特",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_singer_sargent.jpg"
},
{
"name": "MK Pollock",
"prompt": "Oil painting by Jackson Pollock {prompt}. Abstract expressionism, drip painting, chaotic composition, energetic, spontaneous, unconventional technique, dynamic, bold, distinctive, vibrant, intense, expressive, energetic, layered, non-representational, gestural.",
"negative_prompt": "(realistic:1.5), (photorealistic:1.5), representational, calm, ordered composition, precise lines, detailed forms, subdued colors, quiet, static, traditional, figurative.",
"name_cn": "MK 波洛克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_pollock.jpg"
},
{
"name": "MK Basquiat",
"prompt": "Artwork by Jean-Michel Basquiat {prompt}. Neo-expressionism, street art influence, graffiti-inspired, raw, energetic, bold colors, dynamic composition, chaotic, layered, textural, expressive, spontaneous, distinctive, symbolic,energetic brushstrokes.",
"negative_prompt": "(realistic:1.5), (photorealistic:1.5), calm, precise lines, conventional composition, subdued",
"name_cn": "MK 巴斯奎特",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_basquiat.jpg"
},
{
"name": "MK Andy Warhol",
"prompt": "Artwork in the style of Andy Warhol {prompt}. Pop art, vibrant colors, bold compositions, repetition of iconic imagery, celebrity culture, commercial aesthetics, mass production influence, stylized simplicity, cultural commentary, graphical elements, distinctive portraits.",
"negative_prompt": "subdued colors, realistic, lack of repetition, minimalistic.",
"name_cn": "MK 安迪 · 沃霍尔",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_andy_warhol.jpg"
},
{
"name": "MK Halftone print",
"prompt": "Halftone print of {prompt}. Dot matrix pattern, grayscale tones, vintage aesthetic, newspaper print vibe, stylized dots, visual texture, black and white contrasts, retro appearance, artistic pointillism,pop culture, (Roy Lichtenstein style:1.5).",
"negative_prompt": "smooth gradients, continuous tones, vibrant colors.",
"name_cn": "MK 半色版画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_halftone_print.jpg"
},
{
"name": "MK Gond Painting",
"prompt": "Gond painting {prompt}. Intricate patterns, vibrant colors, detailed motifs, nature-inspired themes, tribal folklore, fine lines, intricate detailing, storytelling compositions, mystical and folkloric, cultural richness.",
"negative_prompt": "monochromatic, abstract shapes, minimalistic.",
"name_cn": "MK 贡德绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_gond_painting.jpg"
},
{
"name": "MK Albumen Print",
"prompt": "Albumen print {prompt}. Sepia tones, fine details, subtle tonal gradations, delicate highlights, vintage aesthetic, soft and muted atmosphere, historical charm, rich textures, meticulous craftsmanship, classic photographic technique, vignetting.",
"negative_prompt": "vibrant colors, high contrast, modern, digital appearance, sharp details, contemporary style.",
"name_cn": "MK 白蛋清印刷",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_albumen_print.jpg"
},
{
"name": "MK Aquatint Print",
"prompt": "Aquatint print {prompt}. Soft tonal gradations, atmospheric effects, velvety textures, rich contrasts, fine details, etching process, delicate lines, nuanced shading, expressive and moody atmosphere, artistic depth.",
"negative_prompt": "sharp contrasts, bold lines, minimalistic.",
"name_cn": "MK 水蚀刻印刷",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_aquatint_print.jpg"
},
{
"name": "MK Anthotype Print",
"prompt": "Anthotype print {prompt}. Monochrome dye, soft and muted colors, organic textures, ephemeral and delicate appearance, low details, watercolor canvas, low contrast, overexposed, silhouette, textured paper.",
"negative_prompt": "vibrant synthetic dyes, bold and saturated colors.",
"name_cn": "MK 花纹版画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_anthotype_print.jpg"
},
{
"name": "MK Inuit Carving",
"prompt": "A sculpture made of ivory, {prompt} made of . Sculptures, Inuit art style, intricate carvings, natural materials, storytelling motifs, arctic wildlife themes, symbolic representations, cultural traditions, earthy tones, harmonious compositions, spiritual and mythological elements.",
"negative_prompt": "abstract, vibrant colors.",
"name_cn": "MK 因纽特雕塑",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_inuit_carving.jpg"
},
{
"name": "MK Bromoil Print",
"prompt": "Bromoil print {prompt}. Painterly effects, sepia tones, textured surfaces, rich contrasts, expressive brushwork, tonal variations, vintage aesthetic, atmospheric mood, handmade quality, artistic experimentation, darkroom craftsmanship, vignetting.",
"negative_prompt": "smooth surfaces, minimal brushwork, contemporary digital appearance.",
"name_cn": "MK 溴油印刷",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_bromoil_print.jpg"
},
{
"name": "MK Calotype Print",
"prompt": "Calotype print {prompt}. Soft focus, subtle tonal range, paper negative process, fine details, vintage aesthetic, artistic experimentation, atmospheric mood, early photographic charm, handmade quality, vignetting.",
"negative_prompt": "sharp focus, bold contrasts, modern aesthetic, digital photography.",
"name_cn": "MK 卡洛雅图印刷",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_calotype_print.jpg"
},
{
"name": "MK Color Sketchnote",
"prompt": "Color sketchnote {prompt}. Hand-drawn elements, vibrant colors, visual hierarchy, playful illustrations, varied typography, graphic icons, organic and dynamic layout, personalized touches, creative expression, engaging storytelling.",
"negative_prompt": "monochromatic, geometric layout.",
"name_cn": "MK色彩素描笔记",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_color_sketchnote.jpg"
},
{
"name": "MK Cibulak Porcelain",
"prompt": "A sculpture made of blue pattern porcelain of {prompt}. Classic design, blue and white color scheme, intricate detailing, floral motifs, onion-shaped elements, historical charm, rococo, white ware, cobalt blue, underglaze pattern, fine craftsmanship, traditional elegance, delicate patterns, vintage aesthetic, Meissen, Blue Onion pattern, Cibulak.",
"negative_prompt": "tea, teapot, cup, teacup,bright colors, bold and modern design, absence of intricate detailing, lack of floral motifs, non-traditional shapes.",
"name_cn": "MK 西布拉瓷器",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_cibulak_porcelain.jpg"
},
{
"name": "MK Alcohol Ink Art",
"prompt": "Alcohol ink art {prompt}. Fluid and vibrant colors, unpredictable patterns, organic textures, translucent layers, abstract compositions, ethereal and dreamy effects, free-flowing movement, expressive brushstrokes, contemporary aesthetic, wet textured paper.",
"negative_prompt": "monochromatic, controlled patterns.",
"name_cn": "MK 酒精水彩艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_alcohol_ink_art.jpg"
},
{
"name": "MK One Line Art",
"prompt": "One line art {prompt}. Continuous and unbroken black line, minimalistic, simplicity, economical use of space, flowing and dynamic, symbolic representations, contemporary aesthetic, evocative and abstract, white background.",
"negative_prompt": "disjointed lines, complexity, complex detailing.",
"name_cn": "MK 一线画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_one_line_art.jpg"
},
{
"name": "MK Blacklight Paint",
"prompt": "Blacklight paint {prompt}. Fluorescent pigments, vibrant and surreal colors, ethereal glow, otherworldly effects, dynamic and psychedelic compositions, neon aesthetics, transformative in ultraviolet light, contemporary and experimental.",
"negative_prompt": "muted colors, traditional and realistic compositions.",
"name_cn": "MK 黑光油漆",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_blacklight_paint.jpg"
},
{
"name": "MK Carnival Glass",
"prompt": "A sculpture made of Carnival glass, {prompt}. Iridescent surfaces, vibrant colors, intricate patterns, opalescent hues, reflective and prismatic effects, Art Nouveau and Art Deco influences, vintage charm, intricate detailing, lustrous and luminous appearance, Carnival Glass style.",
"negative_prompt": "non-iridescent surfaces, muted colors, absence of intricate patterns, lack of opalescent hues, modern and minimalist aesthetic.",
"name_cn": "MK 嘉年华玻璃",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_carnival_glass.jpg"
},
{
"name": "MK Cyanotype Print",
"prompt": "Cyanotype print {prompt}. Prussian blue tones, distinctive coloration, high contrast, blueprint aesthetics, atmospheric mood, sun-exposed paper, silhouette effects, delicate details, historical charm, handmade and experimental quality.",
"negative_prompt": "vibrant colors, low contrast, modern and polished appearance.",
"name_cn": "MK 青色版画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_cyanotype_print.jpg"
},
{
"name": "MK Cross-Stitching",
"prompt": "Cross-stitching {prompt}. Intricate patterns, embroidery thread, sewing, fine details, precise stitches, textile artistry, symmetrical designs, varied color palette, traditional and contemporary motifs, handmade and crafted,canvas, nostalgic charm.",
"negative_prompt": "paper, paint, ink, photography.",
"name_cn": "MK 交叉针织",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_cross_stitching.jpg"
},
{
"name": "MK Encaustic Paint",
"prompt": "Encaustic paint {prompt}. Textured surfaces, translucent layers, luminous quality, wax medium, rich color saturation, fluid and organic shapes, contemporary and historical influences, mixed media elements, atmospheric depth.",
"negative_prompt": "flat surfaces, opaque layers, lack of wax medium, muted color palette, absence of textured surfaces, non-mixed media.",
"name_cn": "MK 蜡漆",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_encaustic_paint.jpg"
},
{
"name": "MK Embroidery",
"prompt": "Embroidery {prompt}. Intricate stitching, embroidery thread, fine details, varied thread textures, textile artistry, embellished surfaces, diverse color palette, traditional and contemporary motifs, handmade and crafted, tactile and ornate.",
"negative_prompt": "minimalist, monochromatic.",
"name_cn": "MK 刺绣",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_embroidery.jpg"
},
{
"name": "MK Gyotaku",
"prompt": "Gyotaku {prompt}. Fish impressions, realistic details, ink rubbings, textured surfaces, traditional Japanese art form, nature-inspired compositions, artistic representation of marine life, black and white contrasts, cultural significance.",
"negative_prompt": "photography.",
"name_cn": "MK 鱼拓版画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_gyotaku.jpg"
},
{
"name": "MK Luminogram",
"prompt": "Luminogram {prompt}. Photogram technique, ethereal and abstract effects, light and shadow interplay, luminous quality, experimental process, direct light exposure, unique and unpredictable results, artistic experimentation.",
"negative_prompt": "",
"name_cn": "MK 光感影像",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_luminogram.jpg"
},
{
"name": "MK Lite Brite Art",
"prompt": "Lite Brite art {prompt}. Luminous and colorful designs, pixelated compositions, retro aesthetic, glowing effects, creative patterns, interactive and playful, nostalgic charm, vibrant and dynamic arrangements.",
"negative_prompt": "monochromatic.",
"name_cn": "MK 彩色灯泡艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_lite_brite_art.jpg"
},
{
"name": "MK Mokume-gane",
"prompt": "Mokume-gane {prompt}. Wood-grain patterns, mixed metal layers, intricate and organic designs, traditional Japanese metalwork, harmonious color combinations, artisanal craftsmanship, unique and layered textures, cultural and historical significance.",
"negative_prompt": "uniform metal surfaces.",
"name_cn": "MK 木金工艺",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_mokume_gane.jpg"
},
{
"name": "Pebble Art",
"prompt": "a sculpture made of peebles, {prompt}. Pebble art style,natural materials, textured surfaces, balanced compositions, organic forms, harmonious arrangements, tactile and 3D effects, beach-inspired aesthetic, creative storytelling, artisanal craftsmanship.",
"negative_prompt": "non-natural materials, lack of textured surfaces, imbalanced compositions, absence of organic forms, non-tactile appearance.",
"name_cn": "MK 鹅卵石艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/pebble_art.jpg"
},
{
"name": "MK Palekh",
"prompt": "Palekh art {prompt}. Miniature paintings, intricate details, vivid colors, folkloric themes, lacquer finish, storytelling compositions, symbolic elements, Russian folklore influence, cultural and historical significance.",
"negative_prompt": "large-scale paintings.",
"name_cn": "MK 帕列赫",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_palekh.jpg"
},
{
"name": "MK Suminagashi",
"prompt": "Suminagashi {prompt}. Floating ink patterns, marbled effects, delicate and ethereal designs, water-based ink, fluid and unpredictable compositions, meditative process, monochromatic or subtle color palette, Japanese artistic tradition.",
"negative_prompt": "vibrant and bold color palette.",
"name_cn": "MK 澄洗画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_suminagashi.jpg"
},
{
"name": "MK Scrimshaw",
"prompt": "A Scrimshaw engraving of {prompt}. Intricate engravings on a spermwhale's teeth, marine motifs, detailed scenes, nautical themes, black and white contrasts, historical craftsmanship, artisanal carving, storytelling compositions, maritime heritage.",
"negative_prompt": "colorful, modern.",
"name_cn": "MK 丝线绣",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_scrimshaw.jpg"
},
{
"name": "MK Shibori",
"prompt": "Shibori {prompt}. Textured fabric, intricate patterns, resist-dyeing technique, indigo or vibrant colors, organic and flowing designs, Japanese textile art, cultural tradition, tactile and visual interest.",
"negative_prompt": "monochromatic.",
"name_cn": "MK 湿布雕版印刷",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_shibori.jpg"
},
{
"name": "MK Vitreous Enamel",
"prompt": "A sculpture made of Vitreous enamel {prompt}. Smooth and glossy surfaces, vibrant colors, glass-like finish, durable and resilient, intricate detailing, traditional and contemporary applications, artistic craftsmanship, jewelry and decorative objects, , Vitreous enamel, colored glass.",
"negative_prompt": "rough surfaces, muted colors.",
"name_cn": "MK 玻璃珐琅",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_vitreous_enamel.jpg"
},
{
"name": "MK Ukiyo-e",
"prompt": "Ukiyo-e {prompt}. Woodblock prints, vibrant colors, intricate details, depictions of landscapes, kabuki actors, beautiful women, cultural scenes, traditional Japanese art, artistic craftsmanship, historical significance.",
"negative_prompt": "absence of woodblock prints, muted colors, lack of intricate details, non-traditional Japanese themes, absence of cultural scenes.",
"name_cn": "MK 浮世绘",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_ukiyo_e.jpg"
},
{
"name": "MK vintage-airline-poster",
"prompt": "vintage airline poster {prompt} . classic aviation fonts, pastel colors, elegant aircraft illustrations, scenic destinations, distressed textures, retro travel allure",
"negative_prompt": "modern fonts, bold colors, hyper-realistic, sleek design",
"name_cn": "MK 古董航空公司海报",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_vintage_airline_poster.jpg"
},
{
"name": "MK vintage-travel-poster",
"prompt": "vintage travel poster {prompt} . retro fonts, muted colors, scenic illustrations, iconic landmarks, distressed textures, nostalgic vibes",
"negative_prompt": "modern fonts, vibrant colors, hyper-realistic, sleek design",
"name_cn": "MK 古董旅行海报",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_vintage_travel_poster.jpg"
},
{
"name": "MK bauhaus-style",
"prompt": "Bauhaus-inspired {prompt} . minimalism, geometric precision, primary colors, sans-serif typography, asymmetry, functional design",
"negative_prompt": "ornate, intricate, excessive detail, complex patterns, serif typography",
"name_cn": "Mk 包豪斯风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_bauhaus_style.jpg"
},
{
"name": "MK afrofuturism",
"prompt": "Afrofuturism illustration {prompt} . vibrant colors, futuristic elements, cultural symbolism, cosmic imagery, dynamic patterns, empowering narratives",
"negative_prompt": "monochromatic",
"name_cn": "Mk 非洲未来主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_afrofuturism.jpg"
},
{
"name": "MK atompunk",
"prompt": "Atompunk illustation, {prompt} . retro-futuristic, atomic age aesthetics, sleek lines, metallic textures, futuristic technology, optimism, energy",
"negative_prompt": "organic, natural textures, rustic, dystopian",
"name_cn": "Mk 原子朋克",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_atompunk.jpg"
},
{
"name": "MK constructivism",
"prompt": "Constructivism {prompt} . geometric abstraction, bold colors, industrial aesthetics, dynamic compositions, utilitarian design, revolutionary spirit",
"negative_prompt": "organic shapes, muted colors, ornate elements, traditional",
"name_cn": "Mk 构成派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_constructivism.jpg"
},
{
"name": "MK chicano-art",
"prompt": "Chicano art {prompt} . bold colors, cultural symbolism, muralism, lowrider aesthetics, barrio life, political messages, social activism, Mexico",
"negative_prompt": "monochromatic, minimalist, mainstream aesthetics",
"name_cn": "Mk 西班牙裔美国艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_chicano_art.jpg"
},
{
"name": "MK de-stijl",
"prompt": "De Stijl Art {prompt} . neoplasticism, primary colors, geometric abstraction, horizontal and vertical lines, simplicity, harmony, utopian ideals",
"negative_prompt": "complex patterns, muted colors, ornate elements, asymmetry",
"name_cn": "Mk 去风格派",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_de_stijl.jpg"
},
{
"name": "MK dayak-art",
"prompt": "Dayak art sculpture of {prompt} . intricate patterns, nature-inspired motifs, vibrant colors, traditional craftsmanship, cultural symbolism, storytelling",
"negative_prompt": "minimalist, monochromatic, modern",
"name_cn": "Mk 达雅克艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_dayak_art.jpg"
},
{
"name": "MK fayum-portrait",
"prompt": "Fayum portrait {prompt} . encaustic painting, realistic facial features, warm earth tones, serene expressions, ancient Egyptian influences",
"negative_prompt": "abstract, vibrant colors, exaggerated features, modern",
"name_cn": "Mk 法尤姆肖像画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_fayum_portrait.jpg"
},
{
"name": "MK illuminated-manuscript",
"prompt": "Illuminated manuscript {prompt} . intricate calligraphy, rich colors, detailed illustrations, gold leaf accents, ornate borders, religious, historical, medieval",
"negative_prompt": "modern typography, minimalist design, monochromatic, abstract themes",
"name_cn": "Mk 彩绘手稿",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_illuminated_manuscript.jpg"
},
{
"name": "MK kalighat-painting",
"prompt": "Kalighat painting {prompt} . bold lines, vibrant colors, narrative storytelling, cultural motifs, flat compositions, expressive characters",
"negative_prompt": "subdued colors, intricate details, realistic portrayal, modern aesthetics",
"name_cn": "Mk 卡利加特绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_kalighat_painting.jpg"
},
{
"name": "MK madhubani-painting",
"prompt": "Madhubani painting {prompt} . intricate patterns, vibrant colors, nature-inspired motifs, cultural storytelling, symmetry, folk art aesthetics",
"negative_prompt": "abstract, muted colors, minimalistic design, modern aesthetics",
"name_cn": "Mk 马杜班尼绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_madhubani_painting.jpg"
},
{
"name": "MK pictorialism",
"prompt": "Pictorialism illustration{prompt} . soft focus, atmospheric effects, artistic interpretation, tonality, muted colors, evocative storytelling",
"negative_prompt": "sharp focus, high contrast, realistic depiction, vivid colors",
"name_cn": "Mk 描绘主义",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_pictorialism.jpg"
},
{
"name": "MK pichwai-painting",
"prompt": "Pichwai painting {prompt} . intricate detailing, vibrant colors, religious themes, nature motifs, devotional storytelling, gold leaf accents",
"negative_prompt": "minimalist, subdued colors, abstract design",
"name_cn": "Mk 皮奇瓦伊绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_pichwai_painting.jpg"
},
{
"name": "MK patachitra-painting",
"prompt": "Patachitra painting {prompt} . bold outlines, vibrant colors, intricate detailing, mythological themes, storytelling, traditional craftsmanship",
"negative_prompt": "subdued colors, minimalistic, abstract, modern aesthetics",
"name_cn": "Mk 帕塔基特拉绘画",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_patachitra_painting.jpg"
},
{
"name": "MK samoan-art-inspired",
"prompt": "Samoan art-inspired wooden sculpture {prompt} . traditional motifs, natural elements, bold colors, cultural symbolism, storytelling, craftsmanship",
"negative_prompt": "modern aesthetics, minimalist, abstract",
"name_cn": "Mk 萨莫亚艺术启发的",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_samoan_art_inspired.jpg"
},
{
"name": "MK tlingit-art",
"prompt": "Tlingit art {prompt} . formline design, natural elements, animal motifs, bold colors, cultural storytelling, traditional craftsmanship, Alaska traditional art, (totem:1.5)",
"negative_prompt": "",
"name_cn": "Mk 特林吉特艺术",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_tlingit_art.jpg"
},
{
"name": "MK adnate-style",
"prompt": "Painting by Adnate {prompt} . realistic portraits, street art, large-scale murals, subdued color palette, social narratives",
"negative_prompt": "abstract, vibrant colors, small-scale art",
"name_cn": "Mk 阿达内特风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_adnate_style.jpg"
},
{
"name": "MK ron-english-style",
"prompt": "Painting by Ron English {prompt} . pop-surrealism, cultural subversion, iconic mash-ups, vibrant and bold colors, satirical commentary",
"negative_prompt": "traditional, monochromatic",
"name_cn": "Mk 罗恩英国风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_ron_english_style.jpg"
},
{
"name": "MK shepard-fairey-style",
"prompt": "Painting by Shepard Fairey {prompt} . street art, political activism, iconic stencils, bold typography, high contrast, red, black, and white color palette",
"negative_prompt": "traditional, muted colors",
"name_cn": "Mk 舒帕德 · 费尔利风格",
"thumbnail": "https://raw.githubusercontent.com/lllyasviel/Fooocus/main/sdxl_styles/samples/mk_shepard_fairey_style.jpg"
}
] |