UNPKG

@dialpad/dialtone-css

Version:

Dialpad's design system

37 lines (33 loc) 1.19 kB
// // 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 // // $$ 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; }