Created
January 13, 2017 01:56
-
-
Save fguisso/c0c6e454ed549e3ae46924d88dbc80c3 to your computer and use it in GitHub Desktop.
Colors for your logs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const colors = { | |
Reset: "\x1b[0m", | |
Bright: "\x1b[1m", | |
Dim: "\x1b[2m", | |
Underscore: "\x1b[4m", | |
Blink: "\x1b[5m", | |
Reverse: "\x1b[7m", | |
Hidden: "\x1b[8m", | |
fg: { | |
Black: "\x1b[30m", | |
Red: "\x1b[31m", | |
Green: "\x1b[32m", | |
Yellow: "\x1b[33m", | |
Blue: "\x1b[34m", | |
Magenta: "\x1b[35m", | |
Cyan: "\x1b[36m", | |
White: "\x1b[37m", | |
Crimson: "\x1b[38m" //القرمزي | |
}, | |
bg: { | |
Black: "\x1b[40m", | |
Red: "\x1b[41m", | |
Green: "\x1b[42m", | |
Yellow: "\x1b[43m", | |
Blue: "\x1b[44m", | |
Magenta: "\x1b[45m", | |
Cyan: "\x1b[46m", | |
White: "\x1b[47m", | |
Crimson: "\x1b[48m" | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment