@compositive/foundation
Version:
Compositive framework foundation package.
157 lines (154 loc) • 7.02 kB
JavaScript
import { rgba, rgb } from './shortcuts.js';
const transparent = rgba(0, 0, 0, 0);
// Red colors
const mediumVioletRed = rgb(199, 21, 133);
const deepPink = rgb(255, 20, 147);
const paleVioletRed = rgb(219, 112, 147);
const hotPink = rgb(255, 105, 180);
const lightPink = rgb(255, 182, 193);
const pink = rgb(255, 192, 203);
const darkRed = rgb(139, 0, 0);
const red = rgb(255, 0, 0);
const firebrick = rgb(178, 34, 34);
const crimson = rgb(220, 20, 60);
const indianRed = rgb(205, 92, 92);
const lightCoral = rgb(240, 128, 128);
const salmon = rgb(250, 128, 114);
const darkSalmon = rgb(233, 150, 122);
const lightSalmon = rgb(255, 160, 122);
// Orange colors
const orangeRed = rgb(255, 69, 0);
const tomato = rgb(255, 99, 71);
const darkOrange = rgb(255, 140, 0);
const coral = rgb(255, 127, 80);
const orange = rgb(255, 165, 0);
// Yellow colors
const darkKhaki = rgb(189, 183, 107);
const gold = rgb(255, 215, 0);
const khaki = rgb(240, 230, 140);
const peachPuff = rgb(255, 218, 185);
const yellow = rgb(255, 255, 0);
const paleGoldenrod = rgb(238, 232, 170);
const moccasin = rgb(255, 228, 181);
const papayaWhip = rgb(255, 239, 213);
const lightGoldenrodYellow = rgb(250, 250, 210);
const lemonChiffon = rgb(255, 250, 205);
const lightYellow = rgb(255, 255, 224);
// Brown colors
const maroon = rgb(128, 0, 0);
const brown = rgb(165, 42, 42);
const saddleBrown = rgb(139, 69, 19);
const sienna = rgb(160, 82, 45);
const chocolate = rgb(210, 105, 30);
const darkGoldenrod = rgb(184, 134, 11);
const peru = rgb(205, 133, 63);
const rosyBrown = rgb(188, 143, 143);
const goldenrod = rgb(218, 165, 32);
const sandyBrown = rgb(244, 164, 96);
const tan = rgb(210, 180, 140);
const burlywood = rgb(222, 184, 135);
const wheat = rgb(245, 222, 179);
const navajoWhite = rgb(255, 222, 173);
const bisque = rgb(255, 228, 196);
const blanchedAlmond = rgb(255, 235, 205);
const cornsilk = rgb(255, 248, 220);
// Green colors
const darkGreen = rgb(0, 100, 0);
const green = rgb(0, 128, 0);
const darkOliveGreen = rgb(85, 107, 47);
const forestGreen = rgb(34, 139, 34);
const seaGreen = rgb(46, 139, 87);
const olive = rgb(128, 128, 0);
const oliveDrab = rgb(107, 142, 35);
const mediumSeaGreen = rgb(60, 179, 113);
const limeGreen = rgb(50, 205, 50);
const lime = rgb(0, 255, 0);
const springGreen = rgb(0, 255, 127);
const mediumSpringGreen = rgb(0, 250, 154);
const darkSeaGreen = rgb(143, 188, 143);
const mediumAquamarine = rgb(102, 205, 170);
const yellowGreen = rgb(154, 205, 50);
const lawnGreen = rgb(124, 252, 0);
const chartreuse = rgb(127, 255, 0);
const lightGreen = rgb(144, 238, 144);
const greenYellow = rgb(173, 255, 47);
const paleGreen = rgb(152, 251, 152);
// Cyan colors
const teal = rgb(0, 128, 128);
const darkCyan = rgb(0, 139, 139);
const lightSeaGreen = rgb(32, 178, 170);
const cadetBlue = rgb(95, 158, 160);
const darkTurquoise = rgb(0, 206, 209);
const mediumTurquoise = rgb(72, 209, 204);
const turquoise = rgb(64, 224, 208);
const aqua = rgb(0, 255, 255);
const cyan = rgb(0, 255, 255);
const aquamarine = rgb(127, 255, 212);
const paleTurquoise = rgb(175, 238, 238);
const lightCyan = rgb(224, 255, 255);
// Blue colors
const navy = rgb(0, 0, 128);
const darkBlue = rgb(0, 0, 139);
const mediumBlue = rgb(0, 0, 205);
const blue = rgb(0, 0, 255);
const midnightBlue = rgb(25, 25, 112);
const royalBlue = rgb(65, 105, 225);
const steelBlue = rgb(70, 130, 180);
const dodgerBlue = rgb(30, 144, 255);
const deepSkyBlue = rgb(0, 191, 255);
const cornflowerBlue = rgb(100, 149, 237);
const skyBlue = rgb(135, 206, 235);
const lightSkyBlue = rgb(135, 206, 250);
const lightSteelBlue = rgb(176, 196, 222);
const lightBlue = rgb(173, 216, 230);
const powderBlue = rgb(176, 224, 230);
// Purple, violet, and magenta colors
const indigo = rgb(75, 0, 130);
const purple = rgb(128, 0, 128);
const darkMagenta = rgb(139, 0, 139);
const darkViolet = rgb(148, 0, 211);
const darkSlateBlue = rgb(72, 61, 139);
const blueViolet = rgb(138, 43, 226);
const darkOrchid = rgb(153, 50, 204);
const fuchsia = rgb(255, 0, 255);
const magenta = rgb(255, 0, 255);
const slateBlue = rgb(106, 90, 205);
const mediumSlateBlue = rgb(123, 104, 238);
const mediumOrchid = rgb(186, 85, 211);
const mediumPurple = rgb(147, 112, 219);
const orchid = rgb(218, 112, 214);
const violet = rgb(238, 130, 238);
const plum = rgb(221, 160, 221);
const thistle = rgb(216, 191, 216);
const lavender = rgb(230, 230, 250);
// White colors
const mistyRose = rgb(255, 228, 225);
const antiqueWhite = rgb(250, 235, 215);
const linen = rgb(250, 240, 230);
const beige = rgb(245, 245, 220);
const whiteSmoke = rgb(245, 245, 245);
const lavenderBlush = rgb(255, 240, 245);
const oldLace = rgb(253, 245, 230);
const aliceBlue = rgb(240, 248, 255);
const seashell = rgb(255, 245, 238);
const ghostWhite = rgb(248, 248, 255);
const honeydew = rgb(240, 255, 240);
const floralWhite = rgb(255, 250, 240);
const azure = rgb(240, 255, 255);
const mintCream = rgb(245, 255, 250);
const snow = rgb(255, 250, 250);
const ivory = rgb(255, 255, 240);
const white = rgb(255, 255, 255);
// Gray and black colors
const black = rgb(0, 0, 0);
const darkSlateGray = rgb(47, 79, 79);
const dimGray = rgb(105, 105, 105);
const slateGray = rgb(112, 128, 144);
const gray = rgb(128, 128, 128);
const lightSlateGray = rgb(119, 136, 153);
const darkGray = rgb(169, 169, 169);
const silver = rgb(192, 192, 192);
const lightGray = rgb(211, 211, 211);
const gainsboro = rgb(220, 220, 220);
export { aliceBlue, antiqueWhite, aqua, aquamarine, azure, beige, bisque, black, blanchedAlmond, blue, blueViolet, brown, burlywood, cadetBlue, chartreuse, chocolate, coral, cornflowerBlue, cornsilk, crimson, cyan, darkBlue, darkCyan, darkGoldenrod, darkGray, darkGreen, darkKhaki, darkMagenta, darkOliveGreen, darkOrange, darkOrchid, darkRed, darkSalmon, darkSeaGreen, darkSlateBlue, darkSlateGray, darkTurquoise, darkViolet, deepPink, deepSkyBlue, dimGray, dodgerBlue, firebrick, floralWhite, forestGreen, fuchsia, gainsboro, ghostWhite, gold, goldenrod, gray, green, greenYellow, honeydew, hotPink, indianRed, indigo, ivory, khaki, lavender, lavenderBlush, lawnGreen, lemonChiffon, lightBlue, lightCoral, lightCyan, lightGoldenrodYellow, lightGray, lightGreen, lightPink, lightSalmon, lightSeaGreen, lightSkyBlue, lightSlateGray, lightSteelBlue, lightYellow, lime, limeGreen, linen, magenta, maroon, mediumAquamarine, mediumBlue, mediumOrchid, mediumPurple, mediumSeaGreen, mediumSlateBlue, mediumSpringGreen, mediumTurquoise, mediumVioletRed, midnightBlue, mintCream, mistyRose, moccasin, navajoWhite, navy, oldLace, olive, oliveDrab, orange, orangeRed, orchid, paleGoldenrod, paleGreen, paleTurquoise, paleVioletRed, papayaWhip, peachPuff, peru, pink, plum, powderBlue, purple, red, rosyBrown, royalBlue, saddleBrown, salmon, sandyBrown, seaGreen, seashell, sienna, silver, skyBlue, slateBlue, slateGray, snow, springGreen, steelBlue, tan, teal, thistle, tomato, transparent, turquoise, violet, wheat, white, whiteSmoke, yellow, yellowGreen };
//# sourceMappingURL=colors.js.map