__( 'Small', 'redhill' ), 'shortName' => __( 'S', 'redhill' ), 'size' => 16.66, 'slug' => 'small', ), array( 'name' => __( 'Normal', 'redhill' ), 'shortName' => __( 'N', 'redhill' ), 'size' => 20, 'slug' => 'normal', ), array( 'name' => __( 'Medium', 'redhill' ), 'shortName' => __( 'M', 'redhill' ), 'size' => 24, 'slug' => 'medium', ), array( 'name' => __( 'Large', 'redhill' ), 'shortName' => __( 'L', 'redhill' ), 'size' => 28.8, 'slug' => 'large', ), array( 'name' => __( 'Huge', 'redhill' ), 'shortName' => __( 'XL', 'redhill' ), 'size' => 34.56, 'slug' => 'huge', ), ) ); // Add child theme editor color pallete to match Sass-map variables in `_config-child-theme-deep.scss`. add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Primary', 'redhill' ), 'slug' => 'primary', 'color' => '#CA2017', ), array( 'name' => __( 'Secondary', 'redhill' ), 'slug' => 'secondary', 'color' => '#007FDB', ), array( 'name' => __( 'Dark Gray', 'redhill' ), 'slug' => 'foreground-dark', 'color' => '#111111', ), array( 'name' => __( 'Gray', 'redhill' ), 'slug' => 'foreground', 'color' => '#444444', ), array( 'name' => __( 'Light Gray', 'redhill' ), 'slug' => 'foreground-light', 'color' => '#666666', ), array( 'name' => __( 'Lighter Gray', 'varia' ), 'slug' => 'background-dark', 'color' => '#DDDDDD', ), array( 'name' => __( 'Subtle Gray', 'varia' ), 'slug' => 'background-light', 'color' => '#FAFAFA', ), array( 'name' => __( 'White', 'redhill' ), 'slug' => 'background', 'color' => '#FFFFFF', ), ) ); // Add child theme support for core custom logo. add_theme_support( 'custom-logo', array( 'height' => 120, 'width' => 100, 'flex-width' => true, 'flex-height' => false, 'header-text' => array( 'site-title', 'site-description' ), ) ); } endif; add_action( 'after_setup_theme', 'redhill_theme_setup', 12 ); /** * Set the content width in pixels, based on the child-theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width Content width. */ function redhill_theme_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'redhill_theme_content_width', 740 ); } add_action( 'after_setup_theme', 'redhill_theme_content_width', 0 ); /** * Enqueue scripts and styles. */ function redhill_theme_scripts() { // dequeue parent styles wp_dequeue_style( 'varia-style' ); // enqueue child styles wp_enqueue_style( 'redhill-style', get_stylesheet_uri(), array(), wp_get_theme()->get( 'Version' )); // enqueue child RTL styles wp_style_add_data( 'redhill-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'redhill_theme_scripts', 99 );