@farjs/ui
Version:
Terminal UI React.js components library
27 lines (23 loc) • 501 B
JavaScript
const Color = Object.freeze({
black: "black",
red: "red",
green: "green",
yellow: "yellow",
blue: "blue",
magenta: "magenta",
cyan: "cyan",
white: "white",
// light
lightblack: "lightblack",
lightred: "lightred",
lightgreen: "lightgreen",
lightyellow: "lightyellow",
lightblue: "lightblue",
lightmagenta: "lightmagenta",
lightcyan: "lightcyan",
lightwhite: "lightwhite",
// alternate spellings
grey: "grey",
lightgrey: "lightgrey",
});
export default Color;