How To Change Admin Panel (Backend) Font?

how to change admin panel (backend) default font?

design/backend/css/config.less

Try to change the following line

@sansFontFamily: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Ubuntu, Helvetica Neue, sans-serif;

Do not forget to clear cache

thanks

i have changed line to

@sansFontFamily: Shabnam, -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Ubuntu, Helvetica Neue, sans-serif;

and cleared cache.
but nothing changed. same old font appears

Are you sure that the new font is added correctly?

would you please remind me where i had to add my new font exactly?

For example, you can download font file and use them in the CSS section of the Theme editor

https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

yes my font already set and working 100% on storefront

I have added codes in "theme".css

@font-face {
font-family: Shabnam;
src: url('/design/themes/bright_theme/media/fonts/Shabnam-FD.eot');
src: url('/design/themes/bright_theme/media/fonts/Shabnam-FD.eot?#iefix') format('embedded-opentype'),
url('/design/themes/bright_theme/media/fonts/Shabnam-FD.woff2') format('woff2'),
url('/design/themes/bright_theme/media/fonts/Shabnam-FD.woff') format('woff'),
url('/design/themes/bright_theme/media/fonts/Shabnam-FD.ttf') format('truetype');
font-weight: normal;
}

but the font in backend is not the same as storefront.

For the backend use my changes module and the following instruction

https://forum.cs-cart.com/topic/37510-how-to-add-custom-css-with-my-changes-addon/#entry209281

gr8 thanks,

it works! 8)

You are welcome! :)