Skip to content

Instantly share code, notes, and snippets.

@istudyatuni
Last active October 19, 2020 07:58
Show Gist options
  • Save istudyatuni/a5c7e66bbdda4da2ad757de4d97ddd87 to your computer and use it in GitHub Desktop.
Save istudyatuni/a5c7e66bbdda4da2ad757de4d97ddd87 to your computer and use it in GitHub Desktop.
Color scheme for info, success, warn and error messages
/* Colors */
.error {
background-color: #FFBABA;
color: #D8000C;
}
.error:hover {
background-color: #FFA4A4;
}
.warn {
background-color: #FEEFB3;
color: #9F6000;
}
.warn:hover {
background-color: #FED7A0;
}
.success {
color: #4F8A10;
background-color: #DFF2BF;
}
.success:hover {
background-color: #B4F298;
}
.info {
background-color: #D9EDF7;
color: #31708F;
}
.info:hover {
background-color: #D5D8F7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment