瀏覽代碼

Exford: Multiple changes

* Enqueue Source Sans Pro
* Use Source Sans Pro as the Primary font
* Update Primary/Secondary colours
Thomas Guillot 6 年之前
父節點
當前提交
1596502e39
共有 5 個文件被更改,包括 148 次插入138 次删除
  1. 11 1
      exford/functions.php
  2. 12 12
      exford/sass/_config-child-theme-deep.scss
  3. 21 21
      exford/style-editor.css
  4. 52 52
      exford/style-rtl.css
  5. 52 52
      exford/style.css

+ 11 - 1
exford/functions.php

@@ -126,13 +126,23 @@ function exford_fonts_url() {
 	*/
 	*/
 	$source_serif_pro = esc_html_x( 'on', 'Source Serif Pro font: on or off', 'exford' );
 	$source_serif_pro = esc_html_x( 'on', 'Source Serif Pro font: on or off', 'exford' );
 
 
-	if ( 'off' !== $source_serif_pro ) {
+	/* Translators: If there are characters in your language that are not
+	* supported by Source Sans Pro, translate this to 'off'. Do not translate
+	* into your own language.
+	*/
+	$source_sans_pro = esc_html_x( 'on', 'Source Sans Pro font: on or off', 'exford' );
+
+	if ( 'off' !== $source_serif_pro || 'off' !== $source_sans_pro ) {
 		$font_families = array();
 		$font_families = array();
 
 
 		if ( 'off' !== $source_serif_pro ) {
 		if ( 'off' !== $source_serif_pro ) {
 			$font_families[] = 'Source Serif Pro:400,700,400i,700i';
 			$font_families[] = 'Source Serif Pro:400,700,400i,700i';
 		}
 		}
 
 
+		if ( 'off' !== $source_sans_pro ) {
+			$font_families[] = 'Source Sans Pro:400,700,400i,700i';
+		}
+
 		$query_args = array(
 		$query_args = array(
 			'family' => urlencode( implode( '|', $font_families ) ),
 			'family' => urlencode( implode( '|', $font_families ) ),
 			'subset' => urlencode( 'latin,latin-ext' ),
 			'subset' => urlencode( 'latin,latin-ext' ),

+ 12 - 12
exford/sass/_config-child-theme-deep.scss

@@ -20,10 +20,10 @@ $config-global: (
 	"font": (
 	"font": (
 		/* Font Family */
 		/* Font Family */
 		"family": (
 		"family": (
-			"primary": "\"Source Serif Pro\"\, \"Baskerville Old Face\"\, Garamond\, \"Times New Roman\", serif",
+			"primary": "\"Source Sans Pro\"\, -apple-system\, BlinkMacSystemFont\, \"Segoe UI\"\, \"Roboto\"\, \"Oxygen\"\, \"Ubuntu\"\, \"Cantarell\"\, \"Fira Sans\"\, \"Droid Sans\"\, \"Helvetica Neue\"\, sans-serif",
 			"secondary": "\"Source Serif Pro\"\, \"Baskerville Old Face\"\, Garamond\, \"Times New Roman\", serif",
 			"secondary": "\"Source Serif Pro\"\, \"Baskerville Old Face\"\, Garamond\, \"Times New Roman\", serif",
-			"code": "monospace, monospace",
-			"ui": "-apple-system\, BlinkMacSystemFont\, \"Segoe UI\"\, \"Roboto\"\, \"Oxygen\"\, \"Ubuntu\"\, \"Cantarell\"\, \"Fira Sans\"\, \"Droid Sans\"\, \"Helvetica Neue\"\, sans-serif",
+			"code": "Monaco, Consolas, Lucida Console, monospace",
+			"ui": "\"Source Sans Pro\"\, -apple-system\, BlinkMacSystemFont\, \"Segoe UI\"\, \"Roboto\"\, \"Oxygen\"\, \"Ubuntu\"\, \"Cantarell\"\, \"Fira Sans\"\, \"Droid Sans\"\, \"Helvetica Neue\"\, sans-serif",
 		),
 		),
 		/* Font Size */
 		/* Font Size */
 		"size": (
 		"size": (
@@ -61,12 +61,12 @@ $config-global: (
 	/* Colors */
 	/* Colors */
 	"color": (
 	"color": (
 		"primary": (
 		"primary": (
-			"default": #c43d80,
-			"hover": #8a2a5a,
+			"default": #23883D,
+			"hover": darken(#23883D, 10%),
 		),
 		),
 		"secondary": (
 		"secondary": (
-			"default": #0B3954,
-			"hover": #051a27,
+			"default": #0963C4,
+			"hover": darken(#0963C4, 10%),
 		),
 		),
 		"foreground": (
 		"foreground": (
 			"default": #111111,
 			"default": #111111,
@@ -83,7 +83,7 @@ $config-global: (
 			"light": #FAFAFA,
 			"light": #FAFAFA,
 			"dark": #AAAAAA,
 			"dark": #AAAAAA,
 		),
 		),
-		"text-selection": lightblue,
+		"text-selection": lighten(#23883D, 60%),
 		"black": black,
 		"black": black,
 		"white": white,
 		"white": white,
 	),
 	),
@@ -188,7 +188,7 @@ $config-button: (
  * Cover
  * Cover
  */
  */
 $config-cover: (
 $config-cover: (
-	"height": calc( 15 * #{map-deep-get($config-global, "spacing", "vertical")} ),
+	"height": #{15 * map-deep-get($config-global, "spacing", "vertical")},
 );
 );
 
 
 /**
 /**
@@ -287,7 +287,7 @@ $config-header: (
 		"color": (
 		"color": (
 			"text": map-deep-get($config-global, "color", "foreground", "light"),
 			"text": map-deep-get($config-global, "color", "foreground", "light"),
 			"link": map-deep-get($config-global, "color", "foreground", "default"),
 			"link": map-deep-get($config-global, "color", "foreground", "default"),
-			"link-hover": map-deep-get($config-global, "color", "primary", "hover"),
+			"link-hover": map-deep-get($config-global, "color", "primary", "default"),
 		),
 		),
 		// Fonts & Typography
 		// Fonts & Typography
 		"title": (
 		"title": (
@@ -303,7 +303,7 @@ $config-header: (
 		"description": (
 		"description": (
 			// Fonts
 			// Fonts
 			"font": (
 			"font": (
-				"family": map-deep-get($config-global, "font", "family", "primary"),
+				"family": map-deep-get($config-global, "font", "family", "secondary"),
 				"size": map-deep-get($config-global, "font", "size", "sm"),
 				"size": map-deep-get($config-global, "font", "size", "sm"),
 			),
 			),
 		),
 		),
@@ -330,7 +330,7 @@ $config-header: (
 		// Colors
 		// Colors
 		"color": (
 		"color": (
 			"link": map-deep-get($config-global, "color", "foreground", "default"),
 			"link": map-deep-get($config-global, "color", "foreground", "default"),
-			"link-hover": map-deep-get($config-global, "color", "primary", "hover"),
+			"link-hover": map-deep-get($config-global, "color", "primary", "default"),
 		),
 		),
 		"link-padding": calc( 0.5 * calc(0.66 * #{map-deep-get($config-global, "spacing", "unit")} ) ),
 		"link-padding": calc( 0.5 * calc(0.66 * #{map-deep-get($config-global, "spacing", "unit")} ) ),
 	),
 	),

+ 21 - 21
exford/style-editor.css

@@ -180,11 +180,11 @@ p {
 }
 }
 
 
 a {
 a {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 a:hover {
 a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 button,
 button,
@@ -298,27 +298,27 @@ object {
 .wp-block-button .wp-block-button__link {
 .wp-block-button .wp-block-button__link {
 	color: white;
 	color: white;
 	font-weight: 700;
 	font-weight: 700;
-	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333em;
 	font-size: 0.83333em;
 	line-height: 1;
 	line-height: 1;
-	background-color: #c43d80;
+	background-color: #23883D;
 	border-radius: 5px;
 	border-radius: 5px;
 	padding: 16px 16px;
 	padding: 16px 16px;
 }
 }
 
 
 .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link.has-focus {
 .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link.has-focus {
 	color: white;
 	color: white;
-	background-color: #8a2a5a;
+	background-color: #195f2b;
 }
 }
 
 
 .wp-block-button.is-style-outline .wp-block-button__link {
 .wp-block-button.is-style-outline .wp-block-button__link {
-	color: #c43d80;
+	color: #23883D;
 	background: transparent;
 	background: transparent;
 	border: 2px solid currentcolor;
 	border: 2px solid currentcolor;
 }
 }
 
 
 .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
 .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .wp-block-button.is-style-squared .wp-block-button__link {
 .wp-block-button.is-style-squared .wp-block-button__link {
@@ -328,7 +328,7 @@ object {
 .wp-block-cover,
 .wp-block-cover,
 .wp-block-cover-image {
 .wp-block-cover-image {
 	background-color: #111111;
 	background-color: #111111;
-	min-height: calc( 15 * 32px);
+	min-height: 480px;
 	/* Treating H2 separately to account for legacy /core styles */
 	/* Treating H2 separately to account for legacy /core styles */
 }
 }
 
 
@@ -381,7 +381,7 @@ object {
 .wp-block-heading h4, h4, .h4,
 .wp-block-heading h4, h4, .h4,
 .wp-block-heading h5, h5, .h5,
 .wp-block-heading h5, h5, .h5,
 .wp-block-heading h6, h6, .h6 {
 .wp-block-heading h6, h6, .h6 {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: 700;
 	font-weight: 700;
 	clear: both;
 	clear: both;
 }
 }
@@ -478,7 +478,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-pullquote p {
 .wp-block-pullquote p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2em;
 	font-size: 1.2em;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -501,7 +501,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-pullquote.is-style-solid-color {
 .wp-block-pullquote.is-style-solid-color {
-	background-color: #c43d80;
+	background-color: #23883D;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -531,13 +531,13 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote {
 .wp-block-quote {
-	border-left-color: #c43d80;
+	border-left-color: #23883D;
 	margin: 32px 0;
 	margin: 32px 0;
 	padding-left: 16px;
 	padding-left: 16px;
 }
 }
 
 
 .wp-block-quote p {
 .wp-block-quote p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2em;
 	font-size: 1.2em;
 	letter-spacing: normal;
 	letter-spacing: normal;
 }
 }
@@ -548,7 +548,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
 .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.44em;
 	font-size: 1.44em;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -583,7 +583,7 @@ hr.is-style-dots:before {
 
 
 table th,
 table th,
 .wp-block-table th {
 .wp-block-table th {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 table td,
 table td,
@@ -599,7 +599,7 @@ table th,
  */
  */
 .editor-post-title__block .editor-post-title__input {
 .editor-post-title__block .editor-post-title__input {
 	color: #111111;
 	color: #111111;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: 700;
 	font-weight: 700;
 	font-size: 1.728em;
 	font-size: 1.728em;
 	letter-spacing: normal;
 	letter-spacing: normal;
@@ -607,11 +607,11 @@ table th,
 }
 }
 
 
 .has-primary-color[class] {
 .has-primary-color[class] {
-	color: #c43d80 !important;
+	color: #23883D !important;
 }
 }
 
 
 .has-secondary-color[class] {
 .has-secondary-color[class] {
-	color: #0B3954 !important;
+	color: #0963C4 !important;
 }
 }
 
 
 .has-foreground-color[class] {
 .has-foreground-color[class] {
@@ -639,7 +639,7 @@ table th,
 }
 }
 
 
 .has-primary-background-color[class] {
 .has-primary-background-color[class] {
-	background-color: #c43d80 !important;
+	background-color: #23883D !important;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -649,7 +649,7 @@ table th,
 }
 }
 
 
 .has-secondary-background-color[class] {
 .has-secondary-background-color[class] {
-	background-color: #0B3954 !important;
+	background-color: #0963C4 !important;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -744,7 +744,7 @@ table th,
 }
 }
 
 
 .has-drop-cap:not(:focus)::first-letter {
 .has-drop-cap:not(:focus)::first-letter {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: calc(2 * 2.0736em);
 	font-size: calc(2 * 2.0736em);
 	font-weight: 700;
 	font-weight: 700;
 }
 }

+ 52 - 52
exford/style-rtl.css

@@ -603,11 +603,11 @@ body {
  * Links styles
  * Links styles
  */
  */
 a {
 a {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 a:hover {
 a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 button,
 button,
@@ -709,11 +709,11 @@ footer {
 }
 }
 
 
 ::selection {
 ::selection {
-	background-color: lightblue;
+	background-color: #e5f8ea;
 }
 }
 
 
 ::-moz-selection {
 ::-moz-selection {
-	background-color: lightblue;
+	background-color: #e5f8ea;
 }
 }
 
 
 /**
 /**
@@ -988,7 +988,7 @@ input[type="datetime-local"]:focus,
 input[type="color"]:focus,
 input[type="color"]:focus,
 textarea:focus {
 textarea:focus {
 	color: #111111;
 	color: #111111;
-	border-color: #8a2a5a;
+	border-color: #195f2b;
 }
 }
 
 
 select {
 select {
@@ -1073,9 +1073,9 @@ input[type="submit"],
 	color: white;
 	color: white;
 	cursor: pointer;
 	cursor: pointer;
 	font-weight: 700;
 	font-weight: 700;
-	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
-	background-color: #c43d80;
+	background-color: #23883D;
 	border-radius: 5px;
 	border-radius: 5px;
 	border-width: 0;
 	border-width: 0;
 	padding: 16px 16px;
 	padding: 16px 16px;
@@ -1126,21 +1126,21 @@ input.has-focus[type="submit"],
 .has-focus.wp-block-button__link,
 .has-focus.wp-block-button__link,
 .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all {
 .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all {
 	color: white;
 	color: white;
-	background-color: #8a2a5a;
+	background-color: #195f2b;
 }
 }
 
 
 /**
 /**
  * Block Options
  * Block Options
  */
  */
 .wp-block-button.is-style-outline .wp-block-button__link {
 .wp-block-button.is-style-outline .wp-block-button__link {
-	color: #c43d80;
+	color: #23883D;
 	background: transparent;
 	background: transparent;
 	border: 2px solid currentcolor;
 	border: 2px solid currentcolor;
 	padding: 14px 16px;
 	padding: 14px 16px;
 }
 }
 
 
 .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
 .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .wp-block-button.is-style-squared .wp-block-button__link {
 .wp-block-button.is-style-squared .wp-block-button__link {
@@ -1213,7 +1213,7 @@ input.has-focus[type="submit"],
 .wp-block-cover,
 .wp-block-cover,
 .wp-block-cover-image {
 .wp-block-cover-image {
 	background-color: #111111;
 	background-color: #111111;
-	min-height: calc( 15 * 32px);
+	min-height: 480px;
 	margin: inherit;
 	margin: inherit;
 	/* Treating H2 separately to account for legacy /core styles */
 	/* Treating H2 separately to account for legacy /core styles */
 	/**
 	/**
@@ -1318,7 +1318,7 @@ input.has-focus[type="submit"],
 }
 }
 
 
 .wp-block-file .wp-block-file__button {
 .wp-block-file .wp-block-file__button {
-	background-color: #c43d80;
+	background-color: #23883D;
 	color: white;
 	color: white;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	margin-right: 16px;
 	margin-right: 16px;
@@ -1398,7 +1398,7 @@ h3, .h3,
 h4, .h4,
 h4, .h4,
 h5, .h5,
 h5, .h5,
 h6, .h6 {
 h6, .h6 {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: 700;
 	font-weight: 700;
 	clear: both;
 	clear: both;
 }
 }
@@ -1486,7 +1486,7 @@ img {
 }
 }
 
 
 .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
 .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 .wp-block-latest-comments .wp-block-latest-comments__comment-date {
 .wp-block-latest-comments .wp-block-latest-comments__comment-date {
@@ -1519,7 +1519,7 @@ img {
 }
 }
 
 
 .wp-block-latest-posts > li > a {
 .wp-block-latest-posts > li > a {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	font-weight: 700;
 	font-weight: 700;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -1586,7 +1586,7 @@ img {
 
 
 ul,
 ul,
 ol {
 ol {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	margin: 0 16px 0 0;
 	margin: 0 16px 0 0;
 	padding: 0;
 	padding: 0;
 }
 }
@@ -1600,7 +1600,7 @@ ol {
 }
 }
 
 
 dt {
 dt {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: bold;
 	font-weight: bold;
 }
 }
 
 
@@ -1675,8 +1675,8 @@ p.has-background:not(.has-background-background-color) a {
 
 
 .a8c-posts-list-item__featured span {
 .a8c-posts-list-item__featured span {
 	color: #FFFFFF;
 	color: #FFFFFF;
-	background-color: #c43d80;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	background-color: #23883D;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: bold;
 	font-weight: bold;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	line-height: 1;
 	line-height: 1;
@@ -1722,7 +1722,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
 .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .a8c-posts-list__item .a8c-posts-list-item__edit-link {
 .a8c-posts-list__item .a8c-posts-list-item__edit-link {
@@ -1749,7 +1749,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-pullquote p {
 .wp-block-pullquote p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -1781,7 +1781,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-pullquote.is-style-solid-color {
 .wp-block-pullquote.is-style-solid-color {
-	background-color: #c43d80;
+	background-color: #23883D;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -1806,7 +1806,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote {
 .wp-block-quote {
-	border-right-color: #c43d80;
+	border-right-color: #23883D;
 	margin: 32px 0;
 	margin: 32px 0;
 	padding: 0 16px;
 	padding: 0 16px;
 	/**
 	/**
@@ -1828,7 +1828,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote p {
 .wp-block-quote p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -1849,7 +1849,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
 .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
-	border-left-color: #c43d80;
+	border-left-color: #23883D;
 }
 }
 
 
 .wp-block-quote.is-style-large, .wp-block-quote.is-large {
 .wp-block-quote.is-style-large, .wp-block-quote.is-large {
@@ -1929,7 +1929,7 @@ table,
 
 
 table th,
 table th,
 .wp-block-table th {
 .wp-block-table th {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 table td,
 table td,
@@ -2010,11 +2010,11 @@ table th,
 }
 }
 
 
 .has-primary-color[class] {
 .has-primary-color[class] {
-	color: #c43d80 !important;
+	color: #23883D !important;
 }
 }
 
 
 .has-secondary-color[class] {
 .has-secondary-color[class] {
-	color: #0B3954 !important;
+	color: #0963C4 !important;
 }
 }
 
 
 .has-foreground-color[class] {
 .has-foreground-color[class] {
@@ -2042,7 +2042,7 @@ table th,
 }
 }
 
 
 .has-primary-background-color[class] {
 .has-primary-background-color[class] {
-	background-color: #c43d80 !important;
+	background-color: #23883D !important;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -2051,7 +2051,7 @@ table th,
 }
 }
 
 
 .has-secondary-background-color[class] {
 .has-secondary-background-color[class] {
-	background-color: #0B3954 !important;
+	background-color: #0963C4 !important;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -2139,7 +2139,7 @@ table th,
 }
 }
 
 
 .has-drop-cap:not(:focus)::first-letter {
 .has-drop-cap:not(:focus)::first-letter {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: calc(2 * 2.0736rem);
 	font-size: calc(2 * 2.0736rem);
 	font-weight: 700;
 	font-weight: 700;
 	line-height: 0.66;
 	line-height: 0.66;
@@ -2285,7 +2285,7 @@ table th,
 
 
 .site-title {
 .site-title {
 	color: #111111;
 	color: #111111;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.728rem;
 	font-size: 1.728rem;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1;
 	line-height: 1;
@@ -2301,7 +2301,7 @@ table th,
 }
 }
 
 
 .site-title a:hover {
 .site-title a:hover {
-	color: #8a2a5a;
+	color: #23883D;
 }
 }
 
 
 .site-description {
 .site-description {
@@ -2328,7 +2328,7 @@ table th,
 }
 }
 
 
 .main-navigation #toggle:focus + #toggle-menu {
 .main-navigation #toggle:focus + #toggle-menu {
-	background-color: #8a2a5a;
+	background-color: #195f2b;
 	outline: inherit;
 	outline: inherit;
 	text-decoration: underline;
 	text-decoration: underline;
 }
 }
@@ -2459,20 +2459,20 @@ table th,
 }
 }
 
 
 .main-navigation a {
 .main-navigation a {
-	color: #c43d80;
+	color: #23883D;
 	display: block;
 	display: block;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1rem;
 	font-size: 1rem;
 	font-weight: 700;
 	font-weight: 700;
 	padding: 16px;
 	padding: 16px;
 }
 }
 
 
 .main-navigation a:link, .main-navigation a:visited {
 .main-navigation a:link, .main-navigation a:visited {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 .main-navigation a:hover {
 .main-navigation a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .main-navigation .sub-menu {
 .main-navigation .sub-menu {
@@ -2536,7 +2536,7 @@ table th,
 }
 }
 
 
 .social-navigation a:hover {
 .social-navigation a:hover {
-	color: #8a2a5a;
+	color: #23883D;
 }
 }
 
 
 .social-navigation svg {
 .social-navigation svg {
@@ -2559,7 +2559,7 @@ table th,
 
 
 .site-info {
 .site-info {
 	color: #6e6e6e;
 	color: #6e6e6e;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 }
 }
 
 
@@ -2585,7 +2585,7 @@ table th,
 }
 }
 
 
 .site-info a:hover {
 .site-info a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .footer-navigation {
 .footer-navigation {
@@ -2633,7 +2633,7 @@ table th,
 }
 }
 
 
 .footer-navigation .footer-menu a {
 .footer-navigation .footer-menu a {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	font-weight: 700;
 	font-weight: 700;
 	padding: 16px;
 	padding: 16px;
@@ -2645,7 +2645,7 @@ table th,
 }
 }
 
 
 .footer-navigation .footer-menu a:hover {
 .footer-navigation .footer-menu a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .entry-title {
 .entry-title {
@@ -2693,7 +2693,7 @@ table th,
 .entry-meta a:hover, .entry-meta a:active,
 .entry-meta a:hover, .entry-meta a:active,
 .entry-footer a:hover,
 .entry-footer a:hover,
 .entry-footer a:active {
 .entry-footer a:active {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .entry-meta .svg-icon,
 .entry-meta .svg-icon,
@@ -2767,7 +2767,7 @@ table th,
 }
 }
 
 
 .post-navigation .post-title {
 .post-navigation .post-title {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.44rem;
 	font-size: 1.44rem;
 	font-weight: 600;
 	font-weight: 600;
 }
 }
@@ -2794,7 +2794,7 @@ table th,
 }
 }
 
 
 .pagination .nav-links > * {
 .pagination .nav-links > * {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	font-weight: 600;
 	font-weight: 600;
 	padding-right: calc(0.66 * 16px);
 	padding-right: calc(0.66 * 16px);
@@ -2937,7 +2937,7 @@ table th,
 }
 }
 
 
 .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
 .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 @media only screen and (min-width: 560px) {
 @media only screen and (min-width: 560px) {
@@ -2975,7 +2975,7 @@ table th,
 .comment-author .fn,
 .comment-author .fn,
 .pingback .url,
 .pingback .url,
 .trackback .url {
 .trackback .url {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 /**
 /**
@@ -3077,7 +3077,7 @@ table th,
  * Comment Nav
  * Comment Nav
  */
  */
 .comment-navigation a {
 .comment-navigation a {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	font-weight: 600;
 	font-weight: 600;
 }
 }
@@ -3107,8 +3107,8 @@ img#wpstats {
  */
  */
 .sticky-post {
 .sticky-post {
 	color: #FFFFFF;
 	color: #FFFFFF;
-	background-color: #c43d80;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	background-color: #23883D;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: bold;
 	font-weight: bold;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	line-height: 1;
 	line-height: 1;
@@ -3480,7 +3480,7 @@ p:not(.site-title) a:hover {
 .a8c-posts-list .a8c-posts-list-item__title a:active,
 .a8c-posts-list .a8c-posts-list-item__title a:active,
 .a8c-posts-list .a8c-posts-list-item__title a:focus,
 .a8c-posts-list .a8c-posts-list-item__title a:focus,
 .a8c-posts-list .a8c-posts-list-item__title a:hover {
 .a8c-posts-list .a8c-posts-list-item__title a:hover {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 .sticky-post,
 .sticky-post,

+ 52 - 52
exford/style.css

@@ -603,11 +603,11 @@ body {
  * Links styles
  * Links styles
  */
  */
 a {
 a {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 a:hover {
 a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 button,
 button,
@@ -709,11 +709,11 @@ footer {
 }
 }
 
 
 ::selection {
 ::selection {
-	background-color: lightblue;
+	background-color: #e5f8ea;
 }
 }
 
 
 ::-moz-selection {
 ::-moz-selection {
-	background-color: lightblue;
+	background-color: #e5f8ea;
 }
 }
 
 
 /**
 /**
@@ -988,7 +988,7 @@ input[type="datetime-local"]:focus,
 input[type="color"]:focus,
 input[type="color"]:focus,
 textarea:focus {
 textarea:focus {
 	color: #111111;
 	color: #111111;
-	border-color: #8a2a5a;
+	border-color: #195f2b;
 }
 }
 
 
 select {
 select {
@@ -1073,9 +1073,9 @@ input[type="submit"],
 	color: white;
 	color: white;
 	cursor: pointer;
 	cursor: pointer;
 	font-weight: 700;
 	font-weight: 700;
-	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
-	background-color: #c43d80;
+	background-color: #23883D;
 	border-radius: 5px;
 	border-radius: 5px;
 	border-width: 0;
 	border-width: 0;
 	padding: 16px 16px;
 	padding: 16px 16px;
@@ -1126,21 +1126,21 @@ input.has-focus[type="submit"],
 .has-focus.wp-block-button__link,
 .has-focus.wp-block-button__link,
 .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all {
 .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all {
 	color: white;
 	color: white;
-	background-color: #8a2a5a;
+	background-color: #195f2b;
 }
 }
 
 
 /**
 /**
  * Block Options
  * Block Options
  */
  */
 .wp-block-button.is-style-outline .wp-block-button__link {
 .wp-block-button.is-style-outline .wp-block-button__link {
-	color: #c43d80;
+	color: #23883D;
 	background: transparent;
 	background: transparent;
 	border: 2px solid currentcolor;
 	border: 2px solid currentcolor;
 	padding: 14px 16px;
 	padding: 14px 16px;
 }
 }
 
 
 .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
 .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .wp-block-button.is-style-squared .wp-block-button__link {
 .wp-block-button.is-style-squared .wp-block-button__link {
@@ -1213,7 +1213,7 @@ input.has-focus[type="submit"],
 .wp-block-cover,
 .wp-block-cover,
 .wp-block-cover-image {
 .wp-block-cover-image {
 	background-color: #111111;
 	background-color: #111111;
-	min-height: calc( 15 * 32px);
+	min-height: 480px;
 	margin: inherit;
 	margin: inherit;
 	/* Treating H2 separately to account for legacy /core styles */
 	/* Treating H2 separately to account for legacy /core styles */
 	/**
 	/**
@@ -1318,7 +1318,7 @@ input.has-focus[type="submit"],
 }
 }
 
 
 .wp-block-file .wp-block-file__button {
 .wp-block-file .wp-block-file__button {
-	background-color: #c43d80;
+	background-color: #23883D;
 	color: white;
 	color: white;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	margin-left: 16px;
 	margin-left: 16px;
@@ -1398,7 +1398,7 @@ h3, .h3,
 h4, .h4,
 h4, .h4,
 h5, .h5,
 h5, .h5,
 h6, .h6 {
 h6, .h6 {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: 700;
 	font-weight: 700;
 	clear: both;
 	clear: both;
 }
 }
@@ -1486,7 +1486,7 @@ img {
 }
 }
 
 
 .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
 .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 .wp-block-latest-comments .wp-block-latest-comments__comment-date {
 .wp-block-latest-comments .wp-block-latest-comments__comment-date {
@@ -1519,7 +1519,7 @@ img {
 }
 }
 
 
 .wp-block-latest-posts > li > a {
 .wp-block-latest-posts > li > a {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	font-weight: 700;
 	font-weight: 700;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -1586,7 +1586,7 @@ img {
 
 
 ul,
 ul,
 ol {
 ol {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	margin: 0 0 0 16px;
 	margin: 0 0 0 16px;
 	padding: 0;
 	padding: 0;
 }
 }
@@ -1600,7 +1600,7 @@ ol {
 }
 }
 
 
 dt {
 dt {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: bold;
 	font-weight: bold;
 }
 }
 
 
@@ -1675,8 +1675,8 @@ p.has-background:not(.has-background-background-color) a {
 
 
 .a8c-posts-list-item__featured span {
 .a8c-posts-list-item__featured span {
 	color: #FFFFFF;
 	color: #FFFFFF;
-	background-color: #c43d80;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	background-color: #23883D;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: bold;
 	font-weight: bold;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	line-height: 1;
 	line-height: 1;
@@ -1722,7 +1722,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
 .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .a8c-posts-list__item .a8c-posts-list-item__edit-link {
 .a8c-posts-list__item .a8c-posts-list-item__edit-link {
@@ -1749,7 +1749,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-pullquote p {
 .wp-block-pullquote p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -1781,7 +1781,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-pullquote.is-style-solid-color {
 .wp-block-pullquote.is-style-solid-color {
-	background-color: #c43d80;
+	background-color: #23883D;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -1806,7 +1806,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote {
 .wp-block-quote {
-	border-left-color: #c43d80;
+	border-left-color: #23883D;
 	margin: 32px 0;
 	margin: 32px 0;
 	padding: 0 16px;
 	padding: 0 16px;
 	/**
 	/**
@@ -1828,7 +1828,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote p {
 .wp-block-quote p {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1.125;
 	line-height: 1.125;
@@ -1849,7 +1849,7 @@ p.has-background:not(.has-background-background-color) a {
 }
 }
 
 
 .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
 .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
-	border-right-color: #c43d80;
+	border-right-color: #23883D;
 }
 }
 
 
 .wp-block-quote.is-style-large, .wp-block-quote.is-large {
 .wp-block-quote.is-style-large, .wp-block-quote.is-large {
@@ -1929,7 +1929,7 @@ table,
 
 
 table th,
 table th,
 .wp-block-table th {
 .wp-block-table th {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 table td,
 table td,
@@ -2014,11 +2014,11 @@ table th,
 }
 }
 
 
 .has-primary-color[class] {
 .has-primary-color[class] {
-	color: #c43d80 !important;
+	color: #23883D !important;
 }
 }
 
 
 .has-secondary-color[class] {
 .has-secondary-color[class] {
-	color: #0B3954 !important;
+	color: #0963C4 !important;
 }
 }
 
 
 .has-foreground-color[class] {
 .has-foreground-color[class] {
@@ -2046,7 +2046,7 @@ table th,
 }
 }
 
 
 .has-primary-background-color[class] {
 .has-primary-background-color[class] {
-	background-color: #c43d80 !important;
+	background-color: #23883D !important;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -2055,7 +2055,7 @@ table th,
 }
 }
 
 
 .has-secondary-background-color[class] {
 .has-secondary-background-color[class] {
-	background-color: #0B3954 !important;
+	background-color: #0963C4 !important;
 	color: #FFFFFF;
 	color: #FFFFFF;
 }
 }
 
 
@@ -2143,7 +2143,7 @@ table th,
 }
 }
 
 
 .has-drop-cap:not(:focus)::first-letter {
 .has-drop-cap:not(:focus)::first-letter {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: calc(2 * 2.0736rem);
 	font-size: calc(2 * 2.0736rem);
 	font-weight: 700;
 	font-weight: 700;
 	line-height: 0.66;
 	line-height: 0.66;
@@ -2289,7 +2289,7 @@ table th,
 
 
 .site-title {
 .site-title {
 	color: #111111;
 	color: #111111;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.728rem;
 	font-size: 1.728rem;
 	letter-spacing: normal;
 	letter-spacing: normal;
 	line-height: 1;
 	line-height: 1;
@@ -2305,7 +2305,7 @@ table th,
 }
 }
 
 
 .site-title a:hover {
 .site-title a:hover {
-	color: #8a2a5a;
+	color: #23883D;
 }
 }
 
 
 .site-description {
 .site-description {
@@ -2332,7 +2332,7 @@ table th,
 }
 }
 
 
 .main-navigation #toggle:focus + #toggle-menu {
 .main-navigation #toggle:focus + #toggle-menu {
-	background-color: #8a2a5a;
+	background-color: #195f2b;
 	outline: inherit;
 	outline: inherit;
 	text-decoration: underline;
 	text-decoration: underline;
 }
 }
@@ -2463,20 +2463,20 @@ table th,
 }
 }
 
 
 .main-navigation a {
 .main-navigation a {
-	color: #c43d80;
+	color: #23883D;
 	display: block;
 	display: block;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1rem;
 	font-size: 1rem;
 	font-weight: 700;
 	font-weight: 700;
 	padding: 16px;
 	padding: 16px;
 }
 }
 
 
 .main-navigation a:link, .main-navigation a:visited {
 .main-navigation a:link, .main-navigation a:visited {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 .main-navigation a:hover {
 .main-navigation a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .main-navigation .sub-menu {
 .main-navigation .sub-menu {
@@ -2540,7 +2540,7 @@ table th,
 }
 }
 
 
 .social-navigation a:hover {
 .social-navigation a:hover {
-	color: #8a2a5a;
+	color: #23883D;
 }
 }
 
 
 .social-navigation svg {
 .social-navigation svg {
@@ -2563,7 +2563,7 @@ table th,
 
 
 .site-info {
 .site-info {
 	color: #6e6e6e;
 	color: #6e6e6e;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 }
 }
 
 
@@ -2589,7 +2589,7 @@ table th,
 }
 }
 
 
 .site-info a:hover {
 .site-info a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .footer-navigation {
 .footer-navigation {
@@ -2637,7 +2637,7 @@ table th,
 }
 }
 
 
 .footer-navigation .footer-menu a {
 .footer-navigation .footer-menu a {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	font-weight: 700;
 	font-weight: 700;
 	padding: 16px;
 	padding: 16px;
@@ -2649,7 +2649,7 @@ table th,
 }
 }
 
 
 .footer-navigation .footer-menu a:hover {
 .footer-navigation .footer-menu a:hover {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .entry-title {
 .entry-title {
@@ -2697,7 +2697,7 @@ table th,
 .entry-meta a:hover, .entry-meta a:active,
 .entry-meta a:hover, .entry-meta a:active,
 .entry-footer a:hover,
 .entry-footer a:hover,
 .entry-footer a:active {
 .entry-footer a:active {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 .entry-meta .svg-icon,
 .entry-meta .svg-icon,
@@ -2771,7 +2771,7 @@ table th,
 }
 }
 
 
 .post-navigation .post-title {
 .post-navigation .post-title {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.44rem;
 	font-size: 1.44rem;
 	font-weight: 600;
 	font-weight: 600;
 }
 }
@@ -2798,7 +2798,7 @@ table th,
 }
 }
 
 
 .pagination .nav-links > * {
 .pagination .nav-links > * {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	font-weight: 600;
 	font-weight: 600;
 	padding-left: calc(0.66 * 16px);
 	padding-left: calc(0.66 * 16px);
@@ -2941,7 +2941,7 @@ table th,
 }
 }
 
 
 .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
 .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
-	color: #8a2a5a;
+	color: #195f2b;
 }
 }
 
 
 @media only screen and (min-width: 560px) {
 @media only screen and (min-width: 560px) {
@@ -2979,7 +2979,7 @@ table th,
 .comment-author .fn,
 .comment-author .fn,
 .pingback .url,
 .pingback .url,
 .trackback .url {
 .trackback .url {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 }
 }
 
 
 /**
 /**
@@ -3081,7 +3081,7 @@ table th,
  * Comment Nav
  * Comment Nav
  */
  */
 .comment-navigation a {
 .comment-navigation a {
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-size: 1.2rem;
 	font-size: 1.2rem;
 	font-weight: 600;
 	font-weight: 600;
 }
 }
@@ -3111,8 +3111,8 @@ img#wpstats {
  */
  */
 .sticky-post {
 .sticky-post {
 	color: #FFFFFF;
 	color: #FFFFFF;
-	background-color: #c43d80;
-	font-family: "Source Serif Pro", "Baskerville Old Face", Garamond, "Times New Roman", serif;
+	background-color: #23883D;
+	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
 	font-weight: bold;
 	font-weight: bold;
 	font-size: 0.83333rem;
 	font-size: 0.83333rem;
 	line-height: 1;
 	line-height: 1;
@@ -3496,7 +3496,7 @@ p:not(.site-title) a:hover {
 .a8c-posts-list .a8c-posts-list-item__title a:active,
 .a8c-posts-list .a8c-posts-list-item__title a:active,
 .a8c-posts-list .a8c-posts-list-item__title a:focus,
 .a8c-posts-list .a8c-posts-list-item__title a:focus,
 .a8c-posts-list .a8c-posts-list-item__title a:hover {
 .a8c-posts-list .a8c-posts-list-item__title a:hover {
-	color: #c43d80;
+	color: #23883D;
 }
 }
 
 
 .sticky-post,
 .sticky-post,