wp-content/themes/twentysixteen/inc/customizer.php:841Outputs an Underscore template for generating CSS for the color scheme.
function twentysixteen_color_scheme_css_template() { $colors = array( 'background_color' => '{{ data.background_color }}', 'page_background_color' => '{{ data.page_background_color }}', 'link_color' => '{{ data.link_color }}', 'main_text_color' => '{{ data.main_text_color }}', 'secondary_text_color' => '{{ data.secondary_text_color }}', 'border_color' => '{{ data.border_color }}', ); $css_template = twentysixteen_get_color_scheme_css( $colors ); if ( function_exists( 'wp_print_inline_script_tag' ) ) { wp_print_inline_script_tag( $css_template, array( 'type' => 'text/html', 'id' => 'tmpl-twentysixteen-color-scheme', ) ); } else { echo '<script type="text/html" id="tmpl-twentysixteen-color-scheme">' . $css_template . '</script>'; }}Introduced in Twenty Sixteen 4.1 Added <code>wp_print_inline_script_tag()</code> support.. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-content/themes/twentysixteen/inc/customizer.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.