Using this snippet you can add custom CSS to WordPress admin dashboard.
In WordPress admin panel, you can also add CSS code to customize the look and feel of WP Admin Area. You can easily achieve this by creating a simple function and adding it to your current functions file (functions.php).
Below is an example function that you can use:
[php]
add_action(‘admin_head’, ‘custom_css_admin_panel’);
function custom_css_admin_panel() {
echo ‘
‘;
}
[/php]