analyzing page types and populating search inputs

This commit is contained in:
Sriram Hariharan
2023-03-03 19:58:53 -06:00
parent 723caca417
commit 4ed52a3c9f
8 changed files with 115 additions and 35 deletions

View File

@@ -11,15 +11,15 @@ $SHADE: #9cadb7;
$LIMESTONE: #d6d2c4;
:export {
$BURNT_ORANGE: $BURNT_ORANGE;
$CHARCOAL: $CHARCOAL;
$WHITE: $WHITE;
$TANGERINE: $TANGERINE;
$SUNSHINE: $SUNSHINE;
$CACTUS: $CACTUS;
$TURTLE_POND: $TURTLE_POND;
$TURQUOISE: $TURQUOISE;
$BLUEBONNET: $BLUEBONNET;
$SHADE: $SHADE;
$LIMESTONE: $LIMESTONE;
BURNT_ORANGE: $BURNT_ORANGE;
CHARCOAL: $CHARCOAL;
WHITE: $WHITE;
TANGERINE: $TANGERINE;
SUNSHINE: $SUNSHINE;
CACTUS: $CACTUS;
TURTLE_POND: $TURTLE_POND;
TURQUOISE: $TURQUOISE;
BLUEBONNET: $BLUEBONNET;
SHADE: $SHADE;
LIMESTONE: $LIMESTONE;
}

View File

@@ -1,15 +1,15 @@
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;
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;