You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/scss/_vars.scss

27 lines
1.3 KiB

$Red: #ee3552;
$RedShadow: rgba(255, 75, 90, 0.5);
$Orange: #FF6B57;
$OrangeShadow:rgba(255, 130, 46, 0.5);
5 years ago
$Yellow: #ffc107;
$YellowShadow:rgba(234, 223, 131, 0.5);
$Gold: #ddcfbb;
$GoldShadow:rgba(234, 223, 131, 0.5);
$Purple:#ac3773;
$PurpleShadow:rgba(172, 55, 115, 0.5);
$Blue: #3498DB;
$BlueShadow:rgba(76, 74, 228, 0.5);
$Green: #0d7e00;
$GreenShadow:rgba(13, 126, 0, 0.35);
$Cyan: #32c5d2;
$CyanShadow:rgba(50, 197, 210, 0.32);
$LightGray: #e6e6e6;
$LightGrayShadow:rgba(107, 107, 107, 0.5);
$Gray: #797979;
$GrayShadow:rgba(54, 54, 54, 0.5);
$Black: #2f353b;
$BlackShadow:rgba(0, 0, 0, 0.5);
$White: #fff;
$WhiteShadow:rgba(255, 255, 255, 0.2);
$Colors: (Red: $Red, Orange: $Orange, Yellow: $Yellow, Gold: $Gold, Purple: $Purple, Blue: $Blue, Green: $Green, Cyan: $Cyan, LightGray: $LightGray, Gray: $Gray, Black: $Black, White: $White);
$colors: (red: $Red, orange: $Orange, yellow: $Yellow, gold: $Gold, purple: $Purple, blue: $Blue, green: $Green, cyan: $Cyan, gray: $Gray, black: $Black, white: $White);
5 years ago
$Shadows: (red: $RedShadow, orange: $OrangeShadow, yellow: $YellowShadow, gold: $GoldShadow, purple: $PurpleShadow, blue: $BlueShadow, green: $GreenShadow, cyan: $CyanShadow, gray: $GrayShadow, 'grey lighten-3': $LightGrayShadow, black: $BlackShadow, white: $WhiteShadow);