mirror of
https://github.com/onyx-and-iris/meld-cli.git
synced 2025-07-12 02:11:46 +00:00
12 lines
173 B
JavaScript
12 lines
173 B
JavaScript
import clc from 'cli-color'
|
|
|
|
const highlight = clc.cyan
|
|
const error = clc.red.bold
|
|
const errorHighlight = clc.yellow.bold
|
|
|
|
export {
|
|
highlight,
|
|
error,
|
|
errorHighlight
|
|
}
|