# Change the carton category colors

**URL:** https://meta.discourse.org/t/change-the-carton-category-colors/118066
**Category:** Support
**Created:** [17.Май.2019 22:04:07 UTC](https://meta.discourse.org/t/change-the-carton-category-colors/118066 "2019-05-17T22:04:07Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![tshenry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tshenry/32/119495_2.png) [@tshenry](https://meta.discourse.org/u/tshenry)
#### Post date: [18.Май.2019 00:41:42 UTC](https://meta.discourse.org/t/change-the-carton-category-colors/118066/2 "2019-05-18T00:41:42Z")

</div>

Here’s something that you can play around with:

```scss
.list-controls {
  .category-drop, .tag-drop {
    .select-kit-header {
      background: beige;
      color: black;
      svg {
        color: black;
      }
    }
    .select-kit-filter {
      background: beige;
      .filter-input {
        color: black;
      }
    }
    .select-kit-collection {
      background: beige;
      color: black;
      scrollbar-color: darkgray beige;
      webkit-scrollbar-color: darkgray beige;
  
      .select-kit-row {
        background: beige;
        color: darkgrey;
        .badge-wrapper.bullet span.badge-category {
          color: black;
          svg {
            color: black;
          }
        }
        &.is-highlighted {
          background: brown;
          color: lightgrey;
          .badge-wrapper.bullet span.badge-category {
            color: white;
          }
        }
      }
    }
  }
}

```

---

_[View the full topic](https://meta.discourse.org/t/change-the-carton-category-colors/118066)._
