123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- const color = require('cli-color');
- const themes = {
-
-
-
-
- dimmed: {
- time: color.bgWhite.black,
- value: color.white,
- cn: color.yellow,
- tx: color.cyan,
- paramTitle: color.magenta,
- errorTitle: color.redBright,
- query: color.whiteBright,
- special: color.green,
- error: color.red
- },
-
- bright: {
- time: color.bgBlue.whiteBright,
- value: color.white,
- cn: color.yellowBright,
- tx: color.cyanBright,
- paramTitle: color.magentaBright,
- errorTitle: color.redBright,
- query: color.whiteBright,
- special: color.greenBright,
- error: color.redBright
- },
-
- monochrome: {
- time: color.bgWhite.black,
- value: color.whiteBright,
- cn: color.white,
- tx: color.white,
- paramTitle: color.white,
- errorTitle: color.white,
- query: color.whiteBright,
- special: color.whiteBright,
- error: color.whiteBright
- },
-
- minimalist: {
- time: color.bgWhite.black,
- value: color.white,
- cn: color.yellow,
- tx: color.yellow,
- paramTitle: color.cyan,
- errorTitle: color.redBright,
- query: color.whiteBright,
- special: color.whiteBright,
- error: color.red
- },
-
- matrix: {
- time: color.bgGreen.black,
- value: color.white,
- cn: color.green,
- tx: color.green,
- paramTitle: color.green,
- errorTitle: color.green,
- query: color.whiteBright,
- special: color.whiteBright,
- error: color.greenBright
- },
-
-
-
-
- invertedMonochrome: {
- time: color.bgWhite.black,
- value: color.blackBright,
- cn: color.black,
- tx: color.black,
- paramTitle: color.black,
- errorTitle: color.black,
- query: color.blackBright,
- special: color.blackBright,
- error: color.blackBright
- },
-
- invertedContrast: {
- time: color.bgBlue.white,
- value: color.bgWhiteBright.blueBright,
- cn: color.bgWhiteBright.black,
- tx: color.bgWhiteBright.black,
- paramTitle: color.bgWhiteBright.magenta,
- errorTitle: color.bgWhiteBright.red,
- query: color.bgWhiteBright.green,
- special: color.bgWhiteBright.cyan,
- error: color.bgWhiteBright.redBright
- }
- };
- module.exports = themes;
|