console: color-coded error messages

This commit is contained in:
therewasaguy 2016-07-17 20:49:38 -04:00
parent 8b69ab7fdd
commit 227b562ad9
1 changed files with 13 additions and 0 deletions

View File

@ -11,4 +11,17 @@
position:relative;
text-align:left;
}
// assign styles to different types of console messages
.log {
color: black;
}
.error {
color: red;
}
.warn {
color: yellow;
}
}