UNPKG

jebcolors

Version:

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

42 lines 1.04 kB
"use strict"; // In this module I save the colors from 0-f of the console colors // src = https://en.wikipedia.org/wiki/Web_colors Object.defineProperty(exports, "__esModule", { value: true }); exports.consoleMainColors = void 0; // Final color variables var white = "#ffffff"; var silver = "#c0c0c0"; var gray = "#808080"; var black = "#000000"; var red = "#ff0000"; var maroon = "#800000"; var yellow = "#ffff00"; var olive = "#808000"; var lime = "#00ff00"; var green = "#008000"; var aqua = "#00ffff"; var teal = "#008080"; var blue = "#0000ff"; var navy = "#000080"; var fuchsia = "#ff00ff"; var purple = "#800080"; // Exports exports.consoleMainColors = { white: white, silver: silver, gray: gray, black: black, red: red, maroon: maroon, yellow: yellow, olive: olive, lime: lime, green: green, aqua: aqua, teal: teal, blue: blue, navy: navy, fuchsia: fuchsia, purple: purple, }; //# sourceMappingURL=console-variables.js.map