UNPKG

jebcolors

Version:

npm module that contains colors, gradients and a class used to modify the colors or gradients

40 lines (38 loc) 787 B
// In this module I save the colors from 0-f of the console colors // src = https://en.wikipedia.org/wiki/Web_colors // Final color variables const white = "#ffffff" const silver = "#c0c0c0" const gray = "#808080" const black = "#000000" const red = "#ff0000" const maroon = "#800000" const yellow = "#ffff00" const olive = "#808000" const lime = "#00ff00" const green = "#008000" const aqua = "#00ffff" const teal = "#008080" const blue = "#0000ff" const navy = "#000080" const fuchsia = "#ff00ff" const purple = "#800080" // Exports export const consoleMainColors = { white, silver, gray, black, red, maroon, yellow, olive, lime, green, aqua, teal, blue, navy, fuchsia, purple, }