<button class="btn bg-red">Button</button>
@layer components, utilities;

@layer components {
  .btn {
    background-color: blue;
    color: white;
  }
}

@layer utilities {
  .bg-red {
    background-color: red;
    color: white;
  }
}

button {
  background-color: yellow;
  color: black;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.