mirror of
https://github.com/onyx-and-iris/meld-cli.git
synced 2025-07-12 02:11:46 +00:00
22 lines
353 B
JavaScript
22 lines
353 B
JavaScript
/**
|
|
* @file style.js
|
|
* @module utils/style
|
|
* @description
|
|
* Utilities for styling console output in the Meld CLI.
|
|
*/
|
|
|
|
import clc from 'cli-color'
|
|
|
|
/**
|
|
* Styles for console output in the Meld CLI.
|
|
* @constant
|
|
* @type {object}
|
|
*/
|
|
const style = {
|
|
highlight: clc.cyan,
|
|
err: clc.red.bold,
|
|
errHighlight: clc.yellow.bold
|
|
}
|
|
|
|
export default style
|