AugurProject/augur-ui

View on GitHub
scripts/common/colors.js

Summary

Maintainability
A
0 mins
Test Coverage
const chalk = require("chalk");

const colors = {
  title: chalk.cyan.bold,
  notice: chalk.yellow,
  dim: chalk.dim
};

module.exports = colors;