I am currently using Bootstrap 3 and I would like to change the text color of the alert info and alert danger messages to be darker. How can I achieve this?
I have searched through the Bootstrap documentation, but I was unable to find a way to specifically change the text color.
.alert-info {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
background-repeat: repeat-x;
border-color: #9acfea;
}