/* Foundation-utility-library */
/* 2024-12-10 v0.03
/* Reusuable CSS Rulesets and Functions for any project or assignment */

/* Background Colors */
.background--red, .color--red {
    background: rgb(255, 63, 63);
}

.background--orange, .color--orange {
    background: rgb(255, 180, 42);
}

.background--yellow, .color--yellow {
    background: rgb(251, 251, 59);
}

.background--green, .color--green {
    background: rgb(10, 161, 10);
}

.background--blue, .color--blue {
    background: rgb(0, 110, 255);
}

.background--indigo, .color--indigo {
    background: indigo;
}

.background--violet, .color--violet {
    background: violet;
}

/*--  Status  --*/
.status--blue {
    background: rgb(0, 102, 255);
}