//
//  DIALTONE
//  UTILITIES: COLORS
//
//  These are all the color utility classes for Dialpad's design system Dialtone.
//  For further information about these classes, please visit their respective
//  documentation pages at https://dialtone.dialpad.com
//
//  TABLE OF CONTENTS
//  • TEXT COLORS
//  • BACKGROUND/SURFACE COLORS
//  • BORDER COLORS
//
// TODO: Remove `*-transparent` classes in favor of `*-neutral-transparent` classes.
//  Both are existing and that's not ok, a migration will be needed on product.
//
//  $$  TEXT COLORS
//  ----------------------------------------------------------------------------
.d-fc-current { color: currentColor !important; }
.d-fc-transparent { color: transparent !important; }
.d-fc-unset { color: unset !important; }

//  $$  BACKGROUND/SURFACE COLORS
//  ----------------------------------------------------------------------------
.d-bgc-transparent {
  background-color: transparent !important;
  background-image: none !important;
}

.d-bgc-unset {
  background-color: unset !important;
  background-image: unset !important;
}

//  $$  BORDER COLORS
//  ----------------------------------------------------------------------------
.d-bc-transparent { border-color: transparent !important; }
.d-bc-current { border-color: currentColor !important; }
.d-bc-unset { border-color: unset !important; }
