123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- /*
- * Custom Editor Colors
- */
- // Background Color
- // $config-global--color-background-default
- add_editor_color_rule(
- 'bg',
- '#FFFFFF',
- array(
- // Text-color
- array(
- '#editor .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color',
- 'color',
- ),
- // 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 darkened
- array( '#editor .editor-styles-wrapper .wp-block-separator.is-style-dots', 'color', '-1' ),
- // Border-color darkened
- array( '#editor .editor-styles-wrapper .wp-block-code', 'border-color', '-1' ),
- // Border-top-color darkened
- array( '#editor .editor-styles-wrapper .wp-block-pullquote', 'border-top-color', '-1' ),
- // Border-bottom-color darkened
- array(
- '#editor .editor-styles-wrapper .wp-block-pullquote,
- #editor .editor-styles-wrapper .wp-block-separator',
- 'border-bottom-color',
- '-1',
- ),
- // Background-color darkened
- array(
- '#editor .editor-styles-wrapper .wp-block-table.is-style-stripes tbody tr:nth-child(odd),
- #editor .editor-styles-wrapper table.is-style-stripes tbody tr:nth-child(odd)',
- 'color',
- '-1',
- ),
- /**
- * Utility Classes
- */
- // Text-color
- array(
- '#editor .editor-styles-wrapper .has-primary-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-primary-background-color[class],
- #editor .editor-styles-wrapper .has-secondary-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-secondary-background-color[class],
- #editor .editor-styles-wrapper .has-foreground-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-background-color[class],
- #editor .editor-styles-wrapper .has-foreground-dark-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-dark-background-color[class],
- #editor .editor-styles-wrapper .has-foreground-light-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-light-background-color[class],
- #editor .editor-styles-wrapper .has-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-color[class]',
- 'color',
- ),
- // Background-color
- array(
- '#editor .editor-styles-wrapper .has-background-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-background-color[class]',
- 'background-color',
- ),
- // Text-color darkened
- array(
- '#editor .editor-styles-wrapper .has-background-dark-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-dark-color[class]',
- 'color',
- '-1',
- ),
- // Background-color darkened
- array(
- '#editor .editor-styles-wrapper .has-background-dark-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-dark-background-color[class]',
- 'background-color',
- '-1',
- ),
- // Text-color lightened
- array(
- '#editor .editor-styles-wrapper .has-background-light-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-light-color[class]',
- 'color',
- '+1',
- ),
- // Background-color lightened
- array(
- '#editor .editor-styles-wrapper .has-background-light-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-light-background-color[class]',
- 'background-color',
- '+1',
- ),
- ),
- __( 'Background Color' )
- );
- // Link Color
- // $config-global--color-primary-default
- add_editor_color_rule(
- 'link',
- '#897248',
- array(
- // Text-color
- array(
- '#editor .editor-styles-wrapper .fse-template-part .main-navigation a:hover,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .entry-title a,
- #editor .editor-styles-wrapper .is-style-outline .wp-block-button__link,
- #editor .editor-styles-wrapper .wp-block-button__link.is-style-outline,
- #editor .editor-styles-wrapper a',
- 'color',
- ),
- // Background-color
- array(
- '#editor .editor-styles-wrapper .button,
- #editor .editor-styles-wrapper .wp-block-search .wp-block-search__button,
- #editor .editor-styles-wrapper .wp-block-search .wp-block-search__button:hover,
- #editor .editor-styles-wrapper .wp-block-search .wp-block-search__button:not(.has-background):hover,
- #editor .editor-styles-wrapper .wp-block-search .wp-block-search__button:focus,
- #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:not(.is-style-outline) .wp-block-button__link,
- #editor .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color',
- 'background-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',
- ),
- // Text-color darkened
- array(
- '#editor .editor-styles-wrapper .is-style-outline .wp-block-button__link.has-focus,
- #editor .editor-styles-wrapper .is-style-outline .wp-block-button__link:focus,
- #editor .editor-styles-wrapper .is-style-outline .wp-block-button__link:hover,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .cat-links a:active,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .cat-links a:hover,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .entry-meta a:active,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .entry-meta a:hover,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .entry-title a:hover,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .more-link:active,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts .more-link:hover,
- #editor .editor-styles-wrapper .wp-block-button__link.is-style-outline.has-focus,
- #editor .editor-styles-wrapper .wp-block-button__link.is-style-outline:focus,
- #editor .editor-styles-wrapper .wp-block-button__link.is-style-outline:hover,
- #editor .editor-styles-wrapper a:hover',
- 'color',
- '-1',
- ),
- // Background-color darkened
- array(
- '#editor .editor-styles-wrapper .button.has-focus,
- #editor .editor-styles-wrapper .button:focus,
- #editor .editor-styles-wrapper .button:hover,
- #editor .editor-styles-wrapper .fse-template-part .main-navigation .button:focus,
- #editor .editor-styles-wrapper .fse-template-part .main-navigation .button:hover,
- #editor .editor-styles-wrapper .fse-template-part .main-navigation .has-focus.button,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts + .button:focus,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts + .button:hover,
- #editor .editor-styles-wrapper .wp-block-a8c-blog-posts + .has-focus.button,
- #editor .editor-styles-wrapper .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-focus,
- #editor .editor-styles-wrapper .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus,
- #editor .editor-styles-wrapper .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover',
- 'background-color',
- '-1',
- ),
- /**
- * Utility Classes
- */
- // Text-color
- array(
- '#editor .editor-styles-wrapper .has-primary-color[class],
- #editor .editor-styles-wrapper .wp-block .has-primary-color[class]',
- 'color',
- ),
- // Background-color
- array(
- '#editor .editor-styles-wrapper .has-primary-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-primary-background-color[class]',
- 'background-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 .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,
- #editor .editor-styles-wrapper .wp-block-pullquote,
- #editor .editor-styles-wrapper .wp-block-pullquote,
- #editor .editor-styles-wrapper .wp-block-code > code,
- #editor .editor-styles-wrapper .wp-block-verse,
- #editor .editor-styles-wrapper .wp-block-table.is-style-stripes tbody tr:nth-child(odd),
- #editor .editor-styles-wrapper table.is-style-stripes tbody tr:nth-child(odd),
- #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',
- 'color',
- ),
- /**
- * Utility Classes
- */
- // Text-color
- array(
- '#editor .editor-styles-wrapper .has-background-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-background-color[class],
- #editor .editor-styles-wrapper .has-background-dark-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-dark-background-color[class],
- #editor .editor-styles-wrapper .has-background-light-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-background-light-background-color[class],
- #editor .editor-styles-wrapper .has-foreground-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-color[class]',
- 'color',
- ),
- // Background-color
- array(
- '#editor .editor-styles-wrapper .has-foreground-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-background-color[class]',
- 'background-color',
- ),
- // Text-color darkened
- array(
- '#editor .editor-styles-wrapper .has-foreground-dark-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-dark-color[class]',
- 'color',
- '-1',
- ),
- // Background-color darkened
- array(
- '#editor .editor-styles-wrapper .has-foreground-dark-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-dark-background-color[class]',
- 'background-color',
- '-1',
- ),
- // Text-color brightened
- array(
- '#editor .editor-styles-wrapper .has-foreground-light-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-light-color[class]',
- 'color',
- '+2',
- ),
- // Background-color brightened
- array(
- '#editor .editor-styles-wrapper .has-foreground-light-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-foreground-light-background-color[class]',
- 'background-color',
- '+2',
- ),
- ),
- __( '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],
- #editor .editor-styles-wrapper .wp-block .has-secondary-color[class]',
- 'color',
- ),
- // Background-color
- array(
- '#editor .editor-styles-wrapper .has-secondary-background-color[class],
- #editor .editor-styles-wrapper .wp-block .has-secondary-background-color[class]',
- 'background-color',
- ),
- ),
- __( 'Secondary Color' )
- );
- /**
- * Custom CSS
- */
- function maywood_custom_editor_colors_extra_css() {
- $colors_array = get_theme_mod( 'colors_manager' );
- $txt = $colors_array['colors']['txt'];
- ?>
- #editor .editor-styles-wrapper .block-editor-default-block-appender textarea.block-editor-default-block-appender__content,
- #editor .editor-styles-wrapper .wp-block .editor-post-title__input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
- color: <?php echo $txt; ?>;
- opacity: 0.66; /* Firefox */
- }
- #editor .editor-styles-wrapper .wp-block .editor-post-title__input:-ms-input-placeholder { /* Internet Explorer 10-11 */
- color: <?php echo $txt; ?>;
- opacity: 0.66;
- }
- #editor .editor-styles-wrapper .wp-block .editor-post-title__input::-ms-input-placeholder { /* Microsoft Edge */
- color: <?php echo $txt; ?>;
- opacity: 0.66;
- }
- #editor .editor-styles-wrapper .wp-block-button__link.is-style-outline.has-background[class],
- #editor .editor-styles-wrapper .is-style-outline .wp-block-button__link.has-background[class] {
- background: transparent !important;
- }
- #editor .editor-styles-wrapper .has-background:not(.has-background-background-color) a:not(.wp-block-button__link),
- #editor .editor-styles-wrapper p.has-text-color a,
- #editor .editor-styles-wrapper .has-background-dim a {
- color: currentColor;
- }
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] h1,
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] h2,
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] h3,
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] h4,
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] h5,
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] h6,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container h1,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container h2,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container h3,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container h4,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container h5,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container h6,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] h1,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] h2,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] h3,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] h4,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] h5,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] h6,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container h1,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container h2,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container h3,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container h4,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container h5,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container h6 {
- text-shadow: none;
- }
- #editor .editor-styles-wrapper .wp-block-cover[style*="background-image"] p,
- #editor .editor-styles-wrapper .wp-block-cover video + .wp-block-cover__inner-container p,
- #editor .editor-styles-wrapper .wp-block-cover-image[style*="background-image"] p,
- #editor .editor-styles-wrapper .wp-block-cover-image video + .wp-block-cover__inner-container p {
- text-shadow: none;
- }
- <?php
- }
- add_theme_support( 'custom_colors_extra_css', 'maywood_custom_editor_colors_extra_css' );
|