How to get default Wordpress admin styles

I am trying to find the default Wordpress styles for the default color scheme.

I can find CSS styles for all other color schemes, such as (light, blue, coffee, etc.), but I can not find the file with the default color scheme.

Does anyone know where he is?

+4
source share
1 answer

These admin styles are actually dynamically built from files in /wp-includes/css/and /wp-admin/css/.

However, if you need to add or change styles, you should consider enqueueing custom stylesheet instead of touching on basic CSS files.

+4
source

Source: https://habr.com/ru/post/1628118/


All Articles