+ %2$s';
+ if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
+ $time_string = '
%2$s %4$s ';
+ }
- $time_string = '
%2$s ';
- if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
- $time_string = '
%2$s %4$s ';
- }
+ $time_string = \sprintf(
+ $time_string,
+ esc_attr( get_the_date( DATE_W3C ) ),
+ esc_html( get_the_date() ),
+ esc_attr( get_the_modified_date( DATE_W3C ) ),
+ esc_html( get_the_modified_date() )
+ );
+
+ $posted_on = \sprintf(
+ // translators: %s: post date.
+ esc_html_x( 'Posted on %s by', 'post date', 'brisko' ),
+ '
' . $time_string . ' '
+ );
+
+ echo '
' . wp_kses_post( $posted_on ) . ' '; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
+}
- $time_string = \sprintf(
- $time_string,
- esc_attr( get_the_date( DATE_W3C ) ),
- esc_html( get_the_date() ),
- esc_attr( get_the_modified_date( DATE_W3C ) ),
- esc_html( get_the_modified_date() )
- );
+/**
+ * Prints HTML with meta information for the current author.
+ */
+function brisko_posted_by()
+{
+ if ( ! get_theme_mod( 'display_post_author' ) ) {
+ return null;
+ }
- $posted_on = \sprintf(
- // translators: %s: post date.
- esc_html_x( 'Posted on %s by', 'post date', 'brisko' ),
- '
' . $time_string . ' '
- );
+ $byline = \sprintf(
+ // translators: %s: post author.
+ esc_html_x( '%s', 'post author', 'brisko' ), // phpcs:ignore
+ '
' . esc_html( get_the_author() ) . ' '
+ );
- echo '
' . wp_kses_post( $posted_on ) . ' '; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
- }
+ echo get_avatar( get_the_author_meta( 'ID' ), 32 );
+ echo '
' . $byline . ' '; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
-if ( ! \function_exists( 'brisko_posted_by' ) ) {
- /**
- * Prints HTML with meta information for the current author.
- */
- function brisko_posted_by()
- {
- if ( ! get_theme_mod( 'display_post_author' ) ) {
- return null;
+/**
+ * Prints HTML with meta information for the categories, tags and comments.
+ */
+function brisko_entry_footer()
+{
+ // Hide category and tag text for pages.
+ if ( 'post' === get_post_type() ) {
+ $categories_list = get_the_category_list( ' ' );
+ $display_post_categories = get_theme_mod( 'display_post_categories' );
+ if ( $categories_list && $display_post_categories ) {
+ // translators: 1: list of categories.
+ printf( '
' . esc_html__( 'Posted in %1$s', 'brisko' ) . '
', $categories_list, esc_attr( brisko_options( 'display_post_categories' ) ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
- $byline = \sprintf(
- // translators: %s: post author.
- esc_html_x( '%s', 'post author', 'brisko' ), // phpcs:ignore
- '
' . esc_html( get_the_author() ) . ' '
- );
-
- echo get_avatar( get_the_author_meta( 'ID' ), 32 );
- echo '
' . $byline . ' '; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
- }
-}
+ do_action( 'brisko_before_tags' );
-if ( ! \function_exists( 'brisko_entry_footer' ) ) {
- /**
- * Prints HTML with meta information for the categories, tags and comments.
- */
- function brisko_entry_footer()
- {
- // Hide category and tag text for pages.
- if ( 'post' === get_post_type() ) {
- $categories_list = get_the_category_list( ' ' );
- $display_post_categories = get_theme_mod( 'display_post_categories' );
- if ( $categories_list && $display_post_categories ) {
- // translators: 1: list of categories.
- printf( '
' . esc_html__( 'Posted in %1$s', 'brisko' ) . '
', $categories_list, esc_attr( brisko_options( 'display_post_categories' ) ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
- }
-
- do_action( 'brisko_before_tags' );
-
- // translators: used between list items, there is a space after the comma
- $tags_list = get_the_tag_list( ' ' );
- if ( $tags_list ) {
- // translators: 1: list of tags.
- printf( '
' . esc_html__( 'Tags: %1$s ', 'brisko' ) . ' ', $tags_list, esc_attr( brisko_options( 'display_tags' ) ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
- }
+ // translators: used between list items, there is a space after the comma
+ $tags_list = get_the_tag_list( ' ' );
+ if ( $tags_list ) {
+ // translators: 1: list of tags.
+ printf( '
' . esc_html__( 'Tags: %1$s ', 'brisko' ) . ' ', $tags_list, esc_attr( brisko_options( 'display_tags' ) ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
+ }
- if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
- echo '';
- }
+ if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
+ echo '';
}
}
+
/**
* Outputs the entry meta information for posts.
*
@@ -394,3 +381,16 @@ function brisko_header()
{
return SiteHeader::get();
}
+
+function is_brisko_hybrid_fse()
+{
+ if ( get_theme_mod( 'use_block_templates', false ) ) {
+ return true;
+ }
+
+ if ( get_theme_mod( 'enable_hybrid_mode', false ) ) {
+ return true;
+ }
+
+ return false;
+}
diff --git a/styles/atlantis.json b/styles/atlantis.json
new file mode 100644
index 00000000..054bbcbb
--- /dev/null
+++ b/styles/atlantis.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Atlantis",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#f2fee7", "name": "Atlantis 50" },
+ { "slug": "brisko-100", "color": "#e1fccb", "name": "Atlantis 100" },
+ { "slug": "brisko-200", "color": "#c4f99d", "name": "Atlantis 200" },
+ { "slug": "brisko-300", "color": "#8ff04e", "name": "Atlantis 300" },
+ { "slug": "brisko-400", "color": "#7ae635", "name": "Atlantis 400" },
+ { "slug": "brisko-500", "color": "#5acc16", "name": "Atlantis 500" },
+ { "slug": "brisko-600", "color": "#42a30d", "name": "Atlantis 600" },
+ { "slug": "brisko-700", "color": "#347c0f", "name": "Atlantis 700" },
+ { "slug": "brisko-800", "color": "#2c6212", "name": "Atlantis 800" },
+ { "slug": "brisko-900", "color": "#275314", "name": "Atlantis 900" },
+ { "slug": "brisko-950", "color": "#102e05", "name": "Atlantis 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-500)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "20px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/cove.json b/styles/cove.json
new file mode 100644
index 00000000..52ccb2cb
--- /dev/null
+++ b/styles/cove.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Cove",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#f3f5fa", "name": "Cove 50" },
+ { "slug": "brisko-100", "color": "#e8eff7", "name": "Cove 100" },
+ { "slug": "brisko-200", "color": "#d6e0ef", "name": "Cove 200" },
+ { "slug": "brisko-300", "color": "#bccbe5", "name": "Cove 300" },
+ { "slug": "brisko-400", "color": "#a1b0d8", "name": "Cove 400" },
+ { "slug": "brisko-500", "color": "#8795ca", "name": "Cove 500" },
+ { "slug": "brisko-600", "color": "#717bba", "name": "Cove 600" },
+ { "slug": "brisko-700", "color": "#5f67a3", "name": "Cove 700" },
+ { "slug": "brisko-800", "color": "#4f5684", "name": "Cove 800" },
+ { "slug": "brisko-900", "color": "#44496b", "name": "Cove 900" },
+ { "slug": "brisko-950", "color": "#282b3e", "name": "Cove 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-500)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "20px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/electric.json b/styles/electric.json
index 319b32a0..783fd000 100644
--- a/styles/electric.json
+++ b/styles/electric.json
@@ -11,7 +11,7 @@
"slug": "base"
},
{
- "color": "#2500ff",
+ "color": "#30343b",
"name": "Contrast",
"slug": "contrast"
},
@@ -21,7 +21,7 @@
"slug": "primary"
},
{
- "color": "#2500ff",
+ "color": "#30343b",
"name": "Secondary",
"slug": "secondary"
},
diff --git a/styles/falcon.json b/styles/falcon.json
new file mode 100644
index 00000000..15d8a559
--- /dev/null
+++ b/styles/falcon.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Falcon",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#f9f6f9", "name": "Falcon 50" },
+ { "slug": "brisko-100", "color": "#f4eff3", "name": "Falcon 100" },
+ { "slug": "brisko-200", "color": "#eae0e8", "name": "Falcon 200" },
+ { "slug": "brisko-300", "color": "#d9c8d4", "name": "Falcon 300" },
+ { "slug": "brisko-400", "color": "#c1a5b9", "name": "Falcon 400" },
+ { "slug": "brisko-500", "color": "#ac88a0", "name": "Falcon 500" },
+ { "slug": "brisko-600", "color": "#88647a", "name": "Falcon 600" },
+ { "slug": "brisko-700", "color": "#7d596e", "name": "Falcon 700" },
+ { "slug": "brisko-800", "color": "#684c5c", "name": "Falcon 800" },
+ { "slug": "brisko-900", "color": "#59424f", "name": "Falcon 900" },
+ { "slug": "brisko-950", "color": "#33242d", "name": "Falcon 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-500)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "20px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/gothic.json b/styles/gothic.json
new file mode 100644
index 00000000..15ce1552
--- /dev/null
+++ b/styles/gothic.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Gothic",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#f3f7f8", "name": "Gothic 50" },
+ { "slug": "brisko-100", "color": "#dfeaee", "name": "Gothic 100" },
+ { "slug": "brisko-200", "color": "#c3d7de", "name": "Gothic 200" },
+ { "slug": "brisko-300", "color": "#9abbc6", "name": "Gothic 300" },
+ { "slug": "brisko-400", "color": "#5d8c9e", "name": "Gothic 400" },
+ { "slug": "brisko-500", "color": "#4e7a8c", "name": "Gothic 500" },
+ { "slug": "brisko-600", "color": "#436577", "name": "Gothic 600" },
+ { "slug": "brisko-700", "color": "#3b5463", "name": "Gothic 700" },
+ { "slug": "brisko-800", "color": "#364954", "name": "Gothic 800" },
+ { "slug": "brisko-900", "color": "#313f48", "name": "Gothic 900" },
+ { "slug": "brisko-950", "color": "#1d272f", "name": "Gothic 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-500)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "20px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/heather.json b/styles/heather.json
new file mode 100644
index 00000000..dfdff90f
--- /dev/null
+++ b/styles/heather.json
@@ -0,0 +1,171 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Heather",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#f6f7f8", "name": "Heather 50" },
+ { "slug": "brisko-100", "color": "#e9edf0", "name": "Heather 100" },
+ { "slug": "brisko-200", "color": "#d9dfe4", "name": "Heather 200" },
+ { "slug": "brisko-300", "color": "#bfc9d1", "name": "Heather 300" },
+ { "slug": "brisko-400", "color": "#abb8c3", "name": "Heather 400" },
+ { "slug": "brisko-500", "color": "#8898a9", "name": "Heather 500" },
+ { "slug": "brisko-600", "color": "#76849a", "name": "Heather 600" },
+ { "slug": "brisko-700", "color": "#6a768b", "name": "Heather 700" },
+ { "slug": "brisko-800", "color": "#5a6273", "name": "Heather 800" },
+ { "slug": "brisko-900", "color": "#4a515e", "name": "Heather 900" },
+ { "slug": "brisko-950", "color": "#30343b", "name": "Heather 950" }
+ ],
+ "gradients": [
+ {
+ "slug": "heather-gradient",
+ "gradient": "linear-gradient(135deg, #e9edf0 0%, #8898a9 100%)",
+ "name": "Heather Gradient"
+ }
+ ],
+ "duotone": [
+ {
+ "slug": "heather-duotone",
+ "colors": ["#76849a", "#f6f7f8"],
+ "name": "Heather Duotone"
+ }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-600)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "4px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/pewter.json b/styles/pewter.json
new file mode 100644
index 00000000..b3938f82
--- /dev/null
+++ b/styles/pewter.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Pewter",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "pewter-50", "color": "#f9f9fa", "name": "Pewter 50" },
+ { "slug": "pewter-100", "color": "#f1f1f3", "name": "Pewter 100" },
+ { "slug": "pewter-150", "color": "#e4e4e7", "name": "Pewter 150" },
+ { "slug": "pewter-200", "color": "#d3d3d8", "name": "Pewter 200" },
+ { "slug": "pewter-250", "color": "#aeaeb6", "name": "Pewter 250" },
+ { "slug": "pewter-300", "color": "#8e8e99", "name": "Pewter 300" },
+ { "slug": "pewter-350", "color": "#6f6f7c", "name": "Pewter 350" },
+ { "slug": "pewter-400", "color": "#55555f", "name": "Pewter 400" },
+ { "slug": "pewter-450", "color": "#3d3d44", "name": "Pewter 450" },
+ { "slug": "pewter-500", "color": "#27272c", "name": "Pewter 500" },
+ { "slug": "pewter-550", "color": "#17171a", "name": "Pewter 550" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--pewter-400)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--pewter-550)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--pewter-500)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--pewter-550)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "4px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--pewter-450)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--pewter-550)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/pitch.json b/styles/pitch.json
index a40d47a8..2d99f683 100644
--- a/styles/pitch.json
+++ b/styles/pitch.json
@@ -32,48 +32,6 @@
}
]
},
- "spacing": {
- "spacingScale": {
- "steps": 7
- },
- "spacingSizes": [
- {
- "size": "calc(8px + 1.5625vw)",
- "slug": "20",
- "name": "1"
- },
- {
- "size": "calc(12px + 1.5625vw)",
- "slug": "30",
- "name": "2"
- },
- {
- "size": "calc(16px + 1.5625vw)",
- "slug": "40",
- "name": "3"
- },
- {
- "size": "calc(20px + 1.5625vw)",
- "slug": "50",
- "name": "4"
- },
- {
- "size": "calc(24px + 1.5625vw)",
- "slug": "60",
- "name": "5"
- },
- {
- "size": "calc(28px + 1.5625vw)",
- "slug": "70",
- "name": "6"
- },
- {
- "size": "calc(32px + 1.5625vw)",
- "slug": "80",
- "name": "7"
- }
- ]
- },
"typography": {
"fontSizes": [
{
@@ -140,88 +98,6 @@
}
}
},
- "elements": {
- "button": {
- "border": {
- "radius": "0",
- "style": "solid",
- "width": "2px",
- "color": "var(--wp--preset--color--primary)"
- },
- "color": {
- "background": "var(--wp--preset--color--primary)",
- "text": "var(--wp--preset--color--base)"
- },
- "spacing": {
- "padding": {
- "top": "min(1.125rem, 3vw) !important",
- "right": "min(2.125rem, 5vw) !important",
- "bottom": "min(1.125rem, 3vw) !important",
- "left": "min(2.125rem, 5vw) !important"
- }
- },
- "typography": {
- "fontSize": "var(--wp--preset--font-size--small)",
- "fontWeight": "600",
- "textTransform": "uppercase",
- "letterSpacing": "0.01em"
- },
- ":hover": {
- "border": {
- "color": "var(--wp--preset--color--contrast)"
- },
- "color": {
- "background": "var(--wp--preset--color--contrast)",
- "text": "var(--wp--preset--color--tertiary)"
- }
- },
- ":focus": {
- "border": {
- "color": "var(--wp--preset--color--contrast)"
- },
- "color": {
- "background": "var(--wp--preset--color--contrast)",
- "text": "var(--wp--preset--color--tertiary)"
- }
- },
- ":active": {
- "border": {
- "color": "var(--wp--preset--color--contrast)"
- },
- "color": {
- "background": "var(--wp--preset--color--contrast)",
- "text": "var(--wp--preset--color--tertiary)"
- }
- },
- ":visited": {
- "color": {
- "text": "var(--wp--preset--color--base)"
- }
- }
- },
- "h1": {
- "typography": {
- "fontSize": "var(--wp--preset--font-size--xx-large)",
- "lineHeight": "1.1"
- }
- },
- "h2": {
- "typography": {
- "fontSize": "var(--wp--preset--font-size--x-large)",
- "lineHeight": "1.1"
- }
- },
- "h3": {
- "typography": {
- "fontSize": "var(--wp--preset--font-size--large)"
- }
- },
- "heading": {
- "typography": {
- "fontWeight": "500"
- }
- }
- },
"spacing": {
"blockGap": "var(--wp--preset--spacing--40)",
"padding": {
diff --git a/styles/red.json b/styles/red.json
new file mode 100644
index 00000000..4e241596
--- /dev/null
+++ b/styles/red.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Red",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#fff0f0", "name": "Red 50" },
+ { "slug": "brisko-100", "color": "#ffdddd", "name": "Red 100" },
+ { "slug": "brisko-200", "color": "#ffc0c0", "name": "Red 200" },
+ { "slug": "brisko-300", "color": "#ff9494", "name": "Red 300" },
+ { "slug": "brisko-400", "color": "#ff5757", "name": "Red 400" },
+ { "slug": "brisko-500", "color": "#ff2323", "name": "Red 500" },
+ { "slug": "brisko-600", "color": "#ff0000", "name": "Red 600" },
+ { "slug": "brisko-700", "color": "#d70000", "name": "Red 700" },
+ { "slug": "brisko-800", "color": "#b10303", "name": "Red 800" },
+ { "slug": "brisko-900", "color": "#920a0a", "name": "Red 900" },
+ { "slug": "brisko-950", "color": "#500000", "name": "Red 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-600)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "4px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/spring.json b/styles/spring.json
new file mode 100644
index 00000000..20e7b30b
--- /dev/null
+++ b/styles/spring.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Green",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#effef5", "name": "Green 50" },
+ { "slug": "brisko-100", "color": "#d9ffe9", "name": "Green 100" },
+ { "slug": "brisko-200", "color": "#b6fcd5", "name": "Green 200" },
+ { "slug": "brisko-300", "color": "#7df8b4", "name": "Green 300" },
+ { "slug": "brisko-400", "color": "#3eea8b", "name": "Green 400" },
+ { "slug": "brisko-500", "color": "#1ee979", "name": "Green 500" },
+ { "slug": "brisko-600", "color": "#0aaf54", "name": "Green 600" },
+ { "slug": "brisko-700", "color": "#0c8945", "name": "Green 700" },
+ { "slug": "brisko-800", "color": "#0f6c39", "name": "Green 800" },
+ { "slug": "brisko-900", "color": "#0f5832", "name": "Green 900" },
+ { "slug": "brisko-950", "color": "#023119", "name": "Green 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-500)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "20px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/stone.json b/styles/stone.json
new file mode 100644
index 00000000..dbf0ad2d
--- /dev/null
+++ b/styles/stone.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Stone",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "stone-50", "color": "#fafaf9", "name": "Stone 50" },
+ { "slug": "stone-100", "color": "#f5f5f4", "name": "Stone 100" },
+ { "slug": "stone-150", "color": "#e7e5e4", "name": "Stone 150" },
+ { "slug": "stone-200", "color": "#d6d3d1", "name": "Stone 200" },
+ { "slug": "stone-250", "color": "#a8a29e", "name": "Stone 250" },
+ { "slug": "stone-300", "color": "#78716c", "name": "Stone 300" },
+ { "slug": "stone-350", "color": "#57534e", "name": "Stone 350" },
+ { "slug": "stone-400", "color": "#44403c", "name": "Stone 400" },
+ { "slug": "stone-450", "color": "#292524", "name": "Stone 450" },
+ { "slug": "stone-500", "color": "#1c1917", "name": "Stone 500" },
+ { "slug": "stone-550", "color": "#0c0a09", "name": "Stone 550" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--stone-400)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--stone-550)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--stone-500)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--stone-550)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "4px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--stone-450)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--stone-550)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/styles/totem.json b/styles/totem.json
new file mode 100644
index 00000000..cb8b92d2
--- /dev/null
+++ b/styles/totem.json
@@ -0,0 +1,157 @@
+{
+ "version": 3,
+ "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
+ "title": "Totem",
+ "settings": {
+ "color": {
+ "palette": [
+ { "slug": "brisko-50", "color": "#fff6eb", "name": "Totem 50" },
+ { "slug": "brisko-100", "color": "#ffedd0", "name": "Totem 100" },
+ { "slug": "brisko-200", "color": "#ffd5a1", "name": "Totem 200" },
+ { "slug": "brisko-300", "color": "#ffb565", "name": "Totem 300" },
+ { "slug": "brisko-400", "color": "#ff8927", "name": "Totem 400" },
+ { "slug": "brisko-500", "color": "#ff6700", "name": "Totem 500" },
+ { "slug": "brisko-600", "color": "#ff4800", "name": "Totem 600" },
+ { "slug": "brisko-700", "color": "#d63200", "name": "Totem 700" },
+ { "slug": "brisko-800", "color": "#a92803", "name": "Totem 800" },
+ { "slug": "brisko-900", "color": "#922607", "name": "Totem 900" },
+ { "slug": "brisko-950", "color": "#4a0e00", "name": "Totem 950" }
+ ]
+ },
+ "typography": {
+ "fontFamilies": [
+ {
+ "slug": "primary",
+ "fontFamily": "Inter, sans-serif",
+ "name": "Inter"
+ },
+ {
+ "slug": "secondary",
+ "fontFamily": "Georgia, serif",
+ "name": "Georgia"
+ },
+ {
+ "slug": "dm-sans",
+ "fontFamily": "'DM Sans', sans-serif",
+ "name": "DM Sans"
+ }
+ ],
+ "fontSizes": [
+ { "slug": "small", "size": "14px", "name": "Small" },
+ { "slug": "normal", "size": "16px", "name": "Normal" },
+ { "slug": "medium", "size": "18px", "name": "Medium" },
+ { "slug": "large", "size": "24px", "name": "Large" },
+ { "slug": "x-large", "size": "30px", "name": "X-Large" },
+ { "slug": "xx-large", "size": "36px", "name": "XX-Large" },
+ { "slug": "huge", "size": "48px", "name": "Huge" }
+ ]
+ }
+ },
+ "styles": {
+ "typography": {
+ "fontFamily": "var(--wp--preset--font-family--dm-sans)",
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ },
+ "elements": {
+ "h1": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--huge)",
+ "lineHeight": "1.1"
+ }
+ },
+ "h2": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--xx-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h3": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--x-large)",
+ "lineHeight": "1.2"
+ }
+ },
+ "h4": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--large)",
+ "fontWeight": "600"
+ }
+ },
+ "h5": {
+ "typography": {
+ "fontStyle": "normal",
+ "fontWeight": "600",
+ "textTransform": "none"
+ }
+ },
+ "h6": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--normal)",
+ "fontStyle": "normal",
+ "fontWeight": "600"
+ }
+ },
+ "link": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-500)"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "heading": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-800)"
+ }
+ }
+ },
+ "blocks": {
+ "core/group": {
+ "border": {
+ "radius": "0px"
+ },
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ },
+ "spacing": {
+ "padding": {
+ "top": "20px",
+ "right": "0px",
+ "bottom": "0px",
+ "left": "0px"
+ }
+ }
+ },
+ "core/button": {
+ "border": {
+ "radius": "6px"
+ },
+ "color": {
+ "background": "var(--wp--preset--color--brisko-700)",
+ "text": "#ffffff"
+ },
+ ":hover": {
+ "color": {
+ "text": "var(--wp--preset--color--brisko-950)"
+ }
+ }
+ },
+ "core/paragraph": {
+ "typography": {
+ "fontSize": "var(--wp--preset--font-size--medium)",
+ "lineHeight": "1.7"
+ }
+ },
+ "core/list": {
+ "spacing": {
+ "margin": {
+ "bottom": "1em"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/templates/404.html b/templates/404.html
index 92b2b745..8e569f2a 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -1,6 +1,6 @@
-
+
diff --git a/templates/archive.html b/templates/archive.html
index 676b37c6..08315874 100644
--- a/templates/archive.html
+++ b/templates/archive.html
@@ -1,7 +1,7 @@
-
-
+
+
diff --git a/templates/blog-alternative.html b/templates/blog-alternative.html
index cd6c89b5..4cb56627 100644
--- a/templates/blog-alternative.html
+++ b/templates/blog-alternative.html
@@ -1,6 +1,6 @@
-
+
diff --git a/templates/front-page.html b/templates/front-page.html
index a8739d7d..dbed7d48 100644
--- a/templates/front-page.html
+++ b/templates/front-page.html
@@ -1,7 +1,7 @@
-
-
+
+
@@ -28,10 +28,10 @@
Empower
-
+
-
Discover our Solutions
+Discover our Solutions
@@ -39,7 +39,7 @@
Discove
@@ -75,7 +75,7 @@ Featured Posts
-
+
diff --git a/templates/home.html b/templates/home.html
index c2337f76..0ee2cfab 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -1,7 +1,7 @@
-
-
+
+
diff --git a/templates/index.html b/templates/index.html
index bed3d1eb..055860c1 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,6 +1,6 @@
-
+
diff --git a/templates/page.html b/templates/page.html
index c9408fc0..dced2909 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,11 +1,10 @@
-
-
+
+
-
diff --git a/templates/search.html b/templates/search.html
index 2fb9405e..c244753e 100644
--- a/templates/search.html
+++ b/templates/search.html
@@ -1,7 +1,7 @@
-
-
+
+
diff --git a/templates/single.html b/templates/single.html
index 33d4dd46..47f85696 100644
--- a/templates/single.html
+++ b/templates/single.html
@@ -1,7 +1,7 @@
-
-
+
+