/* Foundation-utility-library */
/* 2025-11-25 v0.1
/* Reusuable CSS Rulesets and Functions for any project or assignment */

/* Background Colors */
.background--red {
    background: rgb(255, 63, 63);
}

.background--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: rgb(75, 1, 128);
}

.background--violet, .color--violet {
    background: rgb(238, 129, 238);
}

/* Font Colors */
.color--red {
    color: rgb(255, 63, 63);
}

.color--orange {
    color: rgb(255, 180, 42);
}

.color--yellow {
    color: rgb(251, 251, 59)
}

.color--green {
    color: rgb(10, 161, 10);
}

.color--blue {
    color: rgb(0, 102, 255);
}

.color--violet {
    color: rgb(238, 129, 238);
}

/*--  Status  --*/
.status--blue {
    background: rgb(0, 102, 255);
}