Spaces:
Sleeping
Sleeping
File size: 60,252 Bytes
0db40c8 | 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 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 | {
"templates": [
{
"name": "three_line_emphasis",
"description": "Single-line emphasis: fully inline, bold colored highlight for main phrase",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 20px",
"color": "#000000",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 28px bold",
"color": "primary_color",
"importance": "primary",
"effects": {
"shadow": {
"blur": 4,
"offset": [
3,
3
],
"color": "rgba(0,0,0,0.3)"
}
},
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 20px",
"color": "#000000",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px italic",
"color": "#333333",
"allow_wrap": true
}
},
"segment_roles": "$S1 is an introductory modifier or context setter, $S2 is the focal subject (emphasized and prominent), $S3 is a qualifier or concluding phrase.",
"color_mode": "monochrome"
},
{
"name": "two_line_hierarchy",
"description": "Two-line hierarchy: secondary prefix + PRIMARY main title",
"segment_roles": "$S1 is a categorical prefix or contextual modifier, $S2 is the primary subject or topic.",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 19px",
"color": "#FFFFFF",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.1,
"id": 1,
"allow_wrap": true
},
{
"font": "Arial 34px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 17px",
"color": "#CCCCCC",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "lithium_countries",
"description": "World's Largest style: elegant italic prefix + bold main title",
"segment_roles": "$S1 is a superlative or descriptive qualifier, $S2 is the main noun phrase or topic.",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 23px italic",
"color": "#333333",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 28px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "european_adults",
"description": "Two-line stacked: small serif prefix + large sans-serif main title",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 20px",
"color": "#8B7355",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 27px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a demographic or geographic qualifier, $S2 is the subject matter or metric.",
"color_mode": "monochrome"
},
{
"name": "millionaires_green",
"description": "Green theme with background: small text on green + large white text on black background",
"segment_roles": "$S1 is a prepositional phrase or categorical context, $S2 is the emphasized core subject (with background, less than 3 words).",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 21px bold",
"color": "#2C5F2D",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 30px bold",
"color": "#ffffff",
"importance": "primary",
"effects": {
"background": {
"color": "#1A1A1A",
"padding": 8,
"border_radius": 10
}
},
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "america_valuable",
"description": "America's Most Valuable style: small prefix + 2 lines of huge text + small suffix",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 20px",
"color": "#999999",
"importance": "secondary",
"text_transform": "uppercase",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 34px bold",
"color": "primary_color",
"importance": "primary",
"text_transform": "uppercase",
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 34px bold",
"color": "primary_color",
"importance": "primary",
"text_transform": "uppercase",
"id": 3,
"allow_wrap": false
},
{
"font": "Arial 19px bold",
"color": "#000000",
"importance": "secondary",
"text_transform": "uppercase",
"id": 4,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a possessive or geographic prefix, $S2 is the main subject (with visual emphasis through background).",
"color_mode": "monochrome"
},
{
"name": "dentist_question",
"description": "Question style: medium setup + huge question + small caption",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 24px bold",
"color": "#2C5F4D",
"importance": "secondary",
"text_transform": "uppercase",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 40px bold",
"color": "primary_color",
"importance": "primary",
"text_transform": "uppercase",
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 18px bold",
"color": "#000000",
"allow_wrap": true,
"text_transform": "uppercase"
}
},
"segment_roles": "$S1 is an interrogative phrase or question prefix, $S2 is the specific subject being questioned.",
"color_mode": "monochrome"
},
{
"name": "infant_mortality",
"description": "Dark background style: small text with white background + large white text",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 21px",
"color": "#000000",
"importance": "secondary",
"effects": {
"background": {
"color": "#FFFFFF",
"padding": 8,
"border_radius": 0
}
},
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 31px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px",
"color": "#CCCCCC",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a categorical tag (with background, less than 3 words), $S2 is the emphasized main metric or topic.",
"color_mode": "monochrome"
},
{
"name": "financial_centers",
"description": "Three-line with colored background: black + primary background + black",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 28px bold",
"color": "#000000",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 28px bold",
"color": "#FFFFFF",
"importance": "primary",
"effects": {
"background": {
"color": "primary_color",
"padding": 12,
"border_radius": 0
}
},
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 28px bold",
"color": "#000000",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a ranking or quantitative modifier, $S2 is the emphasized subject (with background, less than 3 words).",
"color_mode": "monochrome"
},
{
"name": "innovative_countries",
"description": "Three-line emphasis with purple background: black + primary background + black",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 27px bold",
"color": "#000000",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 32px bold",
"color": "#FFFFFF",
"importance": "primary",
"effects": {
"background": {
"color": "primary_color",
"padding": 14,
"border_radius": 8
}
},
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 27px bold",
"color": "#000000",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a metric label or index name, $S2 is the main subject (with background, less than 3 words).",
"color_mode": "monochrome"
},
{
"name": "americas_wealth",
"description": "Large elegant title + smaller subtitle on dark background (white text)",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 28px bold",
"color": "#FFFFFF",
"importance": "primary",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 17px",
"color": "#CCCCCC",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a complete formal title without internal segmentation.",
"color_mode": "monochrome"
},
{
"name": "china_dominance",
"description": "Three-line bold title with alternating primary/secondary colors (red-black-red pattern)",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Impact 34px bold",
"color": "primary_color",
"importance": "primary",
"letter_spacing": "0.02em",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 23px bold",
"color": "#1A1A1A",
"importance": "secondary",
"id": 2,
"allow_wrap": false
},
{
"font": "Impact 34px bold",
"color": "primary_color",
"importance": "primary",
"letter_spacing": "0.02em",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#555555",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a possessive or subject identifier, $S2 is a descriptive/categorical modifier, $S3 is an abstract noun or conclusion.",
"color_mode": "monochrome"
},
{
"name": "magazine_cover",
"description": "Magazine cover style: small eyebrow + huge bold title + elegant subtitle",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 19px bold",
"color": "primary_color",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": "0.2em",
"id": 1,
"allow_wrap": true
},
{
"font": "Georgia 32px bold",
"color": "#1A1A1A",
"importance": "primary",
"id": 2,
"allow_wrap": true
},
{
"font": "Georgia 19px italic",
"color": "#666666",
"importance": "secondary",
"id": 3,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#888888",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a meta-label or section tag, $S2 is the main headline, $S3 is a subtitle or elaborative phrase.",
"color_mode": "monochrome"
},
{
"name": "newspaper_headline",
"description": "Newspaper headline: all caps bold with strong hierarchy",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 28px bold",
"color": "#000000",
"importance": "primary",
"text_transform": "uppercase",
"letter_spacing": "0.01em",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Georgia 17px",
"color": "#333333",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a complete declarative sentence or statement headline.",
"color_mode": "monochrome"
},
{
"name": "elegant_serif",
"description": "Elegant serif: centered thin + thick combination with line spacing",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 20px",
"color": "#555555",
"importance": "secondary",
"letter_spacing": "0.05em",
"id": 1,
"allow_wrap": true
},
{
"font": "Georgia 27px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Georgia 16px italic",
"color": "#777777",
"allow_wrap": true
}
},
"segment_roles": "$S1 is an abstract or philosophical prefix, $S2 is the main conceptual subject.",
"color_mode": "monochrome"
},
{
"name": "data_report",
"description": "Data report: number emphasis with highlighted background",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 20px bold",
"color": "#444444",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": "0.15em",
"id": 1,
"allow_wrap": false
},
{
"font": "Impact 34px bold",
"color": "#FFFFFF",
"importance": "primary",
"background": {
"color": "primary_color",
"padding": 12,
"border_radius": 8
},
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a temporal label or reporting period, $S2 is a numeric metric or key finding (with background, less than 3 words).",
"color_mode": "monochrome"
},
{
"name": "corporate_brand",
"description": "Corporate brand: wide letter spacing + underline emphasis",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 28px bold",
"color": "primary_color",
"importance": "primary",
"text_transform": "uppercase",
"letter_spacing": "0.08em",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 17px",
"color": "#555555",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a brand statement or corporate message (typically uppercase).",
"color_mode": "monochrome"
},
{
"name": "academic_paper",
"description": "Academic paper: formal serif with subtitle line",
"style": "professional",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 24px bold",
"color": "#1A1A1A",
"importance": "primary",
"id": 1,
"allow_wrap": true
},
{
"font": "Georgia 20px",
"color": "#555555",
"importance": "secondary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Georgia 16px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is the research topic or phenomenon, $S2 is a methodological or scope qualifier.",
"color_mode": "monochrome"
},
{
"name": "tech_startup",
"description": "Tech startup: bold sans-serif + colored accent word",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 29px bold",
"color": "#1A1A1A",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Arial 29px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 17px",
"color": "#777777",
"allow_wrap": true
}
},
"segment_roles": "$S1 is the first part of a compound statement, $S2 is the complementary second part (color-emphasized).",
"color_mode": "monochrome"
},
{
"name": "poster_impact",
"description": "Poster impact: mixed sizes with strong contrast",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Impact 37px bold",
"color": "primary_color",
"importance": "primary",
"letter_spacing": "0.02em",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 19px bold",
"color": "#2A2A2A",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": "0.1em",
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a declarative statement or call-to-action (huge impact), $S2 is a supporting phrase or continuation.",
"color_mode": "monochrome"
},
{
"name": "vintage_style",
"description": "Vintage style: decorative serif with layered text",
"style": "normal",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 19px",
"color": "#8B7355",
"importance": "secondary",
"letter_spacing": "0.3em",
"text_transform": "uppercase",
"id": 1,
"allow_wrap": true
},
{
"font": "Georgia 28px bold",
"color": "#2C1810",
"importance": "primary",
"letter_spacing": "0.05em",
"id": 2,
"allow_wrap": true
},
{
"font": "Georgia 19px italic",
"color": "#A0826D",
"importance": "secondary",
"letter_spacing": "0.15em",
"id": 3,
"allow_wrap": true
}
]
},
"description": {
"font": "Georgia 16px",
"color": "#6B5D52",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a temporal marker or establishment tag, $S2 is a proper noun or brand name, $S3 is a descriptor or tagline.",
"color_mode": "monochrome"
},
{
"name": "europe_brands",
"description": "Small colored tag + large black title (primary color tag with white text)",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 24px bold",
"color": "#FFFFFF",
"importance": "secondary",
"background": {
"color": "primary_color",
"padding": 12,
"border_radius": 12
},
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 32px bold",
"color": "#000000",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#2A2A2A",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a geographic or possessive tag (with background, less than 3 words), $S2 is the main headline or topic.",
"color_mode": "monochrome"
},
{
"name": "international_students",
"description": "Geographic prefix + multi-line stacked emphasis + temporal subtitle",
"style": "normal",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 20px",
"color": "#444444",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.08,
"id": 1,
"allow_wrap": false
},
{
"font": "Impact 34px bold",
"color": "#1A1A1A",
"importance": "primary",
"text_transform": "uppercase",
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 19px",
"color": "#555555",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"segment_roles": "$S1 is a geographic or possessive identifier, $S2 is the main emphasized subject (multi-line capable), $S3 is a temporal or scope qualifier.",
"color_mode": "monochrome"
},
{
"name": "kpi_number_pill",
"description": "KPI pill: small uppercase label + huge number in rounded pill",
"segment_roles": "$S1 is a category/metric label (SECONDARY), $S2 is the key number or data fact (with background, less than 3 words).",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 20px bold",
"color": "#444444",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.12,
"id": 1,
"allow_wrap": false
},
{
"font": "Impact 36px",
"color": "#FFFFFF",
"importance": "primary",
"background": {
"color": "primary_color",
"padding": 12,
"border_radius": 15
},
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "timeline_year_span",
"description": "Timeline span: small prefix + large year range + small suffix",
"segment_roles": "$S1 is a contextual lead-in (SECONDARY), $S2 is the year range / time span (PRIMARY), $S3 is a topic noun or qualifier (SECONDARY).",
"style": "normal",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 18px italic",
"color": "#555555",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 34px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 19px",
"color": "#333333",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#777777",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "stacked_badge_headline",
"description": "Badge + headline + tagline: small label in rounded badge, big headline, small italic tagline",
"segment_roles": "$S1 is a label/tag (with background, less than 3 words), $S2 is the main topic or metric (PRIMARY), $S3 is a short qualifier or context (SECONDARY).",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 19px bold",
"color": "#FFFFFF",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.18,
"background": {
"color": "primary_color",
"padding": 10,
"border_radius": 14
},
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 33px bold",
"color": "#111111",
"importance": "primary",
"id": 2,
"allow_wrap": true
},
{
"font": "Georgia 18px italic",
"color": "#666666",
"importance": "secondary",
"id": 3,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#777777",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_align_elegant_duo",
"description": "Right aligned duo: small serif context + large bold headline",
"segment_roles": "$S1 is context or scope (SECONDARY), $S2 is the core subject (PRIMARY).",
"style": "professional",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 19px italic",
"color": "#666666",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Georgia 31px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "inline_contrast_triple",
"description": "Inline triple: text + highlighted keyword + trailing qualifier (single line)",
"segment_roles": "$S1 is a lead-in phrase (SECONDARY), $S2 is the key noun/metric (with background, less than 3 words), $S3 is a short qualifier (SECONDARY). All three are inline.",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
[
{
"font": "Arial 25px bold",
"color": "#1A1A1A",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 25px bold",
"color": "#FFFFFF",
"importance": "primary",
"background": {
"color": "primary_color",
"padding": 10,
"border_radius": 10
},
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 25px bold",
"color": "#1A1A1A",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
]
},
"description": {
"font": "Arial 17px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "split_colon_emphasis",
"description": "Colon split: label on top + main topic highlighted below",
"segment_roles": "$S1 is a label/category (SECONDARY), $S2 is the main topic/metric after the colon (with background, less than 3 words).",
"style": "professional",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 18px bold",
"color": "#555555",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.12,
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 32px bold",
"color": "#FFFFFF",
"importance": "primary",
"effects": {
"background": {
"color": "primary_color",
"padding": 14,
"border_radius": 8
}
},
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "minimal_right_caption",
"description": "Minimal right aligned: clean title + italic caption",
"segment_roles": "$S1 is a concise headline (PRIMARY).",
"style": "simple",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 28px bold",
"color": "#1A1A1A",
"importance": "primary",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px italic",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "two_tone_upper",
"description": "Two-tone uppercase: secondary color line + primary color line",
"segment_roles": "$S1 is context/scope (SECONDARY), $S2 is the main subject (PRIMARY). Both are uppercase for strong hierarchy.",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 22px bold",
"color": "secondary_color",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.1,
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 29px bold",
"color": "primary_color",
"importance": "primary",
"text_transform": "uppercase",
"letter_spacing": 0.04,
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 16px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "duotone"
},
{
"name": "rounded_label_big_title",
"description": "Rounded label + big title: compact label badge above large headline",
"segment_roles": "$S1 is a category label (with background, less than 3 words), $S2 is the primary topic/metric (PRIMARY).",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 19px bold",
"color": "#FFFFFF",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.16,
"effects": {
"background": {
"color": "#1A1A1A",
"padding": 10,
"border_radius": 15
}
},
"id": 1,
"allow_wrap": true
},
{
"font": "Arial 33px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "underlined_statement",
"description": "Underlined headline: bold title with underline emphasis",
"segment_roles": "$S1 is the main statement headline (PRIMARY) with underline emphasis.",
"style": "simple",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 30px bold",
"color": "#111111",
"importance": "primary",
"effects": {
"underline": {
"color": "primary_color",
"thickness": 4
}
},
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "soft_shadow_duo",
"description": "Soft shadow duo: small context + big headline with gentle drop shadow",
"segment_roles": "$S1 is a context qualifier (SECONDARY), $S2 is the main topic/metric (PRIMARY) with soft shadow for depth.",
"style": "normal",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 18px",
"color": "#666666",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Arial 33px bold",
"color": "primary_color",
"importance": "primary",
"effects": {
"shadow": {
"blur": 10,
"offset": [
0,
8
],
"color": "rgba(0,0,0,0.22)"
}
},
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#777777",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_fun_title",
"description": "Comic fun title: playful Comic Sans with shadow",
"segment_roles": "$S1 is the main fun headline (PRIMARY).",
"style": "comic",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 28px bold",
"color": "primary_color",
"importance": "primary",
"effects": {
"shadow": {
"blur": 6,
"offset": [
4,
4
],
"color": "rgba(0,0,0,0.3)"
}
},
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Comic Sans MS 17px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_bubble_speech",
"description": "Comic bubble speech: small prefix + big Comic Sans title with rounded background",
"segment_roles": "$S1 is a playful prefix (SECONDARY), $S2 is the main fun headline (PRIMARY) with bubble background.",
"style": "comic",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 19px bold",
"color": "#FF6B6B",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Comic Sans MS 32px bold",
"color": "#FFFFFF",
"importance": "primary",
"background": {
"color": "primary_color",
"padding": 15,
"border_radius": 20
},
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Comic Sans MS 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_colorful_stack",
"description": "Comic colorful stack: two-line playful Comic Sans with different colors",
"segment_roles": "$S1 is the first part of the fun message (SECONDARY), $S2 is the second part (PRIMARY).",
"style": "comic",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 25px bold",
"color": "#4ECDC4",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Comic Sans MS 30px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": false
}
]
},
"description": {
"font": "Comic Sans MS 17px",
"color": "#777777",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_bouncy_emphasis",
"description": "Comic bouncy emphasis: inline Comic Sans with highlighted keyword",
"segment_roles": "$S1 is the lead-in text (SECONDARY), $S2 is the emphasized fun word (PRIMARY) with rounded background, $S3 is the trailing text (SECONDARY). All inline.",
"style": "comic",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
[
{
"font": "Comic Sans MS 27px bold",
"color": "#333333",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Comic Sans MS 28px bold",
"color": "#FFFFFF",
"importance": "primary",
"background": {
"color": "primary_color",
"padding": 12,
"border_radius": 18
},
"id": 2,
"allow_wrap": false
},
{
"font": "Comic Sans MS 27px bold",
"color": "#333333",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
]
},
"description": {
"font": "Comic Sans MS 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_playful_label",
"description": "Comic playful label: fun rounded badge + big Comic Sans headline",
"segment_roles": "$S1 is a playful category label (SECONDARY) in a badge, $S2 is the fun main headline (PRIMARY).",
"style": "comic",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 20px bold",
"color": "#FFFFFF",
"importance": "secondary",
"text_transform": "uppercase",
"effects": {
"background": {
"color": "#FF6B6B",
"padding": 12,
"border_radius": 20
}
},
"id": 1,
"allow_wrap": true
},
{
"font": "Comic Sans MS 34px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Comic Sans MS 17px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_question_fun",
"description": "Comic question fun: playful question style with exclamation",
"segment_roles": "$S1 is the question setup (SECONDARY), $S2 is the big fun question (PRIMARY).",
"style": "comic",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 21px bold",
"color": "#FF6B6B",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Comic Sans MS 35px bold",
"color": "primary_color",
"importance": "primary",
"effects": {
"shadow": {
"blur": 8,
"offset": [
5,
5
],
"color": "rgba(0,0,0,0.25)"
}
},
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Comic Sans MS 17px bold",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_bold_announcement",
"description": "Comic bold announcement: single huge Comic Sans title with colorful background",
"segment_roles": "$S1 is the main announcement (PRIMARY) with bold colorful styling.",
"style": "comic",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 33px bold",
"color": "#FFFFFF",
"importance": "primary",
"background": {
"color": "primary_color",
"padding": 18,
"border_radius": 25
},
"effects": {
"shadow": {
"blur": 10,
"offset": [
6,
6
],
"color": "rgba(0,0,0,0.3)"
}
},
"id": 1,
"allow_wrap": false
}
]
},
"description": {
"font": "Comic Sans MS 17px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_wavy_text",
"description": "Comic wavy text: playful two-line with different Comic Sans styles",
"segment_roles": "$S1 is the first playful line (SECONDARY), $S2 is the second emphasized line (PRIMARY).",
"style": "comic",
"layout_type": "single_column",
"alignment": "left",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 23px bold",
"color": "#FF6B6B",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Comic Sans MS 31px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Comic Sans MS 17px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_mega_title",
"description": "Comic mega title: enormous single-line Comic Sans with outline",
"segment_roles": "$S1 is the mega headline (PRIMARY) with strong visual impact.",
"style": "comic",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 40px bold",
"color": "primary_color",
"importance": "primary",
"effects": {
"shadow": {
"blur": 12,
"offset": [
6,
6
],
"color": "rgba(0,0,0,0.4)"
}
},
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Comic Sans MS 18px",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "comic_sticker_style",
"description": "Comic sticker style: rounded sticker badge + Comic Sans title",
"segment_roles": "$S1 is a sticker-like badge (SECONDARY), $S2 is the main title (PRIMARY).",
"style": "comic",
"layout_type": "single_column",
"alignment": "center",
"parts": {
"main_title": {
"segments": [
{
"font": "Comic Sans MS 20px bold",
"color": "#FFFFFF",
"importance": "secondary",
"text_transform": "uppercase",
"background": {
"color": "#FF6B6B",
"padding": 14,
"border_radius": 25
},
"effects": {
"shadow": {
"blur": 6,
"offset": [
3,
3
],
"color": "rgba(0,0,0,0.3)"
}
},
"id": 1,
"allow_wrap": false
},
{
"font": "Comic Sans MS 32px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Comic Sans MS 17px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_bold_statement",
"description": "Right aligned bold statement: single bold headline",
"segment_roles": "$S1 is a powerful headline (PRIMARY).",
"style": "normal",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 30px bold",
"color": "primary_color",
"importance": "primary",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 17px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_two_tone",
"description": "Right aligned two-tone: colored prefix + bold main",
"segment_roles": "$S1 is context or category (SECONDARY), $S2 is the main subject (PRIMARY).",
"style": "normal",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 21px",
"color": "secondary_color",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.1,
"id": 1,
"allow_wrap": true
},
{
"font": "Arial 30px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#777777",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_serif_classic",
"description": "Right aligned classic serif: elegant Georgia headline",
"segment_roles": "$S1 is a sophisticated statement (PRIMARY).",
"style": "professional",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Georgia 29px bold",
"color": "#1A1A1A",
"importance": "primary",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Georgia 17px italic",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_modern_duo",
"description": "Right aligned modern duo: thin secondary + bold primary",
"segment_roles": "$S1 is a light descriptor (SECONDARY), $S2 is the bold subject (PRIMARY).",
"style": "simple",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 21px",
"color": "#999999",
"importance": "secondary",
"id": 1,
"allow_wrap": true
},
{
"font": "Arial 30px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#888888",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_triple_emphasis",
"description": "Right aligned triple emphasis: secondary + bold primary + secondary",
"segment_roles": "$S1 is context (SECONDARY), $S2 is core subject (PRIMARY), $S3 is closing context (SECONDARY).",
"style": "normal",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 20px",
"color": "#333333",
"importance": "secondary",
"id": 1,
"allow_wrap": false
},
{
"font": "Arial 28px bold",
"color": "primary_color",
"importance": "primary",
"id": 2,
"allow_wrap": false
},
{
"font": "Arial 20px",
"color": "#333333",
"importance": "secondary",
"id": 3,
"allow_wrap": false
}
]
},
"description": {
"font": "Arial 17px italic",
"color": "#555555",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_impact_headline",
"description": "Right aligned impact: large bold uppercase statement",
"segment_roles": "$S1 is a powerful declaration (PRIMARY).",
"style": "normal",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Impact 34px bold",
"color": "primary_color",
"importance": "primary",
"text_transform": "uppercase",
"letter_spacing": 0.02,
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#666666",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_elegant_stack",
"description": "Right aligned elegant stack: small caps + large bold",
"segment_roles": "$S1 is a category or subtitle (SECONDARY), $S2 is the main headline (PRIMARY).",
"style": "professional",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 18px",
"color": "#888888",
"importance": "secondary",
"text_transform": "uppercase",
"letter_spacing": 0.15,
"id": 1,
"allow_wrap": true
},
{
"font": "Georgia 32px bold",
"color": "#1A1A1A",
"importance": "primary",
"id": 2,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 17px",
"color": "#777777",
"allow_wrap": true
}
},
"color_mode": "monochrome"
},
{
"name": "right_minimal_focus",
"description": "Right aligned minimal: clean and focused single line",
"segment_roles": "$S1 is a clear statement (PRIMARY).",
"style": "simple",
"layout_type": "single_column",
"alignment": "right",
"parts": {
"main_title": {
"segments": [
{
"font": "Arial 27px",
"color": "#2A2A2A",
"importance": "primary",
"id": 1,
"allow_wrap": true
}
]
},
"description": {
"font": "Arial 16px",
"color": "#999999",
"allow_wrap": true
}
},
"color_mode": "monochrome"
}
]
} |