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.
sqm-dashboards/app/assets/stylesheets/colors.scss

71 lines
739 B

$black: #3E3A38;
$gray-1: #595959;
$gray-2: #CECECE;
$gray-3: #F9F9F9;
$white: #FFFFFF;
$blue: #01788E;
$red: #C93047;
$teal: #00B0B3;
$mint: #B2D236;
$beige: #EFEBE1;
$warning: #FF73C0;
$watch: #F096AD;
$growth: #E0BA9A;
$approval: #D0DD86;
$ideal: #C0FF73;
.color-red {
color: $red;
}
.color-black {
color: $black;
}
.bg-beige {
background-color: $beige;
}
.bg-white {
background-color: $white;
}
.fill-black {
fill: $black;
}
.fill-warning {
fill: $warning;
}
.fill-watch {
fill: $watch;
}
.fill-growth {
fill: $growth;
}
.fill-approval {
fill: $approval;
}
.fill-ideal {
fill: $ideal;
}
.stroke-black {
stroke: $black;
}
.stroke-gray-1 {
stroke: $gray-1;
}
.stroke-gray-2 {
stroke: $gray-2;
}