Initial release!

This commit is contained in:
Wessel Tip
2019-04-22 22:15:37 +02:00
parent df1358f86e
commit 91de4c8c20
30 changed files with 1654 additions and 0 deletions

49
lib/colors/styles.js Normal file
View File

@@ -0,0 +1,49 @@
module.exports = {
colors: {
black: 30,
red: 31,
green: 32,
yellow: 33,
blue: 34,
magenta: 35,
cyan: 36,
white: 37,
bgBlack: 40,
bgRed: 41,
bgGreen: 42,
bgYellow: 43,
bgBlue: 44,
bgMagenta: 45,
bgCyan: 46,
bgWhite: 47,
blackBright: 90,
redBright: 91,
greenBright: 92,
yellowBright: 93,
blueBright: 94,
magentaBright: 95,
cyanBright: 96,
whiteBright: 97,
bgBlackBright: 100,
bgRedBright: 101,
bgGreenBright: 102,
bgYellowBright: 103,
bgBlueBright: 104,
bgMagentaBright: 105,
bgCyanBright: 106,
bgWhiteBright: 107
},
styles: {
reset: 0,
bold: 1,
dim: 2,
italic: 3,
underline: 4,
blink: 5,
inverse: 7,
strikethrough: 9
}
};