17 lines
349 B
TypeScript
17 lines
349 B
TypeScript
export interface ISassColors {
|
|
$BURNT_ORANGE: string;
|
|
$CHARCOAL: string;
|
|
$WHITE: string;
|
|
$TANGERINE: string;
|
|
$SUNSHINE: string;
|
|
$CACTUS: string;
|
|
$TURTLE_POND: string;
|
|
$TURQUOISE: string;
|
|
$BLUEBONNET: string;
|
|
$SHADE: string;
|
|
$LIMESTONE: string;
|
|
}
|
|
|
|
declare const colors: ISassColors;
|
|
export default colors;
|