소스 검색

Update themecolors in wpcom.php

Kjell Reigstad 5 년 전
부모
커밋
3cc20a33da
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      balasana/inc/wpcom.php

+ 5 - 5
balasana/inc/wpcom.php

@@ -10,11 +10,11 @@ function balasana_wpcom_setup() {
 	// Set theme colors for third party services.
 	if ( ! isset( $themecolors ) ) {
 		$themecolors = array(
-			'bg'     => 'ffffff',
-			'border' => '767676',
-			'text'   => '111111',
-			'link'   => '0073aa',
-			'url'    => '0073aa',
+			'bg'     => 'white', // $config-global--color-background-default
+			'border' => 'D0D0D0', // $config-global--color-border-default
+			'text'   => '303030', // $config-global--color-foreground-default
+			'link'   => '19744C', // $config-global--color-primary-default
+			'url'    => '19744C', // $config-global--color-primary-default
 		);
 	}
 }