diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php
index 5c2692d7a3..6e186d1c1c 100644
a
|
b
|
function wp_admin_css_color( $key, $name, $url, $colors = array(), $icons = arra |
4385 | 4385 | * @since 3.0.0 |
4386 | 4386 | */ |
4387 | 4387 | function register_admin_color_schemes() { |
4388 | | $suffix = is_rtl() ? '-rtl' : ''; |
4389 | | $suffix .= SCRIPT_DEBUG ? '' : '.min'; |
| 4388 | $suffix = SCRIPT_DEBUG ? '' : '.min'; |
4390 | 4389 | |
4391 | 4390 | wp_admin_css_color( |
4392 | 4391 | 'fresh', |
diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
index 81225dbb6d..277e30af1d 100644
a
|
b
|
function wp_default_styles( $styles ) { |
1577 | 1577 | // RTL CSS. |
1578 | 1578 | $rtl_styles = array( |
1579 | 1579 | // Admin CSS. |
| 1580 | 'colors', |
1580 | 1581 | 'common', |
1581 | 1582 | 'forms', |
1582 | 1583 | 'admin-menu', |