Make WordPress Core

Changeset 26773


Ignore:
Timestamp:
12/07/2013 07:25:08 AM (11 years ago)
Author:
nacin
Message:

Add four more color schemes to round out our collection at eight.

The new schemes are Ectoplasm, Coffee, Ocean, Sunrise. For those following along, the first three were at one point named Ghostbusters, Pixel, and Cape Cod.

See [26137] for the original color schemes.

props ryelle, melchoyce, drw158, littlethingsstudio.
fixes #26468. see #25858, #22862.

Location:
trunk/src
Files:
8 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/general-template.php

    r26601 r26773  
    21432143        array( 'base' => '#f1f2f3', 'focus' => '#fff', 'current' => '#fff' )
    21442144    );
     2145
     2146    wp_admin_css_color( 'sunrise', _x( 'Sunrise', 'admin color scheme' ),
     2147        admin_url( 'css/colors/sunrise/colors.min.css' ),
     2148        array( '#b43c38', '#cf4944', '#dd823b', '#ccaf0b' ),
     2149        array( 'base' => '#f3f1f1', 'focus' => '#fff', 'current' => '#fff' )
     2150    );
     2151
     2152    wp_admin_css_color( 'ectoplasm', _x( 'Ectoplasm', 'admin color scheme' ),
     2153        admin_url( 'css/colors/ectoplasm/colors.min.css' ),
     2154        array( '#413256', '#523f6d', '#a3b745', '#d46f15' ),
     2155        array( 'base' => '#ece6f6', 'focus' => '#fff', 'current' => '#fff' )
     2156    );
     2157   
     2158    wp_admin_css_color( 'ocean', _x( 'Ocean', 'admin color scheme' ),
     2159        admin_url( 'css/colors/ocean/colors.min.css' ),
     2160        array( '#627c83', '#738e96', '#9ebaa0', '#aa9d88' ),
     2161        array( 'base' => '#f2fcff', 'focus' => '#fff', 'current' => '#fff' )
     2162    );
     2163
     2164    wp_admin_css_color( 'coffee', _x( 'Coffee', 'admin color scheme' ),
     2165        admin_url( 'css/colors/coffee/colors.min.css' ),
     2166        array( '#46403c', '#59524c', '#c7a589', '#9ea476' ),
     2167        array( 'base' => '#f3f2f1', 'focus' => '#fff', 'current' => '#fff' )
     2168    );
     2169
    21452170}
    21462171
Note: See TracChangeset for help on using the changeset viewer.