Add editor color annotations.
This commit is contained in:
parent
c72bf1c773
commit
a63690fdcf
1 changed files with 163 additions and 0 deletions
163
maywood/inc/wpcom-editor-colors.php
Normal file
163
maywood/inc/wpcom-editor-colors.php
Normal file
|
@ -0,0 +1,163 @@
|
|||
<?php
|
||||
/*
|
||||
* Custom Editor Colors
|
||||
*/
|
||||
|
||||
// Background Color
|
||||
// $config-global--color-background-default
|
||||
add_editor_color_rule( 'bg', '#FFFFFF', array(
|
||||
|
||||
// Background-color
|
||||
array( '#editor .editor-styles-wrapper,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation > div > ul > li > .sub-menu', 'background-color' ),
|
||||
|
||||
// Text-color
|
||||
array( '.wp-block-pullquote.is-style-solid-color', 'color' ),
|
||||
|
||||
/**
|
||||
* Utility Classes
|
||||
*/
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .has-primary-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-secondary-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-foreground-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-foreground-dark-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-foreground-light-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-background-color[class]', 'color' ),
|
||||
// Background-color
|
||||
array( '#editor .editor-styles-wrapper .has-background-background-color[class]', 'background-color' ),
|
||||
// Text-color darkened
|
||||
array( '#editor .editor-styles-wrapper .has-background-dark-color[class]', 'color', '-1' ),
|
||||
// Background-color darkened
|
||||
array( '#editor .editor-styles-wrapper .has-background-dark-background-color[class]', 'background-color', '-1' ),
|
||||
// Text-color lightened
|
||||
array( '#editor .editor-styles-wrapper .has-background-light-color[class]', 'color', '+1' ),
|
||||
// Background-color lightened
|
||||
array( '#editor .editor-styles-wrapper .has-background-light-background-color[class]', 'background-color', '+1' ),
|
||||
|
||||
/**
|
||||
* Grays
|
||||
* Uses a slightly darker color
|
||||
*/
|
||||
// Color
|
||||
array( '#editor .editor-styles-wrapper .wp-block-separator.is-style-dots', 'color', '-1' ),
|
||||
// Border-color
|
||||
array( '#editor .editor-styles-wrapper .wp-block-code', 'border-color', '-1' ),
|
||||
// Border-top-color
|
||||
array( '#editor .editor-styles-wrapper .wp-block-pullquote', 'border-top-color', '-1' ),
|
||||
// Border-bottom-color
|
||||
array( '#editor .editor-styles-wrapper .wp-block-pullquote,
|
||||
#editor .editor-styles-wrapper .wp-block-separator', 'border-bottom-color', '-1' ),
|
||||
|
||||
), __( 'Background Color' ) );
|
||||
|
||||
// Link Color
|
||||
// $config-global--color-primary-default
|
||||
add_editor_color_rule( 'link', '#897248', array(
|
||||
|
||||
// Background-color
|
||||
array( '#editor .editor-styles-wrapper .button,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation #toggle:focus + #toggle-menu,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation .button,
|
||||
#editor .editor-styles-wrapper .wp-block-a8c-blog-posts + .button,
|
||||
#editor .editor-styles-wrapper .wp-block-button__link,
|
||||
#editor .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color', 'background-color' ),
|
||||
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .fse-template-part .main-navigation a:hover,
|
||||
#editor .editor-styles-wrapper .is-style-outline .wp-block-button__link,
|
||||
#editor .editor-styles-wrapper .wp-block-a8c-blog-posts .entry-title a,
|
||||
#editor .editor-styles-wrapper .wp-block-button__link.is-style-outline,
|
||||
#editor .editor-styles-wrapper a', 'color' ),
|
||||
|
||||
// Border color left
|
||||
array( '#editor .editor-styles-wrapper .wp-block-quote', 'border-left-color' ),
|
||||
|
||||
// Border color right
|
||||
array( '#editor .editor-styles-wrapper .wp-block-quote[style*="text-align: right"],
|
||||
#editor .editor-styles-wrapper .wp-block-quote[style*="text-align:right"]', 'border-right-color' ),
|
||||
|
||||
/**
|
||||
* Utility Classes
|
||||
*/
|
||||
// Background-color
|
||||
array( '#editor .editor-styles-wrapper .has-primary-background-color[class]', 'background-color' ),
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .has-primary-color[class]', 'color' ),
|
||||
|
||||
), __( 'Link Color' ) );
|
||||
|
||||
// Text Color
|
||||
// $config-global--color-foreground-default
|
||||
add_editor_color_rule( 'txt', '#181818', array(
|
||||
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation a,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation a:link,
|
||||
#editor .editor-styles-wrapper .fse-template-part .main-navigation a:visited,
|
||||
#editor .editor-styles-wrapper .wp-block-pullquote,
|
||||
#editor .editor-styles-wrapper', 'color' ),
|
||||
|
||||
/**
|
||||
* Utility Classes
|
||||
*/
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .has-background-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-background-dark-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-background-light-background-color[class],
|
||||
#editor .editor-styles-wrapper .has-foreground-color[class]', 'color' ),
|
||||
// Background-color
|
||||
array( '#editor .editor-styles-wrapper .has-foreground-background-color[class]', 'background-color' ),
|
||||
// Text-color darkened
|
||||
array( '#editor .editor-styles-wrapper .has-foreground-dark-color[class]', 'color', '-1' ),
|
||||
// Background-color darkened
|
||||
array( '#editor .editor-styles-wrapper .has-foreground-dark-background-color[class]', 'background-color', '-1' ),
|
||||
// Text-color brightened
|
||||
array( '#editor .editor-styles-wrapper .has-foreground-light-color[class]', 'color', '+2' ),
|
||||
// Background-color brightened
|
||||
array( '#editor .editor-styles-wrapper .has-foreground-light-background-color[class]', 'background-color', '+2' ),
|
||||
|
||||
/**
|
||||
* Grays
|
||||
* Same as text color
|
||||
*/
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .a8c-posts-list__item .a8c-posts-list-item__meta,
|
||||
#editor .editor-styles-wrapper .wp-block-image figcaption,
|
||||
#editor .editor-styles-wrapper .wp-block-latest-comments .wp-block-latest-comments__comment-date,
|
||||
#editor .editor-styles-wrapper .wp-block-latest-posts .wp-block-latest-posts__post-date,
|
||||
#editor .editor-styles-wrapper .wp-block-newspack-blocks-homepage-articles article .cat-links,
|
||||
#editor .editor-styles-wrapper .wp-block-newspack-blocks-homepage-articles article .entry-meta,
|
||||
#editor .editor-styles-wrapper .wp-block-pullquote .wp-block-pullquote__citation,
|
||||
#editor .editor-styles-wrapper .wp-block-pullquote cite,
|
||||
#editor .editor-styles-wrapper .wp-block-pullquote footer,
|
||||
#editor .editor-styles-wrapper .wp-block-quote .wp-block-quote__citation,
|
||||
#editor .editor-styles-wrapper .wp-block-quote cite,
|
||||
#editor .editor-styles-wrapper .wp-block-quote footer,
|
||||
#editor .editor-styles-wrapper .wp-block-quote.is-large .wp-block-quote__citation,
|
||||
#editor .editor-styles-wrapper .wp-block-quote.is-large cite,
|
||||
#editor .editor-styles-wrapper .wp-block-quote.is-large footer,
|
||||
#editor .editor-styles-wrapper .wp-block-quote.is-style-large .wp-block-quote__citation,
|
||||
#editor .editor-styles-wrapper .wp-block-quote.is-style-large cite,
|
||||
#editor .editor-styles-wrapper .wp-block-quote.is-style-large footer,
|
||||
#editor .editor-styles-wrapper .wp-block-video figcaption,
|
||||
#editor .editor-styles-wrapper figcaption', 'color' ),
|
||||
|
||||
), __( 'Text Color' ) );
|
||||
|
||||
// Accent Color (Red)
|
||||
// $config-global--color-secondary-default
|
||||
add_editor_color_rule( 'fg1', '#c4493f', array(
|
||||
|
||||
/**
|
||||
* Utility Classes
|
||||
*/
|
||||
|
||||
// Text-color
|
||||
array( '#editor .editor-styles-wrapper .has-secondary-color[class]', 'color' ),
|
||||
// Background-color
|
||||
array( '#editor .editor-styles-wrapper .has-secondary-background-color[class]', 'background-color' ),
|
||||
|
||||
), __( 'Secondary Color' ) );
|
Loading…
Reference in a new issue