# Different theme for admin backend?

**URL:** https://meta.discourse.org/t/different-theme-for-admin-backend/99477
**Category:** Support
**Created:** [14 oktober 2018 om 17:01 UTC](https://meta.discourse.org/t/different-theme-for-admin-backend/99477 "2018-10-14T17:01:40Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)
#### Post date: [14 oktober 2018 om 17:20 UTC](https://meta.discourse.org/t/different-theme-for-admin-backend/99477/2 "2018-10-14T17:20:34Z")

</div>

It might be worth it to spend a little bit of time to make sure your CSS selectors are not too broad (which would cause the issue you’re seeing in the admin interface)

However, if you simply don’t want **any** custom CSS to apply to the admin, you can actually use something similar to what you described.

Discourse supports SCSS which means that you **only need to add** `body:not(.admin-interface)` **once** to your theme. You don’t need to add it to every rule.

Something like this

```plaintext
body:not(.admin-interface) {

// all the CSS rules from your theme go here

}

```

---

_[View the full topic](https://meta.discourse.org/t/different-theme-for-admin-backend/99477)._
