70bf21e064
Handle Changesets / Handle Changesets (push) Waiting to run
Semgrep OSS scan / semgrep-oss (push) Waiting to run
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
35 lines
627 B
TypeScript
35 lines
627 B
TypeScript
import chalk from "chalk";
|
|
|
|
const { white, gray, dim, hidden, bold, cyanBright, bgCyan } = chalk;
|
|
|
|
const brandColor = chalk.hex("#BD5B08");
|
|
|
|
const black = chalk.hex("#111");
|
|
const blue = chalk.hex("#0E838F");
|
|
const bgBlue = black.bgHex("#0E838F");
|
|
const red = chalk.hex("#AB2526");
|
|
const bgRed = black.bgHex("#AB2526");
|
|
const green = chalk.hex("#218529");
|
|
const bgGreen = black.bgHex("#218529");
|
|
const yellow = chalk.hex("#7F7322");
|
|
const bgYellow = black.bgHex("#7F7322");
|
|
|
|
export {
|
|
blue,
|
|
bgBlue,
|
|
green,
|
|
bgGreen,
|
|
red,
|
|
bgRed,
|
|
yellow,
|
|
bgYellow,
|
|
cyanBright,
|
|
bgCyan,
|
|
brandColor,
|
|
dim,
|
|
white,
|
|
gray,
|
|
hidden,
|
|
bold,
|
|
};
|