Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: twentysixteen_color_schemes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
242       *         Associative array of information for setting up the color scheme.
243       *
244       *         @type string $label  Color scheme label.
245       *         @type array  $colors HEX codes for default colors prepended with a hash symbol ('#').
246       *                              Colors are defined in the following order: Main background, page
247       *                              background, link, main text, secondary text.
248       *     }
249       * }
250       */
251      return apply_filters( 'twentysixteen_color_schemes', array(
252           'default' => array(
253                'label'  => __( 'Default', 'twentysixteen' ),
254                'colors' => array(
255                     '#1a1a1a',
256                     '#ffffff',
257                     '#007acc',
258                     '#1a1a1a',
259                     '#686868',
260                ),