Make WordPress Core

Changeset 59314


Ignore:
Timestamp:
10/29/2024 12:00:46 AM (5 months ago)
Author:
peterwilsoncc
Message:

Bundled Themes: Update Twenty Twenty-Five for 6.7 RC 2.

This merges the latest improvements to the Twenty Twenty-Five theme from GitHub into WordPress-Develop for 6.7 RC 2

A full list of changes can be found on GitHub: WordPress/twentytwentyfive@7dfa99f1...b5b0475f.

Props juanfra, poena.
See #62310.

Location:
trunk/src/wp-content/themes/twentytwentyfive
Files:
8 added
54 deleted
25 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/banner-poster.php

    r59271 r59314  
    1919        <!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50"}}}} -->
    2020        <div class="wp-block-columns alignwide">
    21             <!-- wp:column {"width":"66.66%"} -->
    22             <div class="wp-block-column" style="flex-basis:66.66%">
     21            <!-- wp:column {"width":"80%"} -->
     22            <div class="wp-block-column" style="flex-basis:80%">
    2323                <!-- wp:heading {"textAlign":"left","align":"wide","style":{"typography":{"fontSize":"12vw","lineHeight":"0.9","fontStyle":"normal","fontWeight":"300"}}} -->
    24                 <h2 class="wp-block-heading alignwide has-text-align-left" style="font-size:12vw;font-style:normal;font-weight:300;line-height:0.9"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Sample heading in four languages.', 'twentytwentyfive' ); ?></h2>
     24                <h2 class="wp-block-heading alignwide has-text-align-left" style="font-size:12vw;font-style:normal;font-weight:300;line-height:0.9">
     25                    <?php
     26                    echo wp_kses_post(
     27                        /* translators: This string contains the word "Stories" in four different languages with the first item in the locale's language. */
     28                        _x( '“Stories, <span lang="es">historias</span>, <span lang="uk">iсторії</span>, <span lang="el">iστορίες</span>”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
     29                    );
     30                    ?>
     31                </h2>
    2532                <!-- /wp:heading -->
    2633            </div>
    2734            <!-- /wp:column -->
    2835
    29             <!-- wp:column {"width":"33.33%"} -->
    30             <div class="wp-block-column" style="flex-basis:33.33%">
     36            <!-- wp:column {"width":"20%"} -->
     37            <div class="wp-block-column" style="flex-basis:20%">
    3138                <!-- wp:paragraph {"align":"right"} -->
    3239                <p class="has-text-align-right"><?php echo esc_html_x( 'Aug 08—10 2025', 'Example event date in pattern.', 'twentytwentyfive' ); ?><br><?php esc_html_e( 'Fuego Bar, Mexico City', 'twentytwentyfive' ); ?></p>
     
    3946        <!-- wp:columns {"verticalAlignment":"bottom","isStackedOnMobile":false,"align":"wide"} -->
    4047        <div class="wp-block-columns alignwide are-vertically-aligned-bottom is-not-stacked-on-mobile">
    41             <!-- wp:column {"verticalAlignment":"bottom","width":"66.66%"} -->
    42             <div class="wp-block-column is-vertically-aligned-bottom" style="flex-basis:66.66%">
     48            <!-- wp:column {"verticalAlignment":"bottom","width":"80%"} -->
     49            <div class="wp-block-column is-vertically-aligned-bottom" style="flex-basis:80%">
    4350                <!-- wp:heading {"textAlign":"left","align":"wide","style":{"typography":{"lineHeight":"0.9","fontStyle":"normal","fontWeight":"300"}},"fontSize":"xx-large"} -->
    4451                <h2 class="wp-block-heading alignwide has-text-align-left has-xx-large-font-size" style="font-style:normal;font-weight:300;line-height:0.9"><?php esc_html_e( 'Let’s hear them.', 'twentytwentyfive' ); ?></h2>
     
    4754            <!-- /wp:column -->
    4855
    49             <!-- wp:column {"verticalAlignment":"bottom","width":"33.33%"} -->
    50             <div class="wp-block-column is-vertically-aligned-bottom" style="flex-basis:33.33%">
     56            <!-- wp:column {"verticalAlignment":"bottom","width":"20%"} -->
     57            <div class="wp-block-column is-vertically-aligned-bottom" style="flex-basis:20%">
    5158                <!-- wp:paragraph {"align":"right"} -->
    5259                <p class="has-text-align-right"><?php esc_html_e( '#stories', 'twentytwentyfive' ); ?></p>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/cta-events-list.php

    r59269 r59314  
    6262                <div class="wp-block-group">
    6363                    <!-- wp:heading {"level":3} -->
    64                     <h3 class="wp-block-heading"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h3>
     64                    <h3 class="wp-block-heading">
     65                        <?php
     66                        echo wp_kses_post(
     67                            /* translators: This string contains the word "Stories" in four different languages with the first item in the locale's language. */
     68                            _x( '“Stories, <span lang="es">historias</span>, <span lang="uk">iсторії</span>, <span lang="el">iστορίες</span>”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
     69                        );
     70                        ?>
     71                    </h3>
    6572                    <!-- /wp:heading -->
    6673
     
    124131                <div class="wp-block-group">
    125132                    <!-- wp:heading {"level":3} -->
    126                     <h3 class="wp-block-heading"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h3>
     133                    <h3 class="wp-block-heading">
     134                        <?php
     135                        echo wp_kses_post(
     136                            /* translators: This string contains the word "Stories" in four different languages with the first item in the locale's language. */
     137                            _x( '“Stories, <span lang="es">historias</span>, <span lang="uk">iсторії</span>, <span lang="el">iστορίες</span>”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
     138                        );
     139                        ?>
     140                    </h3>
    127141                    <!-- /wp:heading -->
    128142
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/cta-grid-products-link.php

    r59269 r59314  
    1717    <!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
    1818    <div class="wp-block-group alignwide">
    19         <!-- wp:heading {"style":{"typography":{"fontSize":"11.58rem","letterSpacing":"-0.02em"}}} -->
    20         <h2 class="wp-block-heading" style="font-size:11.58rem;letter-spacing:-0.02em"><?php esc_html_e( 'Our online store.', 'twentytwentyfive' ); ?></h2>
     19        <!-- wp:heading {"style":{"typography":{"fontSize":"9.6rem","letterSpacing":"-0.02em"}}} -->
     20        <h2 class="wp-block-heading" style="font-size:9.6rem;letter-spacing:-0.02em"><?php esc_html_e( 'Our online store.', 'twentytwentyfive' ); ?></h2>
    2121        <!-- /wp:heading -->
    2222
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/event-rsvp.php

    r59269 r59314  
    1515
    1616?>
    17 <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
    18 <div class="wp-block-group alignfull">
    19     <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"grid","minimumColumnWidth":"70rem"}} -->
    20     <div class="wp-block-group alignfull">
    21         <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|80","left":"var:preset|spacing|40","right":"var:preset|spacing|40","top":"var:preset|spacing|40"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"top"}} -->
    22         <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--40)">
     17<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}}},"layout":{"type":"default"}} -->
     18<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0">
     19    <!-- wp:columns {"isStackedOnMobile":false,"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|80","left":"var:preset|spacing|40","right":"var:preset|spacing|40"},"margin":{"top":"0","bottom":"0"}}}} -->
     20    <div class="wp-block-columns alignfull is-not-stacked-on-mobile" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--40)">
     21        <!-- wp:column {"width":"66.66%"} -->
     22        <div class="wp-block-column" style="flex-basis:66.66%">
    2323            <!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
    2424            <div class="wp-block-group">
    2525                <!-- wp:heading {"fontSize":"xx-large"} -->
    26                 <h2 class="wp-block-heading has-xx-large-font-size"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h2>
     26                <h2 class="wp-block-heading has-xx-large-font-size">
     27                    <?php
     28                    echo wp_kses_post(
     29                        /* translators: This string contains the word "Stories" in four different languages with the first item in the locale's language. */
     30                        _x( '“Stories, <span lang="es">historias</span>, <span lang="uk">iсторії</span>, <span lang="el">iστορίες</span>”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
     31                    );
     32                    ?>
     33                </h2>
    2734                <!-- /wp:heading -->
    2835
     
    3138                <!-- /wp:paragraph -->
    3239
    33                 <!-- wp:spacer {"height":"0px","style":{"layout":{"selfStretch":"fixed","flexSize":"100px"}}} -->
     40                <!-- wp:spacer {"height":"0px","style":{"layout":{"selfStretch":"fixed","flexSize":"140px"}}} -->
    3441                <div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
    3542                <!-- /wp:spacer -->
    3643            </div>
    3744            <!-- /wp:group -->
     45        </div>
     46        <!-- /wp:column -->
    3847
    39             <!-- wp:paragraph {"align":"left","style":{"typography":{"writingMode":"vertical-rl","textTransform":"uppercase","lineHeight":"0.6"}}} -->
    40             <p class="has-text-align-left" style="line-height:0.6;text-transform:uppercase;writing-mode:vertical-rl"><?php esc_html_e( 'Free WorKshop', 'twentytwentyfive' ); ?></p>
    41             <!-- /wp:paragraph -->
     48        <!-- wp:column {"width":"12vw"} -->
     49        <div class="wp-block-column" style="flex-basis:12vw"></div>
     50        <!-- /wp:column -->
     51
     52        <!-- wp:column -->
     53        <div class="wp-block-column">
     54            <!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"right"}} -->
     55            <div class="wp-block-group">
     56                <!-- wp:paragraph {"align":"left","style":{"typography":{"writingMode":"vertical-rl","textTransform":"uppercase","lineHeight":"0.6"}}} -->
     57                <p class="has-text-align-left" style="line-height:0.6;text-transform:uppercase;writing-mode:vertical-rl"><?php esc_html_e( 'Free Workshop', 'twentytwentyfive' ); ?></p>
     58                <!-- /wp:paragraph -->
     59            </div>
     60            <!-- /wp:group -->
    4261        </div>
    43         <!-- /wp:group -->
     62        <!-- /wp:column -->
    4463    </div>
    45     <!-- /wp:group -->
     64    <!-- /wp:columns -->
    4665
    47     <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"grid","minimumColumnWidth":"40rem","columnCount":null}} -->
    48     <div class="wp-block-group alignfull">
    49         <!-- wp:group {"className":"is-style-section-2","style":{"spacing":{"blockGap":"var:preset|spacing|20","padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|40","right":"var:preset|spacing|40"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
    50         <div class="wp-block-group is-style-section-2" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)">
    51             <!-- wp:paragraph -->
    52             <p><?php esc_html_e( 'This immersive event celebrates the universal human experience through the lenses of history and ancestry, featuring a diverse array of photographers whose works capture the essence of different cultures and historical moments.', 'twentytwentyfive' ); ?></p>
    53             <!-- /wp:paragraph -->
     66    <!-- wp:columns {"align":"full","className":"is-style-section-2","style":{"spacing":{"blockGap":{"top":"0","left":"0"},"padding":{"top":"0","bottom":"0"}}}} -->
     67    <div class="wp-block-columns alignfull is-style-section-2" style="padding-top:0;padding-bottom:0">
     68        <!-- wp:column {"width":"50%"} -->
     69        <div class="wp-block-column" style="flex-basis:50%">
     70            <!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20","padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}},"dimensions":{"minHeight":"33vh"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} -->
     71            <div class="wp-block-group" style="min-height:33vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
     72                <!-- wp:paragraph -->
     73                <p><?php esc_html_e( 'This immersive event celebrates the universal human experience through the lenses of history and ancestry, featuring a diverse array of photographers whose works capture the essence of different cultures and historical moments.', 'twentytwentyfive' ); ?></p>
     74                <!-- /wp:paragraph -->
    5475
    55             <!-- wp:spacer {"height":"0px","style":{"layout":{"selfStretch":"fixed","flexSize":"100px"}}} -->
    56             <div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
    57             <!-- /wp:spacer -->
     76                <!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"100px","selfStretch":"fixed"}}} -->
     77                <div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
     78                <!-- /wp:spacer -->
    5879
    59             <!-- wp:heading {"fontSize":"xx-large"} -->
    60             <h2 class="wp-block-heading has-xx-large-font-size"><a href="#"><?php echo esc_html_x( 'RSVP', 'Abbreviation for "Please respond".', 'twentytwentyfive' ); ?></a></h2>
    61             <!-- /wp:heading -->
     80                <!-- wp:heading {"fontSize":"xx-large"} -->
     81                <h2 class="wp-block-heading has-xx-large-font-size"><a href="#"><?php echo esc_html_x( 'RSVP', 'Abbreviation for "Please respond".', 'twentytwentyfive' ); ?></a></h2>
     82                <!-- /wp:heading -->
     83            </div>
     84            <!-- /wp:group -->
    6285        </div>
    63         <!-- /wp:group -->
     86        <!-- /wp:column -->
    6487
    65         <!-- wp:cover {"url":"<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/botany-flowers-closeup.webp","dimRatio":0,"overlayColor":"base","isUserOverlayColor":true,"isDark":false,"layout":{"type":"constrained"}} -->
    66         <div class="wp-block-cover is-light">
    67             <span aria-hidden="true" class="wp-block-cover__background has-base-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="<?php esc_attr_e( 'Close up photo of white flowers on a grey background', 'twentytwentyfive' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/botany-flowers-closeup.webp" data-object-fit="cover"/>
     88        <!-- wp:column {"width":"50%"} -->
     89        <div class="wp-block-column" style="flex-basis:50%">
     90            <!-- wp:cover {"url":"<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/botany-flowers-closeup.webp","dimRatio":0,"isDark":false} -->
     91            <div class="wp-block-cover is-light"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="<?php esc_attr_e( 'Close up photo of white flowers on a grey background', 'twentytwentyfive' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/botany-flowers-closeup.webp" data-object-fit="cover"/>
    6892            <div class="wp-block-cover__inner-container">
    6993                <!-- wp:spacer {"height":"var:preset|spacing|20"} -->
    7094                <div style="height:var(--wp--preset--spacing--20)" aria-hidden="true" class="wp-block-spacer"></div>
    7195                <!-- /wp:spacer -->
    72             </div>
     96            </div></div>
     97            <!-- /wp:cover -->
    7398        </div>
    74         <!-- /wp:cover -->
     99        <!-- /wp:column -->
    75100    </div>
    76     <!-- /wp:group -->
     101    <!-- /wp:columns -->
    77102</div>
    78103<!-- /wp:group -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php

    r59191 r59314  
    1111
    1212?>
    13 <!-- wp:group {"style":{"spacing":{"blockGap":"0.2em","margin":{"bottom":"var:preset|spacing|60"}}},"textColor":"accent-4","fontSize":"small","layout":{"type":"flex","flexWrap":"nowrap"}} -->
     13<!-- wp:group {"style":{"spacing":{"blockGap":"0.2em","margin":{"bottom":"var:preset|spacing|60"}}},"textColor":"accent-4","fontSize":"small","layout":{"type":"flex","flexWrap":"wrap"}} -->
    1414<div class="wp-block-group has-accent-4-color has-text-color has-link-color has-small-font-size" style="margin-bottom:var(--wp--preset--spacing--60)">
    1515    <!-- wp:paragraph -->
    1616    <p><?php esc_html_e( 'Written by ', 'twentytwentyfive' ); ?></p>
    1717    <!-- /wp:paragraph -->
    18     <!-- wp:post-author-name {"isLink":true,"style":{"typography":{"textDecoration":"underline"}}} /-->
     18    <!-- wp:post-author-name {"isLink":true} /-->
    1919    <!-- wp:paragraph -->
    2020    <p><?php esc_html_e( 'in', 'twentytwentyfive' ); ?></p>
    2121    <!-- /wp:paragraph -->
    22     <!-- wp:post-terms {"term":"category","style":{"typography":{"fontWeight":"300","textDecoration":"underline"}}} /-->
     22    <!-- wp:post-terms {"term":"category","style":{"typography":{"fontWeight":"300"}}} /-->
    2323</div>
    2424<!-- /wp:group -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php

    r59269 r59314  
    3131                            <p><?php echo esc_html_x( 'by', 'Prefix before the author name. The post author name is displayed in a separate block.', 'twentytwentyfive' ); ?></p>
    3232                            <!-- /wp:paragraph -->
    33                             <!-- wp:post-author-name {"isLink":true,"style":{"typography":{"textDecoration":"underline"}},"fontSize":"small"} /-->
     33                            <!-- wp:post-author-name {"isLink":true,"fontSize":"small"} /-->
    3434                        </div>
    3535                        <!-- /wp:group -->
  • trunk/src/wp-content/themes/twentytwentyfive/style.css

    r59233 r59314  
    3030}
    3131
     32/* Increase the bottom margin on submenus, so that the outline is visible. */
     33.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
     34    margin-bottom: 3px;
     35}
     36
     37/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
     38.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
     39    outline-offset: 4px;
     40}
     41
     42/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
     43.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
     44    outline-offset: 0;
     45}
     46
    3247/*
    3348 * Progressive enhancement to reduce widows and orphans
  • trunk/src/wp-content/themes/twentytwentyfive/styles/02-noon.json

    r59233 r59314  
    4949        },
    5050        "typography": {
     51            "fontFamilies": [
     52                {
     53                    "name": "Beiruti",
     54                    "slug": "beiruti",
     55                    "fontFamily": "Beiruti, sans-serif",
     56                    "fontFace": [
     57                        {
     58                            "fontFamily": "Beiruti",
     59                            "fontStyle": "normal",
     60                            "fontWeight": "200 900",
     61                            "src": [
     62                                "file:./assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2"
     63                            ]
     64                        }
     65                    ]
     66                },
     67                {
     68                    "name": "Literata",
     69                    "slug": "literata",
     70                    "fontFamily": "Literata, serif",
     71                    "fontFace": [
     72                        {
     73                            "src": [
     74                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     75                            ],
     76                            "fontWeight": "200",
     77                            "fontStyle": "normal",
     78                            "fontFamily": "Literata"
     79                        },
     80                        {
     81                            "src": [
     82                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     83                            ],
     84                            "fontWeight": "200",
     85                            "fontStyle": "italic",
     86                            "fontFamily": "Literata"
     87                        },
     88                        {
     89                            "src": [
     90                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     91                            ],
     92                            "fontWeight": "300",
     93                            "fontStyle": "normal",
     94                            "fontFamily": "Literata"
     95                        },
     96                        {
     97                            "src": [
     98                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     99                            ],
     100                            "fontWeight": "300",
     101                            "fontStyle": "italic",
     102                            "fontFamily": "Literata"
     103                        },
     104                        {
     105                            "src": [
     106                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     107                            ],
     108                            "fontWeight": "400",
     109                            "fontStyle": "normal",
     110                            "fontFamily": "Literata"
     111                        },
     112                        {
     113                            "src": [
     114                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     115                            ],
     116                            "fontWeight": "400",
     117                            "fontStyle": "italic",
     118                            "fontFamily": "Literata"
     119                        },
     120                        {
     121                            "src": [
     122                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     123                            ],
     124                            "fontWeight": "500",
     125                            "fontStyle": "normal",
     126                            "fontFamily": "Literata"
     127                        },
     128                        {
     129                            "src": [
     130                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     131                            ],
     132                            "fontWeight": "500",
     133                            "fontStyle": "italic",
     134                            "fontFamily": "Literata"
     135                        },
     136                        {
     137                            "src": [
     138                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     139                            ],
     140                            "fontWeight": "600",
     141                            "fontStyle": "normal",
     142                            "fontFamily": "Literata"
     143                        },
     144                        {
     145                            "src": [
     146                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     147                            ],
     148                            "fontWeight": "600",
     149                            "fontStyle": "italic",
     150                            "fontFamily": "Literata"
     151                        },
     152                        {
     153                            "src": [
     154                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     155                            ],
     156                            "fontWeight": "700",
     157                            "fontStyle": "normal",
     158                            "fontFamily": "Literata"
     159                        },
     160                        {
     161                            "src": [
     162                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     163                            ],
     164                            "fontWeight": "700",
     165                            "fontStyle": "italic",
     166                            "fontFamily": "Literata"
     167                        },
     168                        {
     169                            "src": [
     170                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     171                            ],
     172                            "fontWeight": "800",
     173                            "fontStyle": "normal",
     174                            "fontFamily": "Literata"
     175                        },
     176                        {
     177                            "src": [
     178                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     179                            ],
     180                            "fontWeight": "800",
     181                            "fontStyle": "italic",
     182                            "fontFamily": "Literata"
     183                        },
     184                        {
     185                            "src": [
     186                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     187                            ],
     188                            "fontWeight": "900",
     189                            "fontStyle": "normal",
     190                            "fontFamily": "Literata"
     191                        },
     192                        {
     193                            "src": [
     194                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     195                            ],
     196                            "fontWeight": "900",
     197                            "fontStyle": "italic",
     198                            "fontFamily": "Literata"
     199                        }
     200                    ]
     201                }
     202            ],
    51203            "fontSizes": [
    52204                {
  • trunk/src/wp-content/themes/twentytwentyfive/styles/03-dusk.json

    r59233 r59314  
    5252                "accent-2-opacity-20": "#650DD433"
    5353            }
     54        },
     55        "typography": {
     56            "fontFamilies": [
     57                {
     58                    "name": "Vollkorn",
     59                    "slug": "vollkorn",
     60                    "fontFamily": "Vollkorn, serif",
     61                    "fontFace": [
     62                        {
     63                            "src": [
     64                                "file:./assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2"
     65                            ],
     66                            "fontWeight": "400 900",
     67                            "fontStyle": "italic",
     68                            "fontFamily": "Vollkorn"
     69                        },
     70                        {
     71                            "src": [
     72                                "file:./assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2"
     73                            ],
     74                            "fontWeight": "400 900",
     75                            "fontStyle": "normal",
     76                            "fontFamily": "Vollkorn"
     77                        }
     78                    ]
     79                },
     80                {
     81                    "name": "Fira Code",
     82                    "slug": "fira-code",
     83                    "fontFamily": "\"Fira Code\", monospace",
     84                    "fontFace": [
     85                        {
     86                            "src": [
     87                                "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
     88                            ],
     89                            "fontWeight": "300 700",
     90                            "fontStyle": "normal",
     91                            "fontFamily": "\"Fira Code\""
     92                        }
     93                    ]
     94                }
     95            ]
    5496        }
    5597    },
     
    88130                        "color": {
    89131                            "text": "var:preset|color|accent-2"
    90                         },
    91                         "typography": {
    92                             "textDecoration": "underline"
    93                         },
    94                         ":hover": {
    95                             "typography": {
    96                                 "textDecoration": "none"
    97                             }
    98132                        }
    99133                    }
     
    111145                        "color": {
    112146                            "text": "var:preset|color|accent-2"
    113                         },
    114                         "typography": {
    115                             "textDecoration": "underline"
    116                         },
    117                         ":hover": {
    118                             "typography": {
    119                                 "textDecoration": "none"
    120                             }
    121147                        }
    122148                    }
     
    260286                            "width": "0.8px",
    261287                            "style": "solid"
    262                         },
    263                         "typography": {
    264                             "textDecoration": "none"
    265                         },
    266                         ":hover": {
    267                             "typography": {
    268                                 "textDecoration": "underline"
    269                             }
    270288                        }
    271289                    }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/04-afternoon.json

    r59233 r59314  
    4949        },
    5050        "typography": {
     51            "fontFamilies": [
     52                {
     53                    "name": "Platypi",
     54                    "slug": "platypi",
     55                    "fontFamily": "Platypi",
     56                    "fontFace": [
     57                        {
     58                            "fontFamily": "Platypi",
     59                            "fontStyle": "normal",
     60                            "fontWeight": "300 800",
     61                            "src": [
     62                                "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
     63                            ]
     64                        },
     65                        {
     66                            "fontFamily": "Platypi",
     67                            "fontStyle": "italic",
     68                            "fontWeight": "300 800",
     69                            "src": [
     70                                "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
     71                            ]
     72                        }
     73                    ]
     74                },
     75                {
     76                    "name": "Ysabeau Office",
     77                    "slug": "ysabeau-office",
     78                    "fontFamily": "\"Ysabeau Office\", sans-serif",
     79                    "fontFace": [
     80                        {
     81                            "src": [
     82                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
     83                            ],
     84                            "fontWeight": "100 900",
     85                            "fontStyle": "normal",
     86                            "fontFamily": "\"Ysabeau Office\""
     87                        },
     88                        {
     89                            "src": [
     90                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
     91                            ],
     92                            "fontWeight": "100 900",
     93                            "fontStyle": "italic",
     94                            "fontFamily": "\"Ysabeau Office\""
     95                        }
     96                    ]
     97                }
     98            ],
    5199            "fontSizes": [
    52100                {
     
    194242            "h5": {
    195243                "typography": {
    196                     "fontSize": "var:preset|font-size|medium"
     244                    "fontSize": "var:preset|font-size|medium",
     245                    "letterSpacing": "normal"
    197246                }
    198247            },
  • trunk/src/wp-content/themes/twentytwentyfive/styles/05-twilight.json

    r59233 r59314  
    4949        },
    5050        "typography": {
     51            "fontFamilies": [
     52                {
     53                    "name": "Roboto Slab",
     54                    "slug": "roboto-slab",
     55                    "fontFamily": "\"Roboto Slab\", serif",
     56                    "fontFace": [
     57                        {
     58                            "fontFamily": "\"Roboto Slab\"",
     59                            "fontStyle": "normal",
     60                            "fontWeight": "100 900",
     61                            "src": [
     62                                "file:./assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2"
     63                            ]
     64                        }
     65                    ]
     66                },
     67                {
     68                    "name": "Manrope",
     69                    "slug": "manrope",
     70                    "fontFamily": "Manrope, sans-serif",
     71                    "fontFace": [
     72                        {
     73                            "src": [
     74                                "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
     75                            ],
     76                            "fontWeight": "200 800",
     77                            "fontStyle": "normal",
     78                            "fontFamily": "Manrope"
     79                        }
     80                    ]
     81                }
     82            ],
    5183            "fontSizes": [
    5284                {
     
    207239                    }
    208240                }
     241            },
     242            "section-5": {
     243                "blocks": {
     244                    "core/post-comments-form": {
     245                        "css": "& textarea, input:not([type=submit]){border-radius:.25rem; border-color: color-mix(in srgb, currentColor 20%, transparent) !important;} & input[type=checkbox]{margin:0 .2rem 0 0 !important;} & label {font-size: var(--wp--preset--font-size--small); }"
     246                    },
     247                    "core/search": {
     248                        "css": "& .wp-block-search__input{border-color: color-mix(in srgb, currentColor 20%, transparent);}"
     249                    }
     250                }
    209251            }
    210252        }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/06-morning.json

    r59233 r59314  
    4949        },
    5050        "typography": {
     51            "fontFamilies": [
     52                {
     53                    "name": "Literata",
     54                    "slug": "literata",
     55                    "fontFamily": "Literata, serif",
     56                    "fontFace": [
     57                        {
     58                            "src": [
     59                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     60                            ],
     61                            "fontWeight": "200",
     62                            "fontStyle": "normal",
     63                            "fontFamily": "Literata"
     64                        },
     65                        {
     66                            "src": [
     67                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     68                            ],
     69                            "fontWeight": "200",
     70                            "fontStyle": "italic",
     71                            "fontFamily": "Literata"
     72                        },
     73                        {
     74                            "src": [
     75                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     76                            ],
     77                            "fontWeight": "300",
     78                            "fontStyle": "normal",
     79                            "fontFamily": "Literata"
     80                        },
     81                        {
     82                            "src": [
     83                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     84                            ],
     85                            "fontWeight": "300",
     86                            "fontStyle": "italic",
     87                            "fontFamily": "Literata"
     88                        },
     89                        {
     90                            "src": [
     91                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     92                            ],
     93                            "fontWeight": "400",
     94                            "fontStyle": "normal",
     95                            "fontFamily": "Literata"
     96                        },
     97                        {
     98                            "src": [
     99                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     100                            ],
     101                            "fontWeight": "400",
     102                            "fontStyle": "italic",
     103                            "fontFamily": "Literata"
     104                        },
     105                        {
     106                            "src": [
     107                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     108                            ],
     109                            "fontWeight": "500",
     110                            "fontStyle": "normal",
     111                            "fontFamily": "Literata"
     112                        },
     113                        {
     114                            "src": [
     115                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     116                            ],
     117                            "fontWeight": "500",
     118                            "fontStyle": "italic",
     119                            "fontFamily": "Literata"
     120                        },
     121                        {
     122                            "src": [
     123                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     124                            ],
     125                            "fontWeight": "600",
     126                            "fontStyle": "normal",
     127                            "fontFamily": "Literata"
     128                        },
     129                        {
     130                            "src": [
     131                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     132                            ],
     133                            "fontWeight": "600",
     134                            "fontStyle": "italic",
     135                            "fontFamily": "Literata"
     136                        },
     137                        {
     138                            "src": [
     139                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     140                            ],
     141                            "fontWeight": "700",
     142                            "fontStyle": "normal",
     143                            "fontFamily": "Literata"
     144                        },
     145                        {
     146                            "src": [
     147                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     148                            ],
     149                            "fontWeight": "700",
     150                            "fontStyle": "italic",
     151                            "fontFamily": "Literata"
     152                        },
     153                        {
     154                            "src": [
     155                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     156                            ],
     157                            "fontWeight": "800",
     158                            "fontStyle": "normal",
     159                            "fontFamily": "Literata"
     160                        },
     161                        {
     162                            "src": [
     163                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     164                            ],
     165                            "fontWeight": "800",
     166                            "fontStyle": "italic",
     167                            "fontFamily": "Literata"
     168                        },
     169                        {
     170                            "src": [
     171                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     172                            ],
     173                            "fontWeight": "900",
     174                            "fontStyle": "normal",
     175                            "fontFamily": "Literata"
     176                        },
     177                        {
     178                            "src": [
     179                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     180                            ],
     181                            "fontWeight": "900",
     182                            "fontStyle": "italic",
     183                            "fontFamily": "Literata"
     184                        }
     185                    ]
     186                },
     187                {
     188                    "name": "Ysabeau Office",
     189                    "slug": "ysabeau-office",
     190                    "fontFamily": "\"Ysabeau Office\", sans-serif",
     191                    "fontFace": [
     192                        {
     193                            "src": [
     194                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
     195                            ],
     196                            "fontWeight": "100 900",
     197                            "fontStyle": "normal",
     198                            "fontFamily": "\"Ysabeau Office\""
     199                        },
     200                        {
     201                            "src": [
     202                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
     203                            ],
     204                            "fontWeight": "100 900",
     205                            "fontStyle": "italic",
     206                            "fontFamily": "\"Ysabeau Office\""
     207                        }
     208                    ]
     209                }
     210            ],
    51211            "fontSizes": [
    52212                {
     
    129289                        "color": {
    130290                            "text": "var:preset|color|contrast"
    131                         },
    132                         "typography": {
    133                             "textDecoration": "underline"
    134                         },
    135                         ":hover": {
    136                             "typography": {
    137                                 "textDecoration": "none"
    138                             }
    139291                        }
    140292                    }
     
    261413                            "radius": "100px",
    262414                            "color": "var:preset|color|accent-5"
    263                         },
    264                         "typography": {
    265                             "textDecoration": "none"
    266                         },
    267                         ":hover": {
    268                             "typography": {
    269                                 "textDecoration": "underline"
    270                             }
    271415                        }
    272416                    }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/07-sunrise.json

    r59271 r59314  
    4545                    "name": "Accent 6",
    4646                    "slug": "accent-6"
     47                }
     48            ]
     49        },
     50        "typography": {
     51            "fontFamilies": [
     52                {
     53                    "name": "Platypi",
     54                    "slug": "platypi",
     55                    "fontFamily": "Platypi",
     56                    "fontFace": [
     57                        {
     58                            "fontFamily": "Platypi",
     59                            "fontStyle": "normal",
     60                            "fontWeight": "300 800",
     61                            "src": [
     62                                "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
     63                            ]
     64                        },
     65                        {
     66                            "fontFamily": "Platypi",
     67                            "fontStyle": "italic",
     68                            "fontWeight": "300 800",
     69                            "src": [
     70                                "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
     71                            ]
     72                        }
     73                    ]
     74                },
     75                {
     76                    "name": "Literata",
     77                    "slug": "literata",
     78                    "fontFamily": "Literata, serif",
     79                    "fontFace": [
     80                        {
     81                            "src": [
     82                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     83                            ],
     84                            "fontWeight": "200",
     85                            "fontStyle": "normal",
     86                            "fontFamily": "Literata"
     87                        },
     88                        {
     89                            "src": [
     90                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     91                            ],
     92                            "fontWeight": "200",
     93                            "fontStyle": "italic",
     94                            "fontFamily": "Literata"
     95                        },
     96                        {
     97                            "src": [
     98                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     99                            ],
     100                            "fontWeight": "300",
     101                            "fontStyle": "normal",
     102                            "fontFamily": "Literata"
     103                        },
     104                        {
     105                            "src": [
     106                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     107                            ],
     108                            "fontWeight": "300",
     109                            "fontStyle": "italic",
     110                            "fontFamily": "Literata"
     111                        },
     112                        {
     113                            "src": [
     114                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     115                            ],
     116                            "fontWeight": "400",
     117                            "fontStyle": "normal",
     118                            "fontFamily": "Literata"
     119                        },
     120                        {
     121                            "src": [
     122                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     123                            ],
     124                            "fontWeight": "400",
     125                            "fontStyle": "italic",
     126                            "fontFamily": "Literata"
     127                        },
     128                        {
     129                            "src": [
     130                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     131                            ],
     132                            "fontWeight": "500",
     133                            "fontStyle": "normal",
     134                            "fontFamily": "Literata"
     135                        },
     136                        {
     137                            "src": [
     138                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     139                            ],
     140                            "fontWeight": "500",
     141                            "fontStyle": "italic",
     142                            "fontFamily": "Literata"
     143                        },
     144                        {
     145                            "src": [
     146                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     147                            ],
     148                            "fontWeight": "600",
     149                            "fontStyle": "normal",
     150                            "fontFamily": "Literata"
     151                        },
     152                        {
     153                            "src": [
     154                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     155                            ],
     156                            "fontWeight": "600",
     157                            "fontStyle": "italic",
     158                            "fontFamily": "Literata"
     159                        },
     160                        {
     161                            "src": [
     162                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     163                            ],
     164                            "fontWeight": "700",
     165                            "fontStyle": "normal",
     166                            "fontFamily": "Literata"
     167                        },
     168                        {
     169                            "src": [
     170                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     171                            ],
     172                            "fontWeight": "700",
     173                            "fontStyle": "italic",
     174                            "fontFamily": "Literata"
     175                        },
     176                        {
     177                            "src": [
     178                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     179                            ],
     180                            "fontWeight": "800",
     181                            "fontStyle": "normal",
     182                            "fontFamily": "Literata"
     183                        },
     184                        {
     185                            "src": [
     186                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     187                            ],
     188                            "fontWeight": "800",
     189                            "fontStyle": "italic",
     190                            "fontFamily": "Literata"
     191                        },
     192                        {
     193                            "src": [
     194                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     195                            ],
     196                            "fontWeight": "900",
     197                            "fontStyle": "normal",
     198                            "fontFamily": "Literata"
     199                        },
     200                        {
     201                            "src": [
     202                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     203                            ],
     204                            "fontWeight": "900",
     205                            "fontStyle": "italic",
     206                            "fontFamily": "Literata"
     207                        }
     208                    ]
    47209                }
    48210            ]
     
    79241                        "color": {
    80242                            "text": "var:preset|color|contrast"
    81                         },
    82                         "typography": {
    83                             "textDecoration": "underline"
    84                         },
    85                         ":hover": {
    86                             "typography": {
    87                                 "textDecoration": "none"
    88                             }
    89243                        }
    90244                    }
     
    102256                        "color": {
    103257                            "text": "var:preset|color|contrast"
    104                         },
    105                         "typography": {
    106                             "textDecoration": "underline"
    107                         },
    108                         ":hover": {
    109                             "typography": {
    110                                 "textDecoration": "none"
    111                             }
    112258                        }
    113259                    }
     
    234380                            "radius": "100px",
    235381                            "color": "var:preset|color|accent-5"
    236                         },
    237                         "typography": {
    238                             "textDecoration": "none"
    239                         },
    240                         ":hover": {
    241                             "typography": {
    242                                 "textDecoration": "underline"
    243                             }
    244382                        }
    245383                    }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/08-midnight.json

    r59233 r59314  
    101101                    "size": "2rem",
    102102                    "slug": "xx-large"
     103                }
     104            ],
     105            "fontFamilies": [
     106                {
     107                    "name": "Literata",
     108                    "slug": "literata",
     109                    "fontFamily": "Literata, serif",
     110                    "fontFace": [
     111                        {
     112                            "src": [
     113                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     114                            ],
     115                            "fontWeight": "200",
     116                            "fontStyle": "normal",
     117                            "fontFamily": "Literata"
     118                        },
     119                        {
     120                            "src": [
     121                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     122                            ],
     123                            "fontWeight": "200",
     124                            "fontStyle": "italic",
     125                            "fontFamily": "Literata"
     126                        },
     127                        {
     128                            "src": [
     129                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     130                            ],
     131                            "fontWeight": "300",
     132                            "fontStyle": "normal",
     133                            "fontFamily": "Literata"
     134                        },
     135                        {
     136                            "src": [
     137                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     138                            ],
     139                            "fontWeight": "300",
     140                            "fontStyle": "italic",
     141                            "fontFamily": "Literata"
     142                        },
     143                        {
     144                            "src": [
     145                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     146                            ],
     147                            "fontWeight": "400",
     148                            "fontStyle": "normal",
     149                            "fontFamily": "Literata"
     150                        },
     151                        {
     152                            "src": [
     153                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     154                            ],
     155                            "fontWeight": "400",
     156                            "fontStyle": "italic",
     157                            "fontFamily": "Literata"
     158                        },
     159                        {
     160                            "src": [
     161                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     162                            ],
     163                            "fontWeight": "500",
     164                            "fontStyle": "normal",
     165                            "fontFamily": "Literata"
     166                        },
     167                        {
     168                            "src": [
     169                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     170                            ],
     171                            "fontWeight": "500",
     172                            "fontStyle": "italic",
     173                            "fontFamily": "Literata"
     174                        },
     175                        {
     176                            "src": [
     177                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     178                            ],
     179                            "fontWeight": "600",
     180                            "fontStyle": "normal",
     181                            "fontFamily": "Literata"
     182                        },
     183                        {
     184                            "src": [
     185                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     186                            ],
     187                            "fontWeight": "600",
     188                            "fontStyle": "italic",
     189                            "fontFamily": "Literata"
     190                        },
     191                        {
     192                            "src": [
     193                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     194                            ],
     195                            "fontWeight": "700",
     196                            "fontStyle": "normal",
     197                            "fontFamily": "Literata"
     198                        },
     199                        {
     200                            "src": [
     201                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     202                            ],
     203                            "fontWeight": "700",
     204                            "fontStyle": "italic",
     205                            "fontFamily": "Literata"
     206                        },
     207                        {
     208                            "src": [
     209                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     210                            ],
     211                            "fontWeight": "800",
     212                            "fontStyle": "normal",
     213                            "fontFamily": "Literata"
     214                        },
     215                        {
     216                            "src": [
     217                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     218                            ],
     219                            "fontWeight": "800",
     220                            "fontStyle": "italic",
     221                            "fontFamily": "Literata"
     222                        },
     223                        {
     224                            "src": [
     225                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     226                            ],
     227                            "fontWeight": "900",
     228                            "fontStyle": "normal",
     229                            "fontFamily": "Literata"
     230                        },
     231                        {
     232                            "src": [
     233                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     234                            ],
     235                            "fontWeight": "900",
     236                            "fontStyle": "italic",
     237                            "fontFamily": "Literata"
     238                        }
     239                    ]
     240                },
     241                {
     242                    "name": "Fira Sans",
     243                    "slug": "fira-sans",
     244                    "fontFamily": "\"Fira Sans\", sans-serif",
     245                    "fontFace": [
     246                        {
     247                            "src": [
     248                                "file:./assets/fonts/fira-sans/FiraSans-Thin.woff2"
     249                            ],
     250                            "fontWeight": "100",
     251                            "fontStyle": "normal",
     252                            "fontFamily": "\"Fira Sans\""
     253                        },
     254                        {
     255                            "src": [
     256                                "file:./assets/fonts/fira-sans/FiraSans-ThinItalic.woff2"
     257                            ],
     258                            "fontWeight": "100",
     259                            "fontStyle": "italic",
     260                            "fontFamily": "\"Fira Sans\""
     261                        },
     262                        {
     263                            "src": [
     264                                "file:./assets/fonts/fira-sans/FiraSans-ExtraLight.woff2"
     265                            ],
     266                            "fontWeight": "200",
     267                            "fontStyle": "normal",
     268                            "fontFamily": "\"Fira Sans\""
     269                        },
     270                        {
     271                            "src": [
     272                                "file:./assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2"
     273                            ],
     274                            "fontWeight": "200",
     275                            "fontStyle": "italic",
     276                            "fontFamily": "\"Fira Sans\""
     277                        },
     278                        {
     279                            "src": [
     280                                "file:./assets/fonts/fira-sans/FiraSans-Light.woff2"
     281                            ],
     282                            "fontWeight": "300",
     283                            "fontStyle": "normal",
     284                            "fontFamily": "\"Fira Sans\""
     285                        },
     286                        {
     287                            "src": [
     288                                "file:./assets/fonts/fira-sans/FiraSans-LightItalic.woff2"
     289                            ],
     290                            "fontWeight": "300",
     291                            "fontStyle": "italic",
     292                            "fontFamily": "\"Fira Sans\""
     293                        },
     294                        {
     295                            "src": [
     296                                "file:./assets/fonts/fira-sans/FiraSans-Italic.woff2"
     297                            ],
     298                            "fontWeight": "400",
     299                            "fontStyle": "italic",
     300                            "fontFamily": "\"Fira Sans\""
     301                        },
     302                        {
     303                            "src": [
     304                                "file:./assets/fonts/fira-sans/FiraSans-Regular.woff2"
     305                            ],
     306                            "fontWeight": "400",
     307                            "fontStyle": "normal",
     308                            "fontFamily": "\"Fira Sans\""
     309                        },
     310                        {
     311                            "src": [
     312                                "file:./assets/fonts/fira-sans/FiraSans-Medium.woff2"
     313                            ],
     314                            "fontWeight": "500",
     315                            "fontStyle": "normal",
     316                            "fontFamily": "\"Fira Sans\""
     317                        },
     318                        {
     319                            "src": [
     320                                "file:./assets/fonts/fira-sans/FiraSans-MediumItalic.woff2"
     321                            ],
     322                            "fontWeight": "500",
     323                            "fontStyle": "italic",
     324                            "fontFamily": "\"Fira Sans\""
     325                        },
     326                        {
     327                            "src": [
     328                                "file:./assets/fonts/fira-sans/FiraSans-SemiBold.woff2"
     329                            ],
     330                            "fontWeight": "600",
     331                            "fontStyle": "normal",
     332                            "fontFamily": "\"Fira Sans\""
     333                        },
     334                        {
     335                            "src": [
     336                                "file:./assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2"
     337                            ],
     338                            "fontWeight": "600",
     339                            "fontStyle": "italic",
     340                            "fontFamily": "\"Fira Sans\""
     341                        },
     342                        {
     343                            "src": [
     344                                "file:./assets/fonts/fira-sans/FiraSans-Bold.woff2"
     345                            ],
     346                            "fontWeight": "700",
     347                            "fontStyle": "normal",
     348                            "fontFamily": "\"Fira Sans\""
     349                        },
     350                        {
     351                            "src": [
     352                                "file:./assets/fonts/fira-sans/FiraSans-BoldItalic.woff2"
     353                            ],
     354                            "fontWeight": "700",
     355                            "fontStyle": "italic",
     356                            "fontFamily": "\"Fira Sans\""
     357                        },
     358                        {
     359                            "src": [
     360                                "file:./assets/fonts/fira-sans/FiraSans-ExtraBold.woff2"
     361                            ],
     362                            "fontWeight": "800",
     363                            "fontStyle": "normal",
     364                            "fontFamily": "\"Fira Sans\""
     365                        },
     366                        {
     367                            "src": [
     368                                "file:./assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2"
     369                            ],
     370                            "fontWeight": "800",
     371                            "fontStyle": "italic",
     372                            "fontFamily": "\"Fira Sans\""
     373                        },
     374                        {
     375                            "src": [
     376                                "file:./assets/fonts/fira-sans/FiraSans-Black.woff2"
     377                            ],
     378                            "fontWeight": "900",
     379                            "fontStyle": "normal",
     380                            "fontFamily": "\"Fira Sans\""
     381                        },
     382                        {
     383                            "src": [
     384                                "file:./assets/fonts/fira-sans/FiraSans-BlackItalic.woff2"
     385                            ],
     386                            "fontWeight": "900",
     387                            "fontStyle": "italic",
     388                            "fontFamily": "\"Fira Sans\""
     389                        }
     390                    ]
    103391                }
    104392            ]
  • trunk/src/wp-content/themes/twentytwentyfive/styles/blocks/post-terms-1.json

    r59233 r59314  
    2424                "typography": {
    2525                    "fontWeight": "400",
    26                     "lineHeight": "2.8"
     26                    "lineHeight": "2.8",
     27                    "textDecoration": "none"
     28                },
     29                ":hover": {
     30                    "typography": {
     31                        "textDecoration": "underline"
     32                    }
    2733                }
    2834            }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/colors/06-morning.json

    r59233 r59314  
    193193                        ":hover": {
    194194                            "color": {
    195                                 "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
     195                                "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)",
     196                                "text": "var:preset|color|contrast"
    196197                        }
    197198                    }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/colors/08-midnight.json

    r59233 r59314  
    55    "settings": {
    66        "color": {
     7            "duotone": [
     8                {
     9                    "colors": [
     10                        "#4433A6",
     11                        "#79F3B1"
     12                    ],
     13                    "name": "Midnight filter",
     14                    "slug": "midnight-filter"
     15                }
     16            ],
    717            "palette": [
    818                {
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-1.json

    r59233 r59314  
    66    "settings": {
    77        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Beiruti",
     11                    "slug": "beiruti",
     12                    "fontFamily": "Beiruti, sans-serif",
     13                    "fontFace": [
     14                        {
     15                            "fontFamily": "Beiruti",
     16                            "fontStyle": "normal",
     17                            "fontWeight": "200 900",
     18                            "src": [
     19                                "file:./assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2"
     20                            ]
     21                        }
     22                    ]
     23                },
     24                {
     25                    "name": "Literata",
     26                    "slug": "literata",
     27                    "fontFamily": "Literata, serif",
     28                    "fontFace": [
     29                        {
     30                            "src": [
     31                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     32                            ],
     33                            "fontWeight": "200",
     34                            "fontStyle": "normal",
     35                            "fontFamily": "Literata"
     36                        },
     37                        {
     38                            "src": [
     39                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     40                            ],
     41                            "fontWeight": "200",
     42                            "fontStyle": "italic",
     43                            "fontFamily": "Literata"
     44                        },
     45                        {
     46                            "src": [
     47                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     48                            ],
     49                            "fontWeight": "300",
     50                            "fontStyle": "normal",
     51                            "fontFamily": "Literata"
     52                        },
     53                        {
     54                            "src": [
     55                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     56                            ],
     57                            "fontWeight": "300",
     58                            "fontStyle": "italic",
     59                            "fontFamily": "Literata"
     60                        },
     61                        {
     62                            "src": [
     63                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     64                            ],
     65                            "fontWeight": "400",
     66                            "fontStyle": "normal",
     67                            "fontFamily": "Literata"
     68                        },
     69                        {
     70                            "src": [
     71                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     72                            ],
     73                            "fontWeight": "400",
     74                            "fontStyle": "italic",
     75                            "fontFamily": "Literata"
     76                        },
     77                        {
     78                            "src": [
     79                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     80                            ],
     81                            "fontWeight": "500",
     82                            "fontStyle": "normal",
     83                            "fontFamily": "Literata"
     84                        },
     85                        {
     86                            "src": [
     87                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     88                            ],
     89                            "fontWeight": "500",
     90                            "fontStyle": "italic",
     91                            "fontFamily": "Literata"
     92                        },
     93                        {
     94                            "src": [
     95                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     96                            ],
     97                            "fontWeight": "600",
     98                            "fontStyle": "normal",
     99                            "fontFamily": "Literata"
     100                        },
     101                        {
     102                            "src": [
     103                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     104                            ],
     105                            "fontWeight": "600",
     106                            "fontStyle": "italic",
     107                            "fontFamily": "Literata"
     108                        },
     109                        {
     110                            "src": [
     111                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     112                            ],
     113                            "fontWeight": "700",
     114                            "fontStyle": "normal",
     115                            "fontFamily": "Literata"
     116                        },
     117                        {
     118                            "src": [
     119                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     120                            ],
     121                            "fontWeight": "700",
     122                            "fontStyle": "italic",
     123                            "fontFamily": "Literata"
     124                        },
     125                        {
     126                            "src": [
     127                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     128                            ],
     129                            "fontWeight": "800",
     130                            "fontStyle": "normal",
     131                            "fontFamily": "Literata"
     132                        },
     133                        {
     134                            "src": [
     135                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     136                            ],
     137                            "fontWeight": "800",
     138                            "fontStyle": "italic",
     139                            "fontFamily": "Literata"
     140                        },
     141                        {
     142                            "src": [
     143                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     144                            ],
     145                            "fontWeight": "900",
     146                            "fontStyle": "normal",
     147                            "fontFamily": "Literata"
     148                        },
     149                        {
     150                            "src": [
     151                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     152                            ],
     153                            "fontWeight": "900",
     154                            "fontStyle": "italic",
     155                            "fontFamily": "Literata"
     156                        }
     157                    ]
     158                }
     159            ],
    8160            "fontSizes": [
    9161                {
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-2.json

    r59233 r59314  
    44    "title": "Vollkorn & Fira Code",
    55    "slug": "typography-preset-2",
     6    "settings": {
     7        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Vollkorn",
     11                    "slug": "vollkorn",
     12                    "fontFamily": "Vollkorn, serif",
     13                    "fontFace": [
     14                        {
     15                            "src": [
     16                                "file:./assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2"
     17                            ],
     18                            "fontWeight": "400 900",
     19                            "fontStyle": "italic",
     20                            "fontFamily": "Vollkorn"
     21                        },
     22                        {
     23                            "src": [
     24                                "file:./assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2"
     25                            ],
     26                            "fontWeight": "400 900",
     27                            "fontStyle": "normal",
     28                            "fontFamily": "Vollkorn"
     29                        }
     30                    ]
     31                },
     32                {
     33                    "name": "Fira Code",
     34                    "slug": "fira-code",
     35                    "fontFamily": "\"Fira Code\", monospace",
     36                    "fontFace": [
     37                        {
     38                            "src": [
     39                                "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
     40                            ],
     41                            "fontWeight": "300 700",
     42                            "fontStyle": "normal",
     43                            "fontFamily": "\"Fira Code\""
     44                        }
     45                    ]
     46                }
     47            ]
     48        }
     49    },
    650    "styles": {
    751        "typography": {
     
    1559                "typography": {
    1660                    "fontWeight": "300"
    17                 },
    18                 "elements": {
    19                     "link": {
    20                         "typography": {
    21                             "textDecoration": "underline"
    22                         },
    23                         ":hover": {
    24                             "typography": {
    25                                 "textDecoration": "none"
    26                             }
    27                         }
    28                     }
    2961                }
    3062            },
     
    3264                "typography": {
    3365                    "fontWeight": "300"
    34                 },
    35                 "elements": {
    36                     "link": {
    37                         "typography": {
    38                             "textDecoration": "underline"
    39                         },
    40                         ":hover": {
    41                             "typography": {
    42                                 "textDecoration": "none"
    43                             }
    44                         }
    45                     }
    4666                }
    4767            },
     
    126146                }
    127147            }
    128         },
    129         "variations": {
    130             "post-terms-1": {
    131                 "elements": {
    132                     "link": {
    133                         "typography": {
    134                             "textDecoration": "none"
    135                         },
    136                         ":hover": {
    137                             "typography": {
    138                                 "textDecoration": "underline"
    139                             }
    140                         }
    141                     }
    142                 }
    143             }
    144148        }
    145149    }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-3.json

    r59233 r59314  
    66    "settings": {
    77        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Platypi",
     11                    "slug": "platypi",
     12                    "fontFamily": "Platypi",
     13                    "fontFace": [
     14                        {
     15                            "fontFamily": "Platypi",
     16                            "fontStyle": "normal",
     17                            "fontWeight": "300 800",
     18                            "src": [
     19                                "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
     20                            ]
     21                        },
     22                        {
     23                            "fontFamily": "Platypi",
     24                            "fontStyle": "italic",
     25                            "fontWeight": "300 800",
     26                            "src": [
     27                                "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
     28                            ]
     29                        }
     30                    ]
     31                },
     32                {
     33                    "name": "Ysabeau Office",
     34                    "slug": "ysabeau-office",
     35                    "fontFamily": "\"Ysabeau Office\", sans-serif",
     36                    "fontFace": [
     37                        {
     38                            "src": [
     39                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
     40                            ],
     41                            "fontWeight": "100 900",
     42                            "fontStyle": "normal",
     43                            "fontFamily": "\"Ysabeau Office\""
     44                        },
     45                        {
     46                            "src": [
     47                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
     48                            ],
     49                            "fontWeight": "100 900",
     50                            "fontStyle": "italic",
     51                            "fontFamily": "\"Ysabeau Office\""
     52                        }
     53                    ]
     54                }
     55            ],
    856            "fontSizes": [
    957                {
     
    3381                {
    3482                    "fluid": {
    35                         "max": "2rem",
    36                         "min": "1.75rem"
     83                        "max": "1.8rem",
     84                        "min": "1.4rem"
    3785                    },
    3886                    "name": "Extra Large",
    39                     "size": "1.75rem",
     87                    "size": "1.4rem",
    4088                    "slug": "x-large"
    4189                },
    4290                {
    4391                    "fluid": {
    44                         "max": "3.625rem",
    45                         "min": "2.625rem"
     92                        "max": "2.6rem",
     93                        "min": "2rem"
    4694                    },
    4795                    "name": "Extra Extra Large",
    48                     "size": "2.625rem",
     96                    "size": "2rem",
    4997                    "slug": "xx-large"
    5098                }
     
    55103        "typography": {
    56104            "fontFamily": "var:preset|font-family|ysabeau-office",
    57             "fontWeight": "400",
    58105            "letterSpacing": "-0.22px",
    59             "lineHeight": "1.6"
     106            "lineHeight": "1.5"
    60107        },
    61108        "blocks":{
     
    63110                "typography": {
    64111                    "letterSpacing": "0px"
     112                }
     113            },
     114            "core/heading": {
     115                "typography": {
     116                    "lineHeight": "1.2"
    65117                }
    66118            },
     
    75127                }
    76128            },
    77             "core/post-author": {
    78                 "typography": {
    79                     "fontSize": "var:preset|font-size|medium"
    80                 }
    81             },
    82             "core/post-author-biography": {
    83                 "typography": {
    84                     "fontSize": "var:preset|font-size|medium"
    85                 }
    86             },
    87             "core/post-author-name": {
    88                 "typography": {
    89                     "fontSize": "var:preset|font-size|medium"
    90                 }
    91             },
    92129            "core/post-terms": {
    93130                "typography": {
    94131                    "fontWeight": "400"
    95                 }
    96             },
    97             "core/post-title": {
    98                 "typography": {
    99                     "fontWeight": "500",
    100                     "letterSpacing": "-0.8px"
    101132                }
    102133            },
     
    116147                "typography": {
    117148                    "fontFamily": "var:preset|font-family|ysabeau-office",
    118                     "fontSize": "var:preset|font-size|medium",
     149                    "fontSize": "var:preset|font-size|large",
    119150                    "letterSpacing": "1.44px",
    120151                    "textTransform": "uppercase"
     
    135166                    "fontFamily": "var:preset|font-family|platypi"
    136167                }
     168            },
     169            "h5": {
     170                "typography": {
     171                    "fontSize": "var:preset|font-size|medium",
     172                    "letterSpacing": "normal"
     173                }
     174            },
     175            "h6": {
     176                "typography": {
     177                    "fontSize": "var:preset|font-size|small",
     178                    "fontWeight": "400",
     179                    "fontStyle": "initial",
     180                    "letterSpacing": "initial",
     181                    "textTransform": "initial"
     182                }
    137183            }
    138184        }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-4.json

    r59233 r59314  
    66    "settings": {
    77        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Roboto Slab",
     11                    "slug": "roboto-slab",
     12                    "fontFamily": "\"Roboto Slab\", serif",
     13                    "fontFace": [
     14                        {
     15                            "fontFamily": "\"Roboto Slab\"",
     16                            "fontStyle": "normal",
     17                            "fontWeight": "100 900",
     18                            "src": [
     19                                "file:./assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2"
     20                            ]
     21                        }
     22                    ]
     23                },
     24                {
     25                    "name": "Manrope",
     26                    "slug": "manrope",
     27                    "fontFamily": "Manrope, sans-serif",
     28                    "fontFace": [
     29                        {
     30                            "src": [
     31                                "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
     32                            ],
     33                            "fontWeight": "200 800",
     34                            "fontStyle": "normal",
     35                            "fontFamily": "Manrope"
     36                        }
     37                    ]
     38                }
     39            ],
    840            "fontSizes": [
    941                {
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-5.json

    r59233 r59314  
    66    "settings": {
    77        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Literata",
     11                    "slug": "literata",
     12                    "fontFamily": "Literata, serif",
     13                    "fontFace": [
     14                        {
     15                            "src": [
     16                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     17                            ],
     18                            "fontWeight": "200",
     19                            "fontStyle": "normal",
     20                            "fontFamily": "Literata"
     21                        },
     22                        {
     23                            "src": [
     24                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     25                            ],
     26                            "fontWeight": "200",
     27                            "fontStyle": "italic",
     28                            "fontFamily": "Literata"
     29                        },
     30                        {
     31                            "src": [
     32                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     33                            ],
     34                            "fontWeight": "300",
     35                            "fontStyle": "normal",
     36                            "fontFamily": "Literata"
     37                        },
     38                        {
     39                            "src": [
     40                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     41                            ],
     42                            "fontWeight": "300",
     43                            "fontStyle": "italic",
     44                            "fontFamily": "Literata"
     45                        },
     46                        {
     47                            "src": [
     48                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     49                            ],
     50                            "fontWeight": "400",
     51                            "fontStyle": "normal",
     52                            "fontFamily": "Literata"
     53                        },
     54                        {
     55                            "src": [
     56                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     57                            ],
     58                            "fontWeight": "400",
     59                            "fontStyle": "italic",
     60                            "fontFamily": "Literata"
     61                        },
     62                        {
     63                            "src": [
     64                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     65                            ],
     66                            "fontWeight": "500",
     67                            "fontStyle": "normal",
     68                            "fontFamily": "Literata"
     69                        },
     70                        {
     71                            "src": [
     72                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     73                            ],
     74                            "fontWeight": "500",
     75                            "fontStyle": "italic",
     76                            "fontFamily": "Literata"
     77                        },
     78                        {
     79                            "src": [
     80                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     81                            ],
     82                            "fontWeight": "600",
     83                            "fontStyle": "normal",
     84                            "fontFamily": "Literata"
     85                        },
     86                        {
     87                            "src": [
     88                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     89                            ],
     90                            "fontWeight": "600",
     91                            "fontStyle": "italic",
     92                            "fontFamily": "Literata"
     93                        },
     94                        {
     95                            "src": [
     96                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     97                            ],
     98                            "fontWeight": "700",
     99                            "fontStyle": "normal",
     100                            "fontFamily": "Literata"
     101                        },
     102                        {
     103                            "src": [
     104                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     105                            ],
     106                            "fontWeight": "700",
     107                            "fontStyle": "italic",
     108                            "fontFamily": "Literata"
     109                        },
     110                        {
     111                            "src": [
     112                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     113                            ],
     114                            "fontWeight": "800",
     115                            "fontStyle": "normal",
     116                            "fontFamily": "Literata"
     117                        },
     118                        {
     119                            "src": [
     120                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     121                            ],
     122                            "fontWeight": "800",
     123                            "fontStyle": "italic",
     124                            "fontFamily": "Literata"
     125                        },
     126                        {
     127                            "src": [
     128                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     129                            ],
     130                            "fontWeight": "900",
     131                            "fontStyle": "normal",
     132                            "fontFamily": "Literata"
     133                        },
     134                        {
     135                            "src": [
     136                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     137                            ],
     138                            "fontWeight": "900",
     139                            "fontStyle": "italic",
     140                            "fontFamily": "Literata"
     141                        }
     142                    ]
     143                },
     144                {
     145                    "name": "Ysabeau Office",
     146                    "slug": "ysabeau-office",
     147                    "fontFamily": "\"Ysabeau Office\", sans-serif",
     148                    "fontFace": [
     149                        {
     150                            "src": [
     151                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
     152                            ],
     153                            "fontWeight": "100 900",
     154                            "fontStyle": "normal",
     155                            "fontFamily": "\"Ysabeau Office\""
     156                        },
     157                        {
     158                            "src": [
     159                                "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
     160                            ],
     161                            "fontWeight": "100 900",
     162                            "fontStyle": "italic",
     163                            "fontFamily": "\"Ysabeau Office\""
     164                        }
     165                    ]
     166                }
     167            ],
    8168            "fontSizes": [
    9169                {
     
    63223                }
    64224            },
    65             "core/post-author-name": {
    66                 "elements": {
    67                     "link": {
    68                         "typography": {
    69                             "textDecoration": "underline"
    70                         },
    71                         ":hover": {
    72                             "typography": {
    73                                 "textDecoration": "none"
    74                             }
    75                         }
    76                     }
    77                 }
    78             },
    79225            "core/post-title": {
    80226                "typography": {
     
    151297                "typography": {
    152298                    "fontSize": "var:preset|font-size|medium"
    153                 },
    154                 "elements": {
    155                     "link": {
    156                         "typography": {
    157                             "textDecoration": "none"
    158                         },
    159                         ":hover": {
    160                             "typography": {
    161                                 "textDecoration": "underline"
    162                             }
    163                         }
    164                     }
    165299                }
    166300            }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-6.json

    r59271 r59314  
    44    "title": "Platypi & Literata",
    55    "slug": "typography-preset-6",
     6    "settings": {
     7        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Platypi",
     11                    "slug": "platypi",
     12                    "fontFamily": "Platypi",
     13                    "fontFace": [
     14                        {
     15                            "fontFamily": "Platypi",
     16                            "fontStyle": "normal",
     17                            "fontWeight": "300 800",
     18                            "src": [
     19                                "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
     20                            ]
     21                        },
     22                        {
     23                            "fontFamily": "Platypi",
     24                            "fontStyle": "italic",
     25                            "fontWeight": "300 800",
     26                            "src": [
     27                                "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
     28                            ]
     29                        }
     30                    ]
     31                },
     32                {
     33                    "name": "Literata",
     34                    "slug": "literata",
     35                    "fontFamily": "Literata, serif",
     36                    "fontFace": [
     37                        {
     38                            "src": [
     39                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     40                            ],
     41                            "fontWeight": "200",
     42                            "fontStyle": "normal",
     43                            "fontFamily": "Literata"
     44                        },
     45                        {
     46                            "src": [
     47                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     48                            ],
     49                            "fontWeight": "200",
     50                            "fontStyle": "italic",
     51                            "fontFamily": "Literata"
     52                        },
     53                        {
     54                            "src": [
     55                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     56                            ],
     57                            "fontWeight": "300",
     58                            "fontStyle": "normal",
     59                            "fontFamily": "Literata"
     60                        },
     61                        {
     62                            "src": [
     63                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     64                            ],
     65                            "fontWeight": "300",
     66                            "fontStyle": "italic",
     67                            "fontFamily": "Literata"
     68                        },
     69                        {
     70                            "src": [
     71                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     72                            ],
     73                            "fontWeight": "400",
     74                            "fontStyle": "normal",
     75                            "fontFamily": "Literata"
     76                        },
     77                        {
     78                            "src": [
     79                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     80                            ],
     81                            "fontWeight": "400",
     82                            "fontStyle": "italic",
     83                            "fontFamily": "Literata"
     84                        },
     85                        {
     86                            "src": [
     87                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     88                            ],
     89                            "fontWeight": "500",
     90                            "fontStyle": "normal",
     91                            "fontFamily": "Literata"
     92                        },
     93                        {
     94                            "src": [
     95                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     96                            ],
     97                            "fontWeight": "500",
     98                            "fontStyle": "italic",
     99                            "fontFamily": "Literata"
     100                        },
     101                        {
     102                            "src": [
     103                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     104                            ],
     105                            "fontWeight": "600",
     106                            "fontStyle": "normal",
     107                            "fontFamily": "Literata"
     108                        },
     109                        {
     110                            "src": [
     111                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     112                            ],
     113                            "fontWeight": "600",
     114                            "fontStyle": "italic",
     115                            "fontFamily": "Literata"
     116                        },
     117                        {
     118                            "src": [
     119                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     120                            ],
     121                            "fontWeight": "700",
     122                            "fontStyle": "normal",
     123                            "fontFamily": "Literata"
     124                        },
     125                        {
     126                            "src": [
     127                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     128                            ],
     129                            "fontWeight": "700",
     130                            "fontStyle": "italic",
     131                            "fontFamily": "Literata"
     132                        },
     133                        {
     134                            "src": [
     135                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     136                            ],
     137                            "fontWeight": "800",
     138                            "fontStyle": "normal",
     139                            "fontFamily": "Literata"
     140                        },
     141                        {
     142                            "src": [
     143                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     144                            ],
     145                            "fontWeight": "800",
     146                            "fontStyle": "italic",
     147                            "fontFamily": "Literata"
     148                        },
     149                        {
     150                            "src": [
     151                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     152                            ],
     153                            "fontWeight": "900",
     154                            "fontStyle": "normal",
     155                            "fontFamily": "Literata"
     156                        },
     157                        {
     158                            "src": [
     159                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     160                            ],
     161                            "fontWeight": "900",
     162                            "fontStyle": "italic",
     163                            "fontFamily": "Literata"
     164                        }
     165                    ]
     166                }
     167            ]
     168        }
     169    },
    6170    "styles": {
    7171        "typography": {
     
    17181                }
    18182            },
    19             "core/post-author-name": {
    20                 "elements": {
    21                     "link": {
    22                         "typography": {
    23                             "textDecoration": "underline"
    24                         },
    25                         ":hover": {
    26                             "typography": {
    27                                 "textDecoration": "none"
    28                             }
    29                         }
    30                     }
    31                 }
    32             },
    33183            "core/post-terms": {
    34184                "typography": {
    35185                    "fontWeight": "400"
    36                 },
    37                 "elements": {
    38                     "link": {
    39                         "typography": {
    40                             "textDecoration": "underline"
    41                         },
    42                         ":hover": {
    43                             "typography": {
    44                                 "textDecoration": "none"
    45                             }
    46                         }
    47                     }
    48186                }
    49187            },
     
    85223                }
    86224            },
    87             "core/query-title": {
    88                 "typography": {
    89                     "fontWeight": "800"
    90                 }
    91             },
    92225            "core/site-title": {
    93226                "typography": {
     
    118251                "typography": {
    119252                    "fontSize": "16px"
    120                 },
    121                 "elements": {
    122                     "link": {
    123                         "typography": {
    124                             "textDecoration": "none"
    125                         },
    126                         ":hover": {
    127                             "typography": {
    128                                 "textDecoration": "underline"
    129                             }
    130                         }
    131                     }
    132253                }
    133254            }
  • trunk/src/wp-content/themes/twentytwentyfive/styles/typography/typography-preset-7.json

    r59233 r59314  
    66    "settings": {
    77        "typography": {
     8            "fontFamilies": [
     9                {
     10                    "name": "Literata",
     11                    "slug": "literata",
     12                    "fontFamily": "Literata, serif",
     13                    "fontFace": [
     14                        {
     15                            "src": [
     16                                "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
     17                            ],
     18                            "fontWeight": "200",
     19                            "fontStyle": "normal",
     20                            "fontFamily": "Literata"
     21                        },
     22                        {
     23                            "src": [
     24                                "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
     25                            ],
     26                            "fontWeight": "200",
     27                            "fontStyle": "italic",
     28                            "fontFamily": "Literata"
     29                        },
     30                        {
     31                            "src": [
     32                                "file:./assets/fonts/literata/Literata72pt-Light.woff2"
     33                            ],
     34                            "fontWeight": "300",
     35                            "fontStyle": "normal",
     36                            "fontFamily": "Literata"
     37                        },
     38                        {
     39                            "src": [
     40                                "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
     41                            ],
     42                            "fontWeight": "300",
     43                            "fontStyle": "italic",
     44                            "fontFamily": "Literata"
     45                        },
     46                        {
     47                            "src": [
     48                                "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
     49                            ],
     50                            "fontWeight": "400",
     51                            "fontStyle": "normal",
     52                            "fontFamily": "Literata"
     53                        },
     54                        {
     55                            "src": [
     56                                "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
     57                            ],
     58                            "fontWeight": "400",
     59                            "fontStyle": "italic",
     60                            "fontFamily": "Literata"
     61                        },
     62                        {
     63                            "src": [
     64                                "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
     65                            ],
     66                            "fontWeight": "500",
     67                            "fontStyle": "normal",
     68                            "fontFamily": "Literata"
     69                        },
     70                        {
     71                            "src": [
     72                                "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
     73                            ],
     74                            "fontWeight": "500",
     75                            "fontStyle": "italic",
     76                            "fontFamily": "Literata"
     77                        },
     78                        {
     79                            "src": [
     80                                "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
     81                            ],
     82                            "fontWeight": "600",
     83                            "fontStyle": "normal",
     84                            "fontFamily": "Literata"
     85                        },
     86                        {
     87                            "src": [
     88                                "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
     89                            ],
     90                            "fontWeight": "600",
     91                            "fontStyle": "italic",
     92                            "fontFamily": "Literata"
     93                        },
     94                        {
     95                            "src": [
     96                                "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
     97                            ],
     98                            "fontWeight": "700",
     99                            "fontStyle": "normal",
     100                            "fontFamily": "Literata"
     101                        },
     102                        {
     103                            "src": [
     104                                "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
     105                            ],
     106                            "fontWeight": "700",
     107                            "fontStyle": "italic",
     108                            "fontFamily": "Literata"
     109                        },
     110                        {
     111                            "src": [
     112                                "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
     113                            ],
     114                            "fontWeight": "800",
     115                            "fontStyle": "normal",
     116                            "fontFamily": "Literata"
     117                        },
     118                        {
     119                            "src": [
     120                                "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
     121                            ],
     122                            "fontWeight": "800",
     123                            "fontStyle": "italic",
     124                            "fontFamily": "Literata"
     125                        },
     126                        {
     127                            "src": [
     128                                "file:./assets/fonts/literata/Literata72pt-Black.woff2"
     129                            ],
     130                            "fontWeight": "900",
     131                            "fontStyle": "normal",
     132                            "fontFamily": "Literata"
     133                        },
     134                        {
     135                            "src": [
     136                                "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
     137                            ],
     138                            "fontWeight": "900",
     139                            "fontStyle": "italic",
     140                            "fontFamily": "Literata"
     141                        }
     142                    ]
     143                },
     144                {
     145                    "name": "Fira Sans",
     146                    "slug": "fira-sans",
     147                    "fontFamily": "\"Fira Sans\", sans-serif",
     148                    "fontFace": [
     149                        {
     150                            "src": [
     151                                "file:./assets/fonts/fira-sans/FiraSans-Thin.woff2"
     152                            ],
     153                            "fontWeight": "100",
     154                            "fontStyle": "normal",
     155                            "fontFamily": "\"Fira Sans\""
     156                        },
     157                        {
     158                            "src": [
     159                                "file:./assets/fonts/fira-sans/FiraSans-ThinItalic.woff2"
     160                            ],
     161                            "fontWeight": "100",
     162                            "fontStyle": "italic",
     163                            "fontFamily": "\"Fira Sans\""
     164                        },
     165                        {
     166                            "src": [
     167                                "file:./assets/fonts/fira-sans/FiraSans-ExtraLight.woff2"
     168                            ],
     169                            "fontWeight": "200",
     170                            "fontStyle": "normal",
     171                            "fontFamily": "\"Fira Sans\""
     172                        },
     173                        {
     174                            "src": [
     175                                "file:./assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2"
     176                            ],
     177                            "fontWeight": "200",
     178                            "fontStyle": "italic",
     179                            "fontFamily": "\"Fira Sans\""
     180                        },
     181                        {
     182                            "src": [
     183                                "file:./assets/fonts/fira-sans/FiraSans-Light.woff2"
     184                            ],
     185                            "fontWeight": "300",
     186                            "fontStyle": "normal",
     187                            "fontFamily": "\"Fira Sans\""
     188                        },
     189                        {
     190                            "src": [
     191                                "file:./assets/fonts/fira-sans/FiraSans-LightItalic.woff2"
     192                            ],
     193                            "fontWeight": "300",
     194                            "fontStyle": "italic",
     195                            "fontFamily": "\"Fira Sans\""
     196                        },
     197                        {
     198                            "src": [
     199                                "file:./assets/fonts/fira-sans/FiraSans-Italic.woff2"
     200                            ],
     201                            "fontWeight": "400",
     202                            "fontStyle": "italic",
     203                            "fontFamily": "\"Fira Sans\""
     204                        },
     205                        {
     206                            "src": [
     207                                "file:./assets/fonts/fira-sans/FiraSans-Regular.woff2"
     208                            ],
     209                            "fontWeight": "400",
     210                            "fontStyle": "normal",
     211                            "fontFamily": "\"Fira Sans\""
     212                        },
     213                        {
     214                            "src": [
     215                                "file:./assets/fonts/fira-sans/FiraSans-Medium.woff2"
     216                            ],
     217                            "fontWeight": "500",
     218                            "fontStyle": "normal",
     219                            "fontFamily": "\"Fira Sans\""
     220                        },
     221                        {
     222                            "src": [
     223                                "file:./assets/fonts/fira-sans/FiraSans-MediumItalic.woff2"
     224                            ],
     225                            "fontWeight": "500",
     226                            "fontStyle": "italic",
     227                            "fontFamily": "\"Fira Sans\""
     228                        },
     229                        {
     230                            "src": [
     231                                "file:./assets/fonts/fira-sans/FiraSans-SemiBold.woff2"
     232                            ],
     233                            "fontWeight": "600",
     234                            "fontStyle": "normal",
     235                            "fontFamily": "\"Fira Sans\""
     236                        },
     237                        {
     238                            "src": [
     239                                "file:./assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2"
     240                            ],
     241                            "fontWeight": "600",
     242                            "fontStyle": "italic",
     243                            "fontFamily": "\"Fira Sans\""
     244                        },
     245                        {
     246                            "src": [
     247                                "file:./assets/fonts/fira-sans/FiraSans-Bold.woff2"
     248                            ],
     249                            "fontWeight": "700",
     250                            "fontStyle": "normal",
     251                            "fontFamily": "\"Fira Sans\""
     252                        },
     253                        {
     254                            "src": [
     255                                "file:./assets/fonts/fira-sans/FiraSans-BoldItalic.woff2"
     256                            ],
     257                            "fontWeight": "700",
     258                            "fontStyle": "italic",
     259                            "fontFamily": "\"Fira Sans\""
     260                        },
     261                        {
     262                            "src": [
     263                                "file:./assets/fonts/fira-sans/FiraSans-ExtraBold.woff2"
     264                            ],
     265                            "fontWeight": "800",
     266                            "fontStyle": "normal",
     267                            "fontFamily": "\"Fira Sans\""
     268                        },
     269                        {
     270                            "src": [
     271                                "file:./assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2"
     272                            ],
     273                            "fontWeight": "800",
     274                            "fontStyle": "italic",
     275                            "fontFamily": "\"Fira Sans\""
     276                        },
     277                        {
     278                            "src": [
     279                                "file:./assets/fonts/fira-sans/FiraSans-Black.woff2"
     280                            ],
     281                            "fontWeight": "900",
     282                            "fontStyle": "normal",
     283                            "fontFamily": "\"Fira Sans\""
     284                        },
     285                        {
     286                            "src": [
     287                                "file:./assets/fonts/fira-sans/FiraSans-BlackItalic.woff2"
     288                            ],
     289                            "fontWeight": "900",
     290                            "fontStyle": "italic",
     291                            "fontFamily": "\"Fira Sans\""
     292                        }
     293                    ]
     294                }
     295            ],
    8296            "fontSizes": [
    9297                {
     
    100388                "typography": {
    101389                    "fontFamily": "var:preset|font-family|literata",
     390                    "fontSize": "var:preset|font-size|medium",
    102391                    "fontWeight": "400",
     392                    "letterSpacing": "-0.01em",
    103393                    "textTransform": "uppercase"
    104394                }
  • trunk/src/wp-content/themes/twentytwentyfive/theme.json

    r59269 r59314  
    159159                        {
    160160                            "src": [
    161                                 "file:./assets/fonts/manrope/Manrope-ExtraLight.woff2"
     161                                "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
    162162                            ],
    163                             "fontWeight": "200",
     163                            "fontWeight": "200 800",
    164164                            "fontStyle": "normal",
    165165                            "fontFamily": "Manrope"
    166                         },
    167                         {
    168                             "src": [
    169                                 "file:./assets/fonts/manrope/Manrope-Light.woff2"
    170                             ],
    171                             "fontWeight": "300",
    172                             "fontStyle": "normal",
    173                             "fontFamily": "Manrope"
    174                         },
    175                         {
    176                             "src": [
    177                                 "file:./assets/fonts/manrope/Manrope-Regular.woff2"
    178                             ],
    179                             "fontWeight": "400",
    180                             "fontStyle": "normal",
    181                             "fontFamily": "Manrope"
    182                         },
    183                         {
    184                             "src": [
    185                                 "file:./assets/fonts/manrope/Manrope-Medium.woff2"
    186                             ],
    187                             "fontWeight": "500",
    188                             "fontStyle": "normal",
    189                             "fontFamily": "Manrope"
    190                         },
    191                         {
    192                             "src": [
    193                                 "file:./assets/fonts/manrope/Manrope-SemiBold.woff2"
    194                             ],
    195                             "fontWeight": "600",
    196                             "fontStyle": "normal",
    197                             "fontFamily": "Manrope"
    198                         },
    199                         {
    200                             "src": [
    201                                 "file:./assets/fonts/manrope/Manrope-Bold.woff2"
    202                             ],
    203                             "fontWeight": "700",
    204                             "fontStyle": "normal",
    205                             "fontFamily": "Manrope"
    206                         },
    207                         {
    208                             "src": [
    209                                 "file:./assets/fonts/manrope/Manrope-ExtraBold.woff2"
    210                             ],
    211                             "fontWeight": "800",
    212                             "fontStyle": "normal",
    213                             "fontFamily": "Manrope"
    214                         }
    215                     ]
    216                 },
    217                 {
    218                     "name": "Literata",
    219                     "slug": "literata",
    220                     "fontFamily": "Literata, serif",
    221                     "fontFace": [
    222                         {
    223                             "src": [
    224                                 "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
    225                             ],
    226                             "fontWeight": "200",
    227                             "fontStyle": "normal",
    228                             "fontFamily": "Literata"
    229                         },
    230                         {
    231                             "src": [
    232                                 "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
    233                             ],
    234                             "fontWeight": "200",
    235                             "fontStyle": "italic",
    236                             "fontFamily": "Literata"
    237                         },
    238                         {
    239                             "src": [
    240                                 "file:./assets/fonts/literata/Literata72pt-Light.woff2"
    241                             ],
    242                             "fontWeight": "300",
    243                             "fontStyle": "normal",
    244                             "fontFamily": "Literata"
    245                         },
    246                         {
    247                             "src": [
    248                                 "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
    249                             ],
    250                             "fontWeight": "300",
    251                             "fontStyle": "italic",
    252                             "fontFamily": "Literata"
    253                         },
    254                         {
    255                             "src": [
    256                                 "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
    257                             ],
    258                             "fontWeight": "400",
    259                             "fontStyle": "normal",
    260                             "fontFamily": "Literata"
    261                         },
    262                         {
    263                             "src": [
    264                                 "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
    265                             ],
    266                             "fontWeight": "400",
    267                             "fontStyle": "italic",
    268                             "fontFamily": "Literata"
    269                         },
    270                         {
    271                             "src": [
    272                                 "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
    273                             ],
    274                             "fontWeight": "500",
    275                             "fontStyle": "normal",
    276                             "fontFamily": "Literata"
    277                         },
    278                         {
    279                             "src": [
    280                                 "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
    281                             ],
    282                             "fontWeight": "500",
    283                             "fontStyle": "italic",
    284                             "fontFamily": "Literata"
    285                         },
    286                         {
    287                             "src": [
    288                                 "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
    289                             ],
    290                             "fontWeight": "600",
    291                             "fontStyle": "normal",
    292                             "fontFamily": "Literata"
    293                         },
    294                         {
    295                             "src": [
    296                                 "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
    297                             ],
    298                             "fontWeight": "600",
    299                             "fontStyle": "italic",
    300                             "fontFamily": "Literata"
    301                         },
    302                         {
    303                             "src": [
    304                                 "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
    305                             ],
    306                             "fontWeight": "700",
    307                             "fontStyle": "normal",
    308                             "fontFamily": "Literata"
    309                         },
    310                         {
    311                             "src": [
    312                                 "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
    313                             ],
    314                             "fontWeight": "700",
    315                             "fontStyle": "italic",
    316                             "fontFamily": "Literata"
    317                         },
    318                         {
    319                             "src": [
    320                                 "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
    321                             ],
    322                             "fontWeight": "800",
    323                             "fontStyle": "normal",
    324                             "fontFamily": "Literata"
    325                         },
    326                         {
    327                             "src": [
    328                                 "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
    329                             ],
    330                             "fontWeight": "800",
    331                             "fontStyle": "italic",
    332                             "fontFamily": "Literata"
    333                         },
    334                         {
    335                             "src": [
    336                                 "file:./assets/fonts/literata/Literata72pt-Black.woff2"
    337                             ],
    338                             "fontWeight": "900",
    339                             "fontStyle": "normal",
    340                             "fontFamily": "Literata"
    341                         },
    342                         {
    343                             "src": [
    344                                 "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
    345                             ],
    346                             "fontWeight": "900",
    347                             "fontStyle": "italic",
    348                             "fontFamily": "Literata"
    349                         }
    350                     ]
    351                 },
    352                 {
    353                     "name": "Vollkorn",
    354                     "slug": "vollkorn",
    355                     "fontFamily": "Vollkorn, serif",
    356                     "fontFace": [
    357                         {
    358                             "src": [
    359                                 "file:./assets/fonts/vollkorn/Vollkorn-Italic.woff2"
    360                             ],
    361                             "fontWeight": "400",
    362                             "fontStyle": "italic",
    363                             "fontFamily": "Vollkorn"
    364                         },
    365                         {
    366                             "src": [
    367                                 "file:./assets/fonts/vollkorn/Vollkorn-Regular.woff2"
    368                             ],
    369                             "fontWeight": "400",
    370                             "fontStyle": "normal",
    371                             "fontFamily": "Vollkorn"
    372                         },
    373                         {
    374                             "src": [
    375                                 "file:./assets/fonts/vollkorn/Vollkorn-Medium.woff2"
    376                             ],
    377                             "fontWeight": "500",
    378                             "fontStyle": "normal",
    379                             "fontFamily": "Vollkorn"
    380                         },
    381                         {
    382                             "src": [
    383                                 "file:./assets/fonts/vollkorn/Vollkorn-MediumItalic.woff2"
    384                             ],
    385                             "fontWeight": "500",
    386                             "fontStyle": "italic",
    387                             "fontFamily": "Vollkorn"
    388                         },
    389                         {
    390                             "src": [
    391                                 "file:./assets/fonts/vollkorn/Vollkorn-SemiBold.woff2"
    392                             ],
    393                             "fontWeight": "600",
    394                             "fontStyle": "normal",
    395                             "fontFamily": "Vollkorn"
    396                         },
    397                         {
    398                             "src": [
    399                                 "file:./assets/fonts/vollkorn/Vollkorn-Bold.woff2"
    400                             ],
    401                             "fontWeight": "700",
    402                             "fontStyle": "normal",
    403                             "fontFamily": "Vollkorn"
    404                         },
    405                         {
    406                             "src": [
    407                                 "file:./assets/fonts/vollkorn/Vollkorn-BoldItalic.woff2"
    408                             ],
    409                             "fontWeight": "700",
    410                             "fontStyle": "italic",
    411                             "fontFamily": "Vollkorn"
    412                         },
    413                         {
    414                             "src": [
    415                                 "file:./assets/fonts/vollkorn/Vollkorn-ExtraBold.woff2"
    416                             ],
    417                             "fontWeight": "800",
    418                             "fontStyle": "normal",
    419                             "fontFamily": "Vollkorn"
    420                         },
    421                         {
    422                             "src": [
    423                                 "file:./assets/fonts/vollkorn/Vollkorn-ExtraBoldItalic.woff2"
    424                             ],
    425                             "fontWeight": "800",
    426                             "fontStyle": "italic",
    427                             "fontFamily": "Vollkorn"
    428                         },
    429                         {
    430                             "src": [
    431                                 "file:./assets/fonts/vollkorn/Vollkorn-Black.woff2"
    432                             ],
    433                             "fontWeight": "900",
    434                             "fontStyle": "normal",
    435                             "fontFamily": "Vollkorn"
    436                         },
    437                         {
    438                             "src": [
    439                                 "file:./assets/fonts/vollkorn/Vollkorn-BlackItalic.woff2"
    440                             ],
    441                             "fontWeight": "900",
    442                             "fontStyle": "italic",
    443                             "fontFamily": "Vollkorn"
    444166                        }
    445167                    ]
     
    452174                        {
    453175                            "src": [
    454                                 "file:./assets/fonts/fira-code/FiraCode-Light.woff2"
     176                                "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
    455177                            ],
    456                             "fontWeight": "300",
     178                            "fontWeight": "300 700",
    457179                            "fontStyle": "normal",
    458180                            "fontFamily": "\"Fira Code\""
    459                         },
    460                         {
    461                             "src": [
    462                                 "file:./assets/fonts/fira-code/FiraCode-Regular.woff2"
    463                             ],
    464                             "fontWeight": "400",
    465                             "fontStyle": "normal",
    466                             "fontFamily": "\"Fira Code\""
    467                         },
    468                         {
    469                             "src": [
    470                                 "file:./assets/fonts/fira-code/FiraCode-Medium.woff2"
    471                             ],
    472                             "fontWeight": "500",
    473                             "fontStyle": "normal",
    474                             "fontFamily": "\"Fira Code\""
    475                         },
    476                         {
    477                             "src": [
    478                                 "file:./assets/fonts/fira-code/FiraCode-SemiBold.woff2"
    479                             ],
    480                             "fontWeight": "600",
    481                             "fontStyle": "normal",
    482                             "fontFamily": "\"Fira Code\""
    483                         },
    484                         {
    485                             "src": [
    486                                 "file:./assets/fonts/fira-code/FiraCode-Bold.woff2"
    487                             ],
    488                             "fontWeight": "700",
    489                             "fontStyle": "normal",
    490                             "fontFamily": "\"Fira Code\""
    491                         }
    492                     ]
    493                 },
    494                 {
    495                     "name": "Fira Sans",
    496                     "slug": "fira-sans",
    497                     "fontFamily": "\"Fira Sans\", sans-serif",
    498                     "fontFace": [
    499                         {
    500                             "src": [
    501                                 "file:./assets/fonts/fira-sans/FiraSans-Thin.woff2"
    502                             ],
    503                             "fontWeight": "100",
    504                             "fontStyle": "normal",
    505                             "fontFamily": "\"Fira Sans\""
    506                         },
    507                         {
    508                             "src": [
    509                                 "file:./assets/fonts/fira-sans/FiraSans-ThinItalic.woff2"
    510                             ],
    511                             "fontWeight": "100",
    512                             "fontStyle": "italic",
    513                             "fontFamily": "\"Fira Sans\""
    514                         },
    515                         {
    516                             "src": [
    517                                 "file:./assets/fonts/fira-sans/FiraSans-ExtraLight.woff2"
    518                             ],
    519                             "fontWeight": "200",
    520                             "fontStyle": "normal",
    521                             "fontFamily": "\"Fira Sans\""
    522                         },
    523                         {
    524                             "src": [
    525                                 "file:./assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2"
    526                             ],
    527                             "fontWeight": "200",
    528                             "fontStyle": "italic",
    529                             "fontFamily": "\"Fira Sans\""
    530                         },
    531                         {
    532                             "src": [
    533                                 "file:./assets/fonts/fira-sans/FiraSans-Light.woff2"
    534                             ],
    535                             "fontWeight": "300",
    536                             "fontStyle": "normal",
    537                             "fontFamily": "\"Fira Sans\""
    538                         },
    539                         {
    540                             "src": [
    541                                 "file:./assets/fonts/fira-sans/FiraSans-LightItalic.woff2"
    542                             ],
    543                             "fontWeight": "300",
    544                             "fontStyle": "italic",
    545                             "fontFamily": "\"Fira Sans\""
    546                         },
    547                         {
    548                             "src": [
    549                                 "file:./assets/fonts/fira-sans/FiraSans-Italic.woff2"
    550                             ],
    551                             "fontWeight": "400",
    552                             "fontStyle": "italic",
    553                             "fontFamily": "\"Fira Sans\""
    554                         },
    555                         {
    556                             "src": [
    557                                 "file:./assets/fonts/fira-sans/FiraSans-Regular.woff2"
    558                             ],
    559                             "fontWeight": "400",
    560                             "fontStyle": "normal",
    561                             "fontFamily": "\"Fira Sans\""
    562                         },
    563                         {
    564                             "src": [
    565                                 "file:./assets/fonts/fira-sans/FiraSans-Medium.woff2"
    566                             ],
    567                             "fontWeight": "500",
    568                             "fontStyle": "normal",
    569                             "fontFamily": "\"Fira Sans\""
    570                         },
    571                         {
    572                             "src": [
    573                                 "file:./assets/fonts/fira-sans/FiraSans-MediumItalic.woff2"
    574                             ],
    575                             "fontWeight": "500",
    576                             "fontStyle": "italic",
    577                             "fontFamily": "\"Fira Sans\""
    578                         },
    579                         {
    580                             "src": [
    581                                 "file:./assets/fonts/fira-sans/FiraSans-SemiBold.woff2"
    582                             ],
    583                             "fontWeight": "600",
    584                             "fontStyle": "normal",
    585                             "fontFamily": "\"Fira Sans\""
    586                         },
    587                         {
    588                             "src": [
    589                                 "file:./assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2"
    590                             ],
    591                             "fontWeight": "600",
    592                             "fontStyle": "italic",
    593                             "fontFamily": "\"Fira Sans\""
    594                         },
    595                         {
    596                             "src": [
    597                                 "file:./assets/fonts/fira-sans/FiraSans-Bold.woff2"
    598                             ],
    599                             "fontWeight": "700",
    600                             "fontStyle": "normal",
    601                             "fontFamily": "\"Fira Sans\""
    602                         },
    603                         {
    604                             "src": [
    605                                 "file:./assets/fonts/fira-sans/FiraSans-BoldItalic.woff2"
    606                             ],
    607                             "fontWeight": "700",
    608                             "fontStyle": "italic",
    609                             "fontFamily": "\"Fira Sans\""
    610                         },
    611                         {
    612                             "src": [
    613                                 "file:./assets/fonts/fira-sans/FiraSans-ExtraBold.woff2"
    614                             ],
    615                             "fontWeight": "800",
    616                             "fontStyle": "normal",
    617                             "fontFamily": "\"Fira Sans\""
    618                         },
    619                         {
    620                             "src": [
    621                                 "file:./assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2"
    622                             ],
    623                             "fontWeight": "800",
    624                             "fontStyle": "italic",
    625                             "fontFamily": "\"Fira Sans\""
    626                         },
    627                         {
    628                             "src": [
    629                                 "file:./assets/fonts/fira-sans/FiraSans-Black.woff2"
    630                             ],
    631                             "fontWeight": "900",
    632                             "fontStyle": "normal",
    633                             "fontFamily": "\"Fira Sans\""
    634                         },
    635                         {
    636                             "src": [
    637                                 "file:./assets/fonts/fira-sans/FiraSans-BlackItalic.woff2"
    638                             ],
    639                             "fontWeight": "900",
    640                             "fontStyle": "italic",
    641                             "fontFamily": "\"Fira Sans\""
    642                         }
    643                     ]
    644                 },
    645                 {
    646                     "name": "Ysabeau Office",
    647                     "slug": "ysabeau-office",
    648                     "fontFamily": "\"Ysabeau Office\", sans-serif",
    649                     "fontFace": [
    650                         {
    651                             "src": [
    652                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Thin.woff2"
    653                             ],
    654                             "fontWeight": "100",
    655                             "fontStyle": "normal",
    656                             "fontFamily": "\"Ysabeau Office\""
    657                         },
    658                         {
    659                             "src": [
    660                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-ThinItalic.woff2"
    661                             ],
    662                             "fontWeight": "100",
    663                             "fontStyle": "italic",
    664                             "fontFamily": "\"Ysabeau Office\""
    665                         },
    666                         {
    667                             "src": [
    668                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-ExtraLight.woff2"
    669                             ],
    670                             "fontWeight": "200",
    671                             "fontStyle": "normal",
    672                             "fontFamily": "\"Ysabeau Office\""
    673                         },
    674                         {
    675                             "src": [
    676                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-ExtraLightItalic.woff2"
    677                             ],
    678                             "fontWeight": "200",
    679                             "fontStyle": "italic",
    680                             "fontFamily": "\"Ysabeau Office\""
    681                         },
    682                         {
    683                             "src": [
    684                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Light.woff2"
    685                             ],
    686                             "fontWeight": "300",
    687                             "fontStyle": "normal",
    688                             "fontFamily": "\"Ysabeau Office\""
    689                         },
    690                         {
    691                             "src": [
    692                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-LightItalic.woff2"
    693                             ],
    694                             "fontWeight": "300",
    695                             "fontStyle": "italic",
    696                             "fontFamily": "\"Ysabeau Office\""
    697                         },
    698                         {
    699                             "src": [
    700                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic.woff2"
    701                             ],
    702                             "fontWeight": "400",
    703                             "fontStyle": "italic",
    704                             "fontFamily": "\"Ysabeau Office\""
    705                         },
    706                         {
    707                             "src": [
    708                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Regular.woff2"
    709                             ],
    710                             "fontWeight": "400",
    711                             "fontStyle": "normal",
    712                             "fontFamily": "\"Ysabeau Office\""
    713                         },
    714                         {
    715                             "src": [
    716                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Medium.woff2"
    717                             ],
    718                             "fontWeight": "500",
    719                             "fontStyle": "normal",
    720                             "fontFamily": "\"Ysabeau Office\""
    721                         },
    722                         {
    723                             "src": [
    724                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-MediumItalic.woff2"
    725                             ],
    726                             "fontWeight": "500",
    727                             "fontStyle": "italic",
    728                             "fontFamily": "\"Ysabeau Office\""
    729                         },
    730                         {
    731                             "src": [
    732                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-SemiBold.woff2"
    733                             ],
    734                             "fontWeight": "600",
    735                             "fontStyle": "normal",
    736                             "fontFamily": "\"Ysabeau Office\""
    737                         },
    738                         {
    739                             "src": [
    740                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-SemiBoldItalic.woff2"
    741                             ],
    742                             "fontWeight": "600",
    743                             "fontStyle": "italic",
    744                             "fontFamily": "\"Ysabeau Office\""
    745                         },
    746                         {
    747                             "src": [
    748                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Bold.woff2"
    749                             ],
    750                             "fontWeight": "700",
    751                             "fontStyle": "normal",
    752                             "fontFamily": "\"Ysabeau Office\""
    753                         },
    754                         {
    755                             "src": [
    756                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-BoldItalic.woff2"
    757                             ],
    758                             "fontWeight": "700",
    759                             "fontStyle": "italic",
    760                             "fontFamily": "\"Ysabeau Office\""
    761                         },
    762                         {
    763                             "src": [
    764                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-ExtraBold.woff2"
    765                             ],
    766                             "fontWeight": "800",
    767                             "fontStyle": "normal",
    768                             "fontFamily": "\"Ysabeau Office\""
    769                         },
    770                         {
    771                             "src": [
    772                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-ExtraBoldItalic.woff2"
    773                             ],
    774                             "fontWeight": "800",
    775                             "fontStyle": "italic",
    776                             "fontFamily": "\"Ysabeau Office\""
    777                         },
    778                         {
    779                             "src": [
    780                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-Black.woff2"
    781                             ],
    782                             "fontWeight": "900",
    783                             "fontStyle": "normal",
    784                             "fontFamily": "\"Ysabeau Office\""
    785                         },
    786                         {
    787                             "src": [
    788                                 "file:./assets/fonts/ysabeau-office/YsabeauOffice-BlackItalic.woff2"
    789                             ],
    790                             "fontWeight": "900",
    791                             "fontStyle": "italic",
    792                             "fontFamily": "\"Ysabeau Office\""
    793                         }
    794                     ]
    795                 },
    796                 {
    797                     "name": "Platypi",
    798                     "slug": "platypi",
    799                     "fontFamily": "Platypi",
    800                     "fontFace": [
    801                         {
    802                             "fontFamily": "Platypi",
    803                             "fontStyle": "normal",
    804                             "fontWeight": "300",
    805                             "src": [
    806                                 "file:./assets/fonts/platypi/Platypi-Light.woff2"
    807                             ]
    808                         },
    809                         {
    810                             "fontFamily": "Platypi",
    811                             "fontStyle": "italic",
    812                             "fontWeight": "300",
    813                             "src": [
    814                                 "file:./assets/fonts/platypi/Platypi-LightItalic.woff2"
    815                             ]
    816                         },
    817                         {
    818                             "fontFamily": "Platypi",
    819                             "fontStyle": "italic",
    820                             "fontWeight": "400",
    821                             "src": [
    822                                 "file:./assets/fonts/platypi/Platypi-Italic.woff2"
    823                             ]
    824                         },
    825                         {
    826                             "fontFamily": "Platypi",
    827                             "fontStyle": "normal",
    828                             "fontWeight": "400",
    829                             "src": [
    830                                 "file:./assets/fonts/platypi/Platypi-Regular.woff2"
    831                             ]
    832                         },
    833                         {
    834                             "fontFamily": "Platypi",
    835                             "fontStyle": "normal",
    836                             "fontWeight": "500",
    837                             "src": [
    838                                 "file:./assets/fonts/platypi/Platypi-Medium.woff2"
    839                             ]
    840                         },
    841                         {
    842                             "fontFamily": "Platypi",
    843                             "fontStyle": "italic",
    844                             "fontWeight": "500",
    845                             "src": [
    846                                 "file:./assets/fonts/platypi/Platypi-MediumItalic.woff2"
    847                             ]
    848                         },
    849                         {
    850                             "fontFamily": "Platypi",
    851                             "fontStyle": "normal",
    852                             "fontWeight": "600",
    853                             "src": [
    854                                 "file:./assets/fonts/platypi/Platypi-SemiBold.woff2"
    855                             ]
    856                         },
    857                         {
    858                             "fontFamily": "Platypi",
    859                             "fontStyle": "italic",
    860                             "fontWeight": "600",
    861                             "src": [
    862                                 "file:./assets/fonts/platypi/Platypi-SemiBoldItalic.woff2"
    863                             ]
    864                         },
    865                         {
    866                             "fontFamily": "Platypi",
    867                             "fontStyle": "normal",
    868                             "fontWeight": "700",
    869                             "src": [
    870                                 "file:./assets/fonts/platypi/Platypi-Bold.woff2"
    871                             ]
    872                         },
    873                         {
    874                             "fontFamily": "Platypi",
    875                             "fontStyle": "italic",
    876                             "fontWeight": "700",
    877                             "src": [
    878                                 "file:./assets/fonts/platypi/Platypi-BoldItalic.woff2"
    879                             ]
    880                         },
    881                         {
    882                             "fontFamily": "Platypi",
    883                             "fontStyle": "normal",
    884                             "fontWeight": "800",
    885                             "src": [
    886                                 "file:./assets/fonts/platypi/Platypi-ExtraBold.woff2"
    887                             ]
    888                         },
    889                         {
    890                             "fontFamily": "Platypi",
    891                             "fontStyle": "italic",
    892                             "fontWeight": "800",
    893                             "src": [
    894                                 "file:./assets/fonts/platypi/Platypi-ExtraBoldItalic.woff2"
    895                             ]
    896                         }
    897                     ]
    898                 },
    899                 {
    900                     "name": "Roboto Slab",
    901                     "slug": "roboto-slab",
    902                     "fontFamily": "\"Roboto Slab\", serif",
    903                     "fontFace": [
    904                         {
    905                             "fontFamily": "\"Roboto Slab\"",
    906                             "fontStyle": "normal",
    907                             "fontWeight": "100 900",
    908                             "src": [
    909                                 "file:./assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2"
    910                             ]
    911                         }
    912                     ]
    913                 },
    914                 {
    915                     "name": "Beiruti",
    916                     "slug": "beiruti",
    917                     "fontFamily": "Beiruti, sans-serif",
    918                     "fontFace": [
    919                         {
    920                             "fontFamily": "Beiruti",
    921                             "fontStyle": "normal",
    922                             "fontWeight": "200 900",
    923                             "src": [
    924                                 "file:./assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2"
    925                             ]
    926181                        }
    927182                    ]
     
    1121376                }
    1122377            },
    1123             "core/post-author-name": {
     378            "core/post-date": {
     379                "color":{
     380                    "text": "var:preset|color|accent-4"
     381                },
    1124382                "elements": {
    1125383                    "link": {
    1126                         "typography": {
    1127                             "textDecoration": "none"
     384                        "color" : {
     385                            "text": "var:preset|color|accent-4"
    1128386                        },
    1129387                        ":hover": {
     
    1131389                                "textDecoration": "underline"
    1132390                            }
    1133                         }
    1134                     }
    1135                 }
    1136             },
    1137             "core/post-date": {
    1138                 "color":{
    1139                     "text": "var:preset|color|accent-4"
    1140                 },
    1141                 "elements": {
    1142                     "link": {
    1143                         "color" : {
    1144                             "text": "var:preset|color|accent-4"
    1145                         },
    1146                         ":hover": {
    1147                             "typography": {
    1148                                 "textDecoration": "underline"
    1149                             }
    1150391                        },
    1151392                        "typography": {
     
    1168409                    "fontSize": "var:preset|font-size|small",
    1169410                    "fontWeight": "600"
    1170                 },
    1171                 "elements": {
    1172                     "link": {
    1173                         "typography": {
    1174                             "textDecoration": "none"
    1175                         },
    1176                         ":hover": {
    1177                             "typography": {
    1178                                 "textDecoration": "underline"
    1179                             }
    1180                         }
    1181                     }
    1182411                }
    1183412            },
     
    1451680                "color": {
    1452681                    "text": "currentColor"
     682                },
     683                ":hover": {
     684                    "typography": {
     685                        "textDecoration": "none"
     686                    }
    1453687                }
    1454688            }
Note: See TracChangeset for help on using the changeset viewer.