UNPKG

@salto-io/suitecloud-cli

Version:
21 lines (17 loc) 415 B
/* ** Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved. ** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. */ 'use strict'; const chalk = require('chalk'); const COLORS = { DEFAULT: chalk.white, RESULT: chalk.green, ERROR: chalk.red, INFO: chalk.cyan, WARNING: chalk.yellow, }; module.exports = { BOLD: chalk.bold, COLORS, };