quoteme-cli
Version:
Daily inspiration in your terminal, with quotes, jokes, facts, and even custom quote wallpapers.
12 lines (10 loc) • 399 B
JavaScript
const borderStyles = ["single", "double", "round", "bold", "classic"];
const borderColors = ["cyan", "yellow", "green", "magenta", "blue", "red"];
export function getRandomFrameOptions() {
return {
padding: 1,
margin: 1,
borderStyle: borderStyles[Math.floor(Math.random() * borderStyles.length)],
borderColor: borderColors[Math.floor(Math.random() * borderColors.length)],
};
}