type RGB = [number, number, number]; declare class Color { private _l; private _c; private _h; private _rgb; constructor(colorSpace: string, coords: [number, number, number]); get coords(): RGB; to(colorSpace: string): { coords: number[]; }; inGamut(): boolean; } type ColorEnum = "RGB" | "HSL" | "HCL" | "HEX"; declare class ColorPicker { static get(colorEnum: ColorEnum, colorKey: string): string | null; } declare class ColorSwatch { name?: string; h: number; c: number; l: number; model: Color; constructor(h: number, c: number, l: number, name?: string); setHCL(h: number, c: number, l: number): void; checkGamut(): boolean; getName(): string | undefined; getRGB(): [number, number, number]; a98rgb(): number[]; a98rgb_linear(): number[]; acescg(): number[]; hsl(): number[]; hsv(): number[]; hwb(): number[]; ictcp(): number[]; jzczhz(): number[]; jzazbz(): number[]; lab(): number[]; lab_d65(): number[]; lch(): number[]; oklch(): number[]; oklab(): number[]; p3(): number[]; p3_linear(): number[]; prophoto(): number[]; prophoto_linear(): number[]; rec2020(): number[]; rec2020_linear(): number[]; rec2100hlg(): number[]; rec2100pq(): number[]; xyz_abs_d65(): number[]; xyz_d50(): number[]; xyz_d65(): number[]; xyz(): number[]; srgb(): { coords: number[]; }; srgb_linear(): number[]; hex(): string; hcl(): { h: number; c: number; l: number; }; rgb(): { r: number; g: number; b: number; }; toString(): string; toDict(): Record; } type ColorSchemeConfig = { prefix?: string; h_step?: number; p_count?: number; l_l_min?: number; l_l_step?: number; d_l_step?: number; l_c_min?: number; l_c_step?: number; d_c_step?: number; }; declare class ColorScheme { config: ColorSchemeConfig | any; names: any; colorList: ColorSwatch[]; colorDict: Record>; constructor(config: ColorSchemeConfig, names: any); private initializeColors; getColorList(): ColorSwatch[]; getColorDict(): Record>; } declare const hueConfig: { prefix: string; h_step: number; p_count: number; l_l_min: number; l_l_step: number; d_l_step: number; l_c_min: number; l_c_step: number; d_c_step: number; }; declare const hueNames: { 0: string; 15: string; 30: string; 45: string; 60: string; 75: string; 90: string; 105: string; 120: string; 135: string; 150: string; 165: string; 180: string; 195: string; 210: string; 225: string; 240: string; 255: string; 270: string; 285: string; 300: string; 315: string; 330: string; 345: string; 360: string; }; declare enum hue_hcl { N0001 = "hcl(0, 0, 90)", N0002 = "hcl(0, 0, 82)", N0003 = "hcl(0, 0, 74)", N0004 = "hcl(0, 0, 66)", N0005 = "hcl(0, 0, 58)", N0006 = "hcl(0, 0, 50)", N0007 = "hcl(0, 0, 42)", N0008 = "hcl(0, 0, 34)", N0009 = "hcl(0, 0, 26)", N0151 = "hcl(15, 12, 90)", N0152 = "hcl(15, 18, 82)", N0153 = "hcl(15, 24, 74)", N0154 = "hcl(15, 30, 66)", N0155 = "hcl(15, 36, 58)", N0156 = "hcl(15, 30, 50)", N0157 = "hcl(15, 24, 42)", N0158 = "hcl(15, 18, 34)", N0159 = "hcl(15, 12, 26)", N0301 = "hcl(30, 12, 90)", N0302 = "hcl(30, 18, 82)", N0303 = "hcl(30, 24, 74)", N0304 = "hcl(30, 30, 66)", N0305 = "hcl(30, 36, 58)", N0306 = "hcl(30, 30, 50)", N0307 = "hcl(30, 24, 42)", N0308 = "hcl(30, 18, 34)", N0309 = "hcl(30, 12, 26)", N0451 = "hcl(45, 12, 90)", N0452 = "hcl(45, 18, 82)", N0453 = "hcl(45, 24, 74)", N0454 = "hcl(45, 30, 66)", N0455 = "hcl(45, 36, 58)", N0456 = "hcl(45, 30, 50)", N0457 = "hcl(45, 24, 42)", N0458 = "hcl(45, 18, 34)", N0459 = "hcl(45, 12, 26)", N0601 = "hcl(60, 12, 90)", N0602 = "hcl(60, 18, 82)", N0603 = "hcl(60, 24, 74)", N0604 = "hcl(60, 30, 66)", N0605 = "hcl(60, 36, 58)", N0606 = "hcl(60, 30, 50)", N0607 = "hcl(60, 24, 42)", N0608 = "hcl(60, 18, 34)", N0609 = "hcl(60, 12, 26)", N0751 = "hcl(75, 12, 90)", N0752 = "hcl(75, 18, 82)", N0753 = "hcl(75, 24, 74)", N0754 = "hcl(75, 30, 66)", N0755 = "hcl(75, 36, 58)", N0756 = "hcl(75, 30, 50)", N0757 = "hcl(75, 24, 42)", N0758 = "hcl(75, 18, 34)", N0759 = "hcl(75, 12, 26)", N0901 = "hcl(90, 12, 90)", N0902 = "hcl(90, 18, 82)", N0903 = "hcl(90, 24, 74)", N0904 = "hcl(90, 30, 66)", N0905 = "hcl(90, 36, 58)", N0906 = "hcl(90, 30, 50)", N0907 = "hcl(90, 24, 42)", N0908 = "hcl(90, 18, 34)", N0909 = "hcl(90, 12, 26)", N1051 = "hcl(105, 12, 90)", N1052 = "hcl(105, 18, 82)", N1053 = "hcl(105, 24, 74)", N1054 = "hcl(105, 30, 66)", N1055 = "hcl(105, 36, 58)", N1056 = "hcl(105, 30, 50)", N1057 = "hcl(105, 24, 42)", N1058 = "hcl(105, 18, 34)", N1059 = "hcl(105, 12, 26)", N1201 = "hcl(120, 12, 90)", N1202 = "hcl(120, 18, 82)", N1203 = "hcl(120, 24, 74)", N1204 = "hcl(120, 30, 66)", N1205 = "hcl(120, 36, 58)", N1206 = "hcl(120, 30, 50)", N1207 = "hcl(120, 24, 42)", N1208 = "hcl(120, 18, 34)", N1209 = "hcl(120, 12, 26)", N1351 = "hcl(135, 12, 90)", N1352 = "hcl(135, 18, 82)", N1353 = "hcl(135, 24, 74)", N1354 = "hcl(135, 30, 66)", N1355 = "hcl(135, 36, 58)", N1356 = "hcl(135, 30, 50)", N1357 = "hcl(135, 24, 42)", N1358 = "hcl(135, 18, 34)", N1359 = "hcl(135, 12, 26)", N1501 = "hcl(150, 12, 90)", N1502 = "hcl(150, 18, 82)", N1503 = "hcl(150, 24, 74)", N1504 = "hcl(150, 30, 66)", N1505 = "hcl(150, 36, 58)", N1506 = "hcl(150, 30, 50)", N1507 = "hcl(150, 24, 42)", N1508 = "hcl(150, 18, 34)", N1509 = "hcl(150, 12, 26)", N1651 = "hcl(165, 12, 90)", N1652 = "hcl(165, 18, 82)", N1653 = "hcl(165, 24, 74)", N1654 = "hcl(165, 30, 66)", N1655 = "hcl(165, 36, 58)", N1656 = "hcl(165, 30, 50)", N1657 = "hcl(165, 24, 42)", N1658 = "hcl(165, 18, 34)", N1659 = "hcl(165, 12, 26)", N1801 = "hcl(180, 12, 90)", N1802 = "hcl(180, 18, 82)", N1803 = "hcl(180, 24, 74)", N1804 = "hcl(180, 30, 66)", N1805 = "hcl(180, 36, 58)", N1806 = "hcl(180, 30, 50)", N1807 = "hcl(180, 24, 42)", N1808 = "hcl(180, 18, 34)", N1809 = "hcl(180, 12, 26)", N1951 = "hcl(195, 12, 90)", N1952 = "hcl(195, 18, 82)", N1953 = "hcl(195, 24, 74)", N1954 = "hcl(195, 30, 66)", N1955 = "hcl(195, 36, 58)", N1956 = "hcl(195, 30, 50)", N1957 = "hcl(195, 24, 42)", N1958 = "hcl(195, 18, 34)", N1959 = "hcl(195, 12, 26)", N2101 = "hcl(210, 12, 90)", N2102 = "hcl(210, 18, 82)", N2103 = "hcl(210, 24, 74)", N2104 = "hcl(210, 30, 66)", N2105 = "hcl(210, 36, 58)", N2106 = "hcl(210, 30, 50)", N2107 = "hcl(210, 24, 42)", N2108 = "hcl(210, 18, 34)", N2109 = "hcl(210, 12, 26)", N2251 = "hcl(225, 12, 90)", N2252 = "hcl(225, 18, 82)", N2253 = "hcl(225, 24, 74)", N2254 = "hcl(225, 30, 66)", N2255 = "hcl(225, 36, 58)", N2256 = "hcl(225, 30, 50)", N2257 = "hcl(225, 24, 42)", N2258 = "hcl(225, 18, 34)", N2259 = "hcl(225, 12, 26)", N2401 = "hcl(240, 12, 90)", N2402 = "hcl(240, 18, 82)", N2403 = "hcl(240, 24, 74)", N2404 = "hcl(240, 30, 66)", N2405 = "hcl(240, 36, 58)", N2406 = "hcl(240, 30, 50)", N2407 = "hcl(240, 24, 42)", N2408 = "hcl(240, 18, 34)", N2409 = "hcl(240, 12, 26)", N2551 = "hcl(255, 12, 90)", N2552 = "hcl(255, 18, 82)", N2553 = "hcl(255, 24, 74)", N2554 = "hcl(255, 30, 66)", N2555 = "hcl(255, 36, 58)", N2556 = "hcl(255, 30, 50)", N2557 = "hcl(255, 24, 42)", N2558 = "hcl(255, 18, 34)", N2559 = "hcl(255, 12, 26)", N2701 = "hcl(270, 12, 90)", N2702 = "hcl(270, 18, 82)", N2703 = "hcl(270, 24, 74)", N2704 = "hcl(270, 30, 66)", N2705 = "hcl(270, 36, 58)", N2706 = "hcl(270, 30, 50)", N2707 = "hcl(270, 24, 42)", N2708 = "hcl(270, 18, 34)", N2709 = "hcl(270, 12, 26)", N2851 = "hcl(285, 12, 90)", N2852 = "hcl(285, 18, 82)", N2853 = "hcl(285, 24, 74)", N2854 = "hcl(285, 30, 66)", N2855 = "hcl(285, 36, 58)", N2856 = "hcl(285, 30, 50)", N2857 = "hcl(285, 24, 42)", N2858 = "hcl(285, 18, 34)", N2859 = "hcl(285, 12, 26)", N3001 = "hcl(300, 12, 90)", N3002 = "hcl(300, 18, 82)", N3003 = "hcl(300, 24, 74)", N3004 = "hcl(300, 30, 66)", N3005 = "hcl(300, 36, 58)", N3006 = "hcl(300, 30, 50)", N3007 = "hcl(300, 24, 42)", N3008 = "hcl(300, 18, 34)", N3009 = "hcl(300, 12, 26)", N3151 = "hcl(315, 12, 90)", N3152 = "hcl(315, 18, 82)", N3153 = "hcl(315, 24, 74)", N3154 = "hcl(315, 30, 66)", N3155 = "hcl(315, 36, 58)", N3156 = "hcl(315, 30, 50)", N3157 = "hcl(315, 24, 42)", N3158 = "hcl(315, 18, 34)", N3159 = "hcl(315, 12, 26)", N3301 = "hcl(330, 12, 90)", N3302 = "hcl(330, 18, 82)", N3303 = "hcl(330, 24, 74)", N3304 = "hcl(330, 30, 66)", N3305 = "hcl(330, 36, 58)", N3306 = "hcl(330, 30, 50)", N3307 = "hcl(330, 24, 42)", N3308 = "hcl(330, 18, 34)", N3309 = "hcl(330, 12, 26)", N3451 = "hcl(345, 12, 90)", N3452 = "hcl(345, 18, 82)", N3453 = "hcl(345, 24, 74)", N3454 = "hcl(345, 30, 66)", N3455 = "hcl(345, 36, 58)", N3456 = "hcl(345, 30, 50)", N3457 = "hcl(345, 24, 42)", N3458 = "hcl(345, 18, 34)", N3459 = "hcl(345, 12, 26)", N3601 = "hcl(360, 12, 90)", N3602 = "hcl(360, 18, 82)", N3603 = "hcl(360, 24, 74)", N3604 = "hcl(360, 30, 66)", N3605 = "hcl(360, 36, 58)", N3606 = "hcl(360, 30, 50)", N3607 = "hcl(360, 24, 42)", N3608 = "hcl(360, 18, 34)", N3609 = "hcl(360, 12, 26)" } declare enum hue_hex { N0001 = "#e2e2e2", N0002 = "#cccccc", N0003 = "#b6b6b6", N0004 = "#a0a0a0", N0005 = "#8b8b8b", N0006 = "#777777", N0007 = "#636363", N0008 = "#505050", N0009 = "#3e3e3e", N0151 = "#fadbdd", N0152 = "#eec0c4", N0153 = "#e2a6ac", N0154 = "#d48c94", N0155 = "#c6727d", N0156 = "#a7636b", N0157 = "#89545a", N0158 = "#6b4549", N0159 = "#4f3739", N0301 = "#fadbd7", N0302 = "#edc1bc", N0303 = "#e0a8a1", N0304 = "#d28e87", N0305 = "#c4756e", N0306 = "#a5655f", N0307 = "#875650", N0308 = "#6b4642", N0309 = "#4f3835", N0451 = "#f8dcd3", N0452 = "#eac3b5", N0453 = "#dcaa98", N0454 = "#cd927c", N0455 = "#be7960", N0456 = "#a06954", N0457 = "#845848", N0458 = "#68483c", N0459 = "#4d3931", N0601 = "#f4decf", N0602 = "#e5c6af", N0603 = "#d5ad90", N0604 = "#c59672", N0605 = "#b57f55", N0606 = "#996d4b", N0607 = "#7e5b41", N0608 = "#644a38", N0609 = "#4a3a2e", N0751 = "#efe0cc", N0752 = "#dec8ac", N0753 = "#cdb18c", N0754 = "#bb9b6c", N0755 = "#a9854e", N0756 = "#8f7145", N0757 = "#765f3d", N0758 = "#5e4d34", N0759 = "#473c2c", N0901 = "#eae2cb", N0902 = "#d6cbaa", N0903 = "#c2b58a", N0904 = "#af9f6a", N0905 = "#9b8a4b", N0906 = "#847643", N0907 = "#6d623b", N0908 = "#584f33", N0909 = "#433d2b", N1051 = "#e3e4cc", N1052 = "#cdceab", N1053 = "#b7b98b", N1054 = "#a1a46b", N1055 = "#8b8f4c", N1056 = "#777a44", N1057 = "#63663c", N1058 = "#505234", N1059 = "#3e3f2c", N1201 = "#dde6ce", N1202 = "#c4d1ae", N1203 = "#abbc8f", N1204 = "#92a870", N1205 = "#7a9453", N1206 = "#697e49", N1207 = "#586840", N1208 = "#485437", N1209 = "#39402d", N1351 = "#d7e7d2", N1352 = "#bbd3b3", N1353 = "#9fbf96", N1354 = "#83ab79", N1355 = "#68975d", N1356 = "#5a8151", N1357 = "#4d6b46", N1358 = "#40553b", N1359 = "#344130", N1501 = "#d1e8d6", N1502 = "#b2d4ba", N1503 = "#93c19f", N1504 = "#74ad84", N1505 = "#559a6a", N1506 = "#4b835c", N1507 = "#426c4e", N1508 = "#395741", N1509 = "#2f4234", N1651 = "#cde9dc", N1652 = "#abd6c2", N1653 = "#89c2a9", N1654 = "#66af91", N1655 = "#409b7a", N1656 = "#3c8469", N1657 = "#376d58", N1658 = "#315848", N1659 = "#2b4338", N1801 = "#c9e9e2", N1802 = "#a6d6cb", N1803 = "#81c3b5", N1804 = "#5baf9f", N1805 = "#2a9c8a", N1806 = "#2d8576", N1807 = "#2d6e62", N1808 = "#2b584f", N1809 = "#28433d", N1951 = "#c8e9e8", N1952 = "#a3d6d4", N1953 = "#7dc3c0", N1954 = "#53afad", N1955 = "#109c9a", N1956 = "#208583", N1957 = "#266e6d", N1958 = "#275857", N1959 = "#264342", N2101 = "#c8e9ed", N2102 = "#a3d5dc", N2103 = "#7dc2cb", N2104 = "#52aeba", N2105 = "#019baa", N2106 = "#1c8490", N2107 = "#246d76", N2108 = "#27575e", N2109 = "#264246", N2251 = "#cae8f2", N2252 = "#a6d4e3", N2253 = "#81c0d4", N2254 = "#58acc6", N2255 = "#1a99b7", N2256 = "#25829a", N2257 = "#2a6c7e", N2258 = "#2a5664", N2259 = "#27424a", N2401 = "#cee6f6", N2402 = "#acd2e9", N2403 = "#8abedc", N2404 = "#65aace", N2405 = "#3696c1", N2406 = "#3680a3", N2407 = "#346a85", N2408 = "#305568", N2409 = "#2b414d", N2551 = "#d3e5f8", N2552 = "#b5cfec", N2553 = "#95bbe0", N2554 = "#75a6d4", N2555 = "#5192c8", N2556 = "#497ca8", N2557 = "#416789", N2558 = "#39536b", N2559 = "#303f4f", N2701 = "#dae3f9", N2702 = "#becdee", N2703 = "#a3b7e2", N2704 = "#87a2d6", N2705 = "#6a8dca", N2706 = "#5d78aa", N2707 = "#4f648b", N2708 = "#42516c", N2709 = "#353e50", N2851 = "#e0e1f9", N2852 = "#c8caed", N2853 = "#b1b3e1", N2854 = "#999dd5", N2855 = "#8188c8", N2856 = "#6f74a8", N2857 = "#5d6189", N2858 = "#4c4e6c", N2859 = "#3b3c4f", N3001 = "#e7dff6", N3002 = "#d3c7e9", N3003 = "#beafdc", N3004 = "#aa98cf", N3005 = "#9582c2", N3006 = "#7f6fa3", N3007 = "#6a5d86", N3008 = "#554c69", N3009 = "#413b4d", N3151 = "#edddf3", N3152 = "#dcc4e4", N3153 = "#caacd6", N3154 = "#b994c7", N3155 = "#a77cb9", N3156 = "#8d6b9c", N3157 = "#755a7f", N3158 = "#5d4964", N3159 = "#46394b", N3301 = "#f3dcee", N3302 = "#e3c2dd", N3303 = "#d4a9cd", N3304 = "#c590bc", N3305 = "#b577ac", N3306 = "#996791", N3307 = "#7d5777", N3308 = "#63475f", N3309 = "#4a3847", N3451 = "#f7dbe9", N3452 = "#e9c1d5", N3453 = "#dba7c2", N3454 = "#cd8daf", N3455 = "#bf739d", N3456 = "#a16485", N3457 = "#84546e", N3458 = "#684658", N3459 = "#4d3743", N3601 = "#f9dbe3", N3602 = "#edc0cd", N3603 = "#e0a6b7", N3604 = "#d38ca2", N3605 = "#c5728d", N3606 = "#a66278", N3607 = "#885464", N3608 = "#6b4551", N3609 = "#4f373e" } declare enum hue_rgb { N0001 = "rgb(226, 226, 226)", N0002 = "rgb(204, 204, 204)", N0003 = "rgb(182, 182, 182)", N0004 = "rgb(160, 160, 160)", N0005 = "rgb(139, 139, 139)", N0006 = "rgb(119, 119, 119)", N0007 = "rgb(99, 99, 99)", N0008 = "rgb(80, 80, 80)", N0009 = "rgb(62, 62, 62)", N0151 = "rgb(250, 219, 221)", N0152 = "rgb(238, 192, 196)", N0153 = "rgb(226, 166, 172)", N0154 = "rgb(212, 140, 148)", N0155 = "rgb(198, 114, 125)", N0156 = "rgb(167, 99, 107)", N0157 = "rgb(137, 84, 90)", N0158 = "rgb(107, 69, 73)", N0159 = "rgb(79, 55, 57)", N0301 = "rgb(250, 219, 215)", N0302 = "rgb(237, 193, 188)", N0303 = "rgb(224, 168, 161)", N0304 = "rgb(210, 142, 135)", N0305 = "rgb(196, 117, 110)", N0306 = "rgb(165, 101, 95)", N0307 = "rgb(135, 86, 80)", N0308 = "rgb(107, 70, 66)", N0309 = "rgb(79, 56, 53)", N0451 = "rgb(248, 220, 211)", N0452 = "rgb(234, 195, 181)", N0453 = "rgb(220, 170, 152)", N0454 = "rgb(205, 146, 124)", N0455 = "rgb(190, 121, 96)", N0456 = "rgb(160, 105, 84)", N0457 = "rgb(132, 88, 72)", N0458 = "rgb(104, 72, 60)", N0459 = "rgb(77, 57, 49)", N0601 = "rgb(244, 222, 207)", N0602 = "rgb(229, 198, 175)", N0603 = "rgb(213, 173, 144)", N0604 = "rgb(197, 150, 114)", N0605 = "rgb(181, 127, 85)", N0606 = "rgb(153, 109, 75)", N0607 = "rgb(126, 91, 65)", N0608 = "rgb(100, 74, 56)", N0609 = "rgb(74, 58, 46)", N0751 = "rgb(239, 224, 204)", N0752 = "rgb(222, 200, 172)", N0753 = "rgb(205, 177, 140)", N0754 = "rgb(187, 155, 108)", N0755 = "rgb(169, 133, 78)", N0756 = "rgb(143, 113, 69)", N0757 = "rgb(118, 95, 61)", N0758 = "rgb(94, 77, 52)", N0759 = "rgb(71, 60, 44)", N0901 = "rgb(234, 226, 203)", N0902 = "rgb(214, 203, 170)", N0903 = "rgb(194, 181, 138)", N0904 = "rgb(175, 159, 106)", N0905 = "rgb(155, 138, 75)", N0906 = "rgb(132, 118, 67)", N0907 = "rgb(109, 98, 59)", N0908 = "rgb(88, 79, 51)", N0909 = "rgb(67, 61, 43)", N1051 = "rgb(227, 228, 204)", N1052 = "rgb(205, 206, 171)", N1053 = "rgb(183, 185, 139)", N1054 = "rgb(161, 164, 107)", N1055 = "rgb(139, 143, 76)", N1056 = "rgb(119, 122, 68)", N1057 = "rgb(99, 102, 60)", N1058 = "rgb(80, 82, 52)", N1059 = "rgb(62, 63, 44)", N1201 = "rgb(221, 230, 206)", N1202 = "rgb(196, 209, 174)", N1203 = "rgb(171, 188, 143)", N1204 = "rgb(146, 168, 112)", N1205 = "rgb(122, 148, 83)", N1206 = "rgb(105, 126, 73)", N1207 = "rgb(88, 104, 64)", N1208 = "rgb(72, 84, 55)", N1209 = "rgb(57, 64, 45)", N1351 = "rgb(215, 231, 210)", N1352 = "rgb(187, 211, 179)", N1353 = "rgb(159, 191, 150)", N1354 = "rgb(131, 171, 121)", N1355 = "rgb(104, 151, 93)", N1356 = "rgb(90, 129, 81)", N1357 = "rgb(77, 107, 70)", N1358 = "rgb(64, 85, 59)", N1359 = "rgb(52, 65, 48)", N1501 = "rgb(209, 232, 214)", N1502 = "rgb(178, 212, 186)", N1503 = "rgb(147, 193, 159)", N1504 = "rgb(116, 173, 132)", N1505 = "rgb(85, 154, 106)", N1506 = "rgb(75, 131, 92)", N1507 = "rgb(66, 108, 78)", N1508 = "rgb(57, 87, 65)", N1509 = "rgb(47, 66, 52)", N1651 = "rgb(205, 233, 220)", N1652 = "rgb(171, 214, 194)", N1653 = "rgb(137, 194, 169)", N1654 = "rgb(102, 175, 145)", N1655 = "rgb(64, 155, 122)", N1656 = "rgb(60, 132, 105)", N1657 = "rgb(55, 109, 88)", N1658 = "rgb(49, 88, 72)", N1659 = "rgb(43, 67, 56)", N1801 = "rgb(201, 233, 226)", N1802 = "rgb(166, 214, 203)", N1803 = "rgb(129, 195, 181)", N1804 = "rgb(91, 175, 159)", N1805 = "rgb(42, 156, 138)", N1806 = "rgb(45, 133, 118)", N1807 = "rgb(45, 110, 98)", N1808 = "rgb(43, 88, 79)", N1809 = "rgb(40, 67, 61)", N1951 = "rgb(200, 233, 232)", N1952 = "rgb(163, 214, 212)", N1953 = "rgb(125, 195, 192)", N1954 = "rgb(83, 175, 173)", N1955 = "rgb(16, 156, 154)", N1956 = "rgb(32, 133, 131)", N1957 = "rgb(38, 110, 109)", N1958 = "rgb(39, 88, 87)", N1959 = "rgb(38, 67, 66)", N2101 = "rgb(200, 233, 237)", N2102 = "rgb(163, 213, 220)", N2103 = "rgb(125, 194, 203)", N2104 = "rgb(82, 174, 186)", N2105 = "rgb(1, 155, 170)", N2106 = "rgb(28, 132, 144)", N2107 = "rgb(36, 109, 118)", N2108 = "rgb(39, 87, 94)", N2109 = "rgb(38, 66, 70)", N2251 = "rgb(202, 232, 242)", N2252 = "rgb(166, 212, 227)", N2253 = "rgb(129, 192, 212)", N2254 = "rgb(88, 172, 198)", N2255 = "rgb(26, 153, 183)", N2256 = "rgb(37, 130, 154)", N2257 = "rgb(42, 108, 126)", N2258 = "rgb(42, 86, 100)", N2259 = "rgb(39, 66, 74)", N2401 = "rgb(206, 230, 246)", N2402 = "rgb(172, 210, 233)", N2403 = "rgb(138, 190, 220)", N2404 = "rgb(101, 170, 206)", N2405 = "rgb(54, 150, 193)", N2406 = "rgb(54, 128, 163)", N2407 = "rgb(52, 106, 133)", N2408 = "rgb(48, 85, 104)", N2409 = "rgb(43, 65, 77)", N2551 = "rgb(211, 229, 248)", N2552 = "rgb(181, 207, 236)", N2553 = "rgb(149, 187, 224)", N2554 = "rgb(117, 166, 212)", N2555 = "rgb(81, 146, 200)", N2556 = "rgb(73, 124, 168)", N2557 = "rgb(65, 103, 137)", N2558 = "rgb(57, 83, 107)", N2559 = "rgb(48, 63, 79)", N2701 = "rgb(218, 227, 249)", N2702 = "rgb(190, 205, 238)", N2703 = "rgb(163, 183, 226)", N2704 = "rgb(135, 162, 214)", N2705 = "rgb(106, 141, 202)", N2706 = "rgb(93, 120, 170)", N2707 = "rgb(79, 100, 139)", N2708 = "rgb(66, 81, 108)", N2709 = "rgb(53, 62, 80)", N2851 = "rgb(224, 225, 249)", N2852 = "rgb(200, 202, 237)", N2853 = "rgb(177, 179, 225)", N2854 = "rgb(153, 157, 213)", N2855 = "rgb(129, 136, 200)", N2856 = "rgb(111, 116, 168)", N2857 = "rgb(93, 97, 137)", N2858 = "rgb(76, 78, 108)", N2859 = "rgb(59, 60, 79)", N3001 = "rgb(231, 223, 246)", N3002 = "rgb(211, 199, 233)", N3003 = "rgb(190, 175, 220)", N3004 = "rgb(170, 152, 207)", N3005 = "rgb(149, 130, 194)", N3006 = "rgb(127, 111, 163)", N3007 = "rgb(106, 93, 134)", N3008 = "rgb(85, 76, 105)", N3009 = "rgb(65, 59, 77)", N3151 = "rgb(237, 221, 243)", N3152 = "rgb(220, 196, 228)", N3153 = "rgb(202, 172, 214)", N3154 = "rgb(185, 148, 199)", N3155 = "rgb(167, 124, 185)", N3156 = "rgb(141, 107, 156)", N3157 = "rgb(117, 90, 127)", N3158 = "rgb(93, 73, 100)", N3159 = "rgb(70, 57, 75)", N3301 = "rgb(243, 220, 238)", N3302 = "rgb(227, 194, 221)", N3303 = "rgb(212, 169, 205)", N3304 = "rgb(197, 144, 188)", N3305 = "rgb(181, 119, 172)", N3306 = "rgb(153, 103, 145)", N3307 = "rgb(125, 87, 119)", N3308 = "rgb(99, 71, 95)", N3309 = "rgb(74, 56, 71)", N3451 = "rgb(247, 219, 233)", N3452 = "rgb(233, 193, 213)", N3453 = "rgb(219, 167, 194)", N3454 = "rgb(205, 141, 175)", N3455 = "rgb(191, 115, 157)", N3456 = "rgb(161, 100, 133)", N3457 = "rgb(132, 84, 110)", N3458 = "rgb(104, 70, 88)", N3459 = "rgb(77, 55, 67)", N3601 = "rgb(249, 219, 227)", N3602 = "rgb(237, 192, 205)", N3603 = "rgb(224, 166, 183)", N3604 = "rgb(211, 140, 162)", N3605 = "rgb(197, 114, 141)", N3606 = "rgb(166, 98, 120)", N3607 = "rgb(136, 84, 100)", N3608 = "rgb(107, 69, 81)", N3609 = "rgb(79, 55, 62)" } export { ColorPicker, ColorScheme, ColorSwatch, hueConfig, hueNames, hue_hcl, hue_hex, hue_rgb };