hue.gl 0.0.29 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/color/ColorPicker.d.ts +13 -8
- package/js/color/ColorPicker.js +18 -24
- package/js/color/ColorScheme.d.ts +1 -1
- package/js/color/ColorScheme.js +6 -17
- package/js/color/ColorSwatch.d.ts +1 -1
- package/js/color/ColorSwatch.js +5 -15
- package/js/color/index.d.ts +3 -3
- package/js/color/index.js +3 -13
- package/js/config/hue.config.js +2 -13
- package/js/config/hue.names.js +2 -13
- package/js/config/index.d.ts +2 -2
- package/js/config/index.js +0 -10
- package/js/constants/hue_hcl.js +3 -13
- package/js/constants/hue_hex.js +3 -13
- package/js/constants/hue_rgb.js +3 -13
- package/js/constants/index.d.ts +3 -3
- package/js/constants/index.js +3 -13
- package/js/index.d.ts +3 -3
- package/js/index.js +2 -12
- package/md/hue.gl.md +0 -2
- package/package.json +23 -2
- package/py/hue.gl.py +2 -1
- package/rcpx/hue.gl.rcpx +1 -1
- package/scss/functions/_base.scss +1 -1
- package/scss/hue/_hue.gl-hcl-map.scss +6 -0
- package/scss/hue/_hue.gl-hcl-var.scss +6 -0
- package/scss/hue/_hue.gl-hex-map.scss +1 -1
- package/scss/hue/_hue.gl-hex-var.scss +1 -1
- package/scss/hue/_hue.gl-rgb-map.scss +1 -1
- package/scss/hue/_hue.gl-rgb-var.scss +1 -1
- package/styl/hue.gl.styl +1 -1
- package/tex/hue.gl.tex +1 -1
- package/ts/constants/hue_hcl.ts +1 -1
- package/ts/constants/hue_hex.ts +226 -226
- package/ts/constants/hue_rgb.ts +1 -1
- package/css/unit.gl.css +0 -2
- package/css/unit.gl.min.css +0 -2
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Enumerates the types of color models that are supported by the ColorPicker.
|
|
3
3
|
*/
|
|
4
|
-
type ColorEnum =
|
|
4
|
+
type ColorEnum = "RGB" | "HSL" | "HCL" | "HEX";
|
|
5
5
|
/**
|
|
6
|
-
* Provides functionality to fetch color values based on a specified color
|
|
6
|
+
* Provides functionality to fetch color values based on a specified color
|
|
7
|
+
* model and key.
|
|
7
8
|
*/
|
|
8
9
|
export declare class ColorPicker {
|
|
9
10
|
/**
|
|
10
11
|
* Retrieves a color value by its enum key.
|
|
11
12
|
*
|
|
12
13
|
* This method allows for fetching a color value using a defined enum type
|
|
13
|
-
* and a key specific to that enum
|
|
14
|
-
* such as RGB, HCL, and HEX.
|
|
14
|
+
* and a key specific to that enum"s color model. The method supports
|
|
15
|
+
* various color models such as RGB, HCL, and HEX.
|
|
15
16
|
*
|
|
16
|
-
* @param colorEnum The enum type to pick the color from. Possible values
|
|
17
|
-
*
|
|
18
|
-
* @
|
|
17
|
+
* @param colorEnum The enum type to pick the color from. Possible values
|
|
18
|
+
* are "RGB", "HSL", "HCL", "HEX".
|
|
19
|
+
* @param colorKey The key of the color in the specified enum. This is
|
|
20
|
+
* expected to be a valid key within the respective color dictionary.
|
|
21
|
+
* @returns The color value as a string (if found), or null if the key
|
|
22
|
+
* does not exist in the specified enum.
|
|
19
23
|
*/
|
|
20
24
|
static get(colorEnum: ColorEnum, colorKey: string): string | null;
|
|
21
25
|
}
|
|
22
26
|
export {};
|
|
23
27
|
/**
|
|
24
|
-
* Example demonstrating how to retrieve a specific RGB color using the
|
|
28
|
+
* Example demonstrating how to retrieve a specific RGB color using the
|
|
29
|
+
* ColorPicker.
|
|
25
30
|
*/
|
package/js/color/ColorPicker.js
CHANGED
|
@@ -1,51 +1,44 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// script/class/class/DirectoryCleaner.ts
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.ColorPicker = void 0;
|
|
5
|
-
// Copyright 2025 Scape Agency BV
|
|
6
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
// you may not use this file except in compliance with the License.
|
|
8
|
-
// You may obtain a copy of the License at
|
|
9
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
// See the License for the specific language governing permissions and
|
|
14
|
-
// limitations under the License.
|
|
15
2
|
// ============================================================================
|
|
16
3
|
// Import
|
|
17
4
|
// ============================================================================
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ColorPicker = void 0;
|
|
18
7
|
const constants_1 = require("../constants");
|
|
19
8
|
// ============================================================================
|
|
20
9
|
// Classes
|
|
21
10
|
// ============================================================================
|
|
22
11
|
/**
|
|
23
|
-
* Provides functionality to fetch color values based on a specified color
|
|
12
|
+
* Provides functionality to fetch color values based on a specified color
|
|
13
|
+
* model and key.
|
|
24
14
|
*/
|
|
25
15
|
class ColorPicker {
|
|
26
16
|
/**
|
|
27
17
|
* Retrieves a color value by its enum key.
|
|
28
18
|
*
|
|
29
19
|
* This method allows for fetching a color value using a defined enum type
|
|
30
|
-
* and a key specific to that enum
|
|
31
|
-
* such as RGB, HCL, and HEX.
|
|
20
|
+
* and a key specific to that enum"s color model. The method supports
|
|
21
|
+
* various color models such as RGB, HCL, and HEX.
|
|
32
22
|
*
|
|
33
|
-
* @param colorEnum The enum type to pick the color from. Possible values
|
|
34
|
-
*
|
|
35
|
-
* @
|
|
23
|
+
* @param colorEnum The enum type to pick the color from. Possible values
|
|
24
|
+
* are "RGB", "HSL", "HCL", "HEX".
|
|
25
|
+
* @param colorKey The key of the color in the specified enum. This is
|
|
26
|
+
* expected to be a valid key within the respective color dictionary.
|
|
27
|
+
* @returns The color value as a string (if found), or null if the key
|
|
28
|
+
* does not exist in the specified enum.
|
|
36
29
|
*/
|
|
37
30
|
static get(colorEnum, colorKey) {
|
|
38
31
|
let color;
|
|
39
32
|
switch (colorEnum) {
|
|
40
|
-
case
|
|
33
|
+
case "RGB":
|
|
41
34
|
// color = hue_rgb[colorKey as keyof typeof hue_rgb];
|
|
42
35
|
return constants_1.hue_rgb[colorKey] || null;
|
|
43
36
|
// break;
|
|
44
|
-
case
|
|
37
|
+
case "HCL":
|
|
45
38
|
// color = hue_hcl[colorKey as keyof typeof hue_hcl];
|
|
46
39
|
return constants_1.hue_hcl[colorKey] || null;
|
|
47
40
|
// break;
|
|
48
|
-
case
|
|
41
|
+
case "HEX":
|
|
49
42
|
// color = hue_hex[colorKey as keyof typeof hue_hex];
|
|
50
43
|
return constants_1.hue_hex[colorKey] || null;
|
|
51
44
|
// break;
|
|
@@ -60,7 +53,8 @@ exports.ColorPicker = ColorPicker;
|
|
|
60
53
|
// Example
|
|
61
54
|
// ============================================================================
|
|
62
55
|
/**
|
|
63
|
-
* Example demonstrating how to retrieve a specific RGB color using the
|
|
56
|
+
* Example demonstrating how to retrieve a specific RGB color using the
|
|
57
|
+
* ColorPicker.
|
|
64
58
|
*/
|
|
65
|
-
// const specificRGBColor = ColorPicker.get(
|
|
59
|
+
// const specificRGBColor = ColorPicker.get("RGB", "N0001"); // Should return "rgb(0, 0, 90)" or similar
|
|
66
60
|
// console.log(specificRGBColor); // Outputs: rgb(0, 0, 90) or similar
|
package/js/color/ColorScheme.js
CHANGED
|
@@ -1,22 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// script/class/class/DirectoryCleaner.ts
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.ColorScheme = void 0;
|
|
5
|
-
// Copyright 2025 Scape Agency BV
|
|
6
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
// you may not use this file except in compliance with the License.
|
|
8
|
-
// You may obtain a copy of the License at
|
|
9
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
// See the License for the specific language governing permissions and
|
|
14
|
-
// limitations under the License.
|
|
15
2
|
// ============================================================================
|
|
16
3
|
// Import
|
|
17
4
|
// ============================================================================
|
|
18
|
-
|
|
19
|
-
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ColorScheme = void 0;
|
|
7
|
+
const util_1 = require("../util");
|
|
8
|
+
const ColorSwatch_1 = require("./ColorSwatch");
|
|
20
9
|
// ============================================================================
|
|
21
10
|
// Classes
|
|
22
11
|
// ============================================================================
|
|
@@ -84,8 +73,8 @@ class ColorScheme {
|
|
|
84
73
|
c_cur = 0;
|
|
85
74
|
}
|
|
86
75
|
;
|
|
87
|
-
let name = this.config.prefix + (0,
|
|
88
|
-
let color = new
|
|
76
|
+
let name = this.config.prefix + (0, util_1.pad)(h.toString(), 3, "0") + (i + 1).toString();
|
|
77
|
+
let color = new ColorSwatch_1.ColorSwatch(h, c_cur, l_cur, name);
|
|
89
78
|
this.colorList.push(color);
|
|
90
79
|
h_group[name] = color;
|
|
91
80
|
}
|
package/js/color/ColorSwatch.js
CHANGED
|
@@ -1,24 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
//
|
|
2
|
+
// ============================================================================
|
|
3
|
+
// Import
|
|
4
|
+
// ============================================================================
|
|
3
5
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
6
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
7
|
};
|
|
6
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
9
|
exports.ColorSwatch = void 0;
|
|
8
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
// you may not use this file except in compliance with the License.
|
|
10
|
-
// You may obtain a copy of the License at
|
|
11
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
// See the License for the specific language governing permissions and
|
|
16
|
-
// limitations under the License.
|
|
17
|
-
// ============================================================================
|
|
18
|
-
// Import
|
|
19
|
-
// ============================================================================
|
|
20
10
|
const colorjs_io_1 = __importDefault(require("colorjs.io"));
|
|
21
|
-
const
|
|
11
|
+
const util_1 = require("../util");
|
|
22
12
|
// ============================================================================
|
|
23
13
|
// Classes
|
|
24
14
|
// ============================================================================
|
|
@@ -194,7 +184,7 @@ class ColorSwatch {
|
|
|
194
184
|
}
|
|
195
185
|
hex() {
|
|
196
186
|
let color = this.srgb();
|
|
197
|
-
let hex = (0,
|
|
187
|
+
let hex = (0, util_1.convertRGBtoHex)(Math.round(color.coords[0] * 255), Math.round(color.coords[1] * 255), Math.round(color.coords[2] * 255));
|
|
198
188
|
// console.log(color.coords[0]);
|
|
199
189
|
return hex;
|
|
200
190
|
}
|
package/js/color/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
1
|
+
export { ColorPicker } from "./ColorPicker";
|
|
2
|
+
export { ColorScheme } from "./ColorScheme";
|
|
3
|
+
export { ColorSwatch } from "./ColorSwatch";
|
package/js/color/index.js
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
3
|
+
exports.ColorSwatch = exports.ColorScheme = exports.ColorPicker = void 0;
|
|
4
|
+
var ColorPicker_1 = require("./ColorPicker");
|
|
5
|
+
Object.defineProperty(exports, "ColorPicker", { enumerable: true, get: function () { return ColorPicker_1.ColorPicker; } });
|
|
14
6
|
var ColorScheme_1 = require("./ColorScheme");
|
|
15
7
|
Object.defineProperty(exports, "ColorScheme", { enumerable: true, get: function () { return ColorScheme_1.ColorScheme; } });
|
|
16
8
|
var ColorSwatch_1 = require("./ColorSwatch");
|
|
17
9
|
Object.defineProperty(exports, "ColorSwatch", { enumerable: true, get: function () { return ColorSwatch_1.ColorSwatch; } });
|
|
18
|
-
var ColorPicker_1 = require("./ColorPicker");
|
|
19
|
-
Object.defineProperty(exports, "ColorPicker", { enumerable: true, get: function () { return ColorPicker_1.ColorPicker; } });
|
package/js/config/hue.config.js
CHANGED
|
@@ -1,20 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// hue/config/hue.config.ts
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hueConfig = void 0;
|
|
5
|
-
// Copyright 2025 Scape Agency BV
|
|
6
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
// you may not use this file except in compliance with the License.
|
|
8
|
-
// You may obtain a copy of the License at
|
|
9
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
// See the License for the specific language governing permissions and
|
|
14
|
-
// limitations under the License.
|
|
15
2
|
// ============================================================================
|
|
16
3
|
// Constants
|
|
17
4
|
// ============================================================================
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.hueConfig = void 0;
|
|
18
7
|
exports.hueConfig = {
|
|
19
8
|
prefix: "N",
|
|
20
9
|
h_step: 15,
|
package/js/config/hue.names.js
CHANGED
|
@@ -1,20 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// hue/config/hue.names.ts
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hueNames = void 0;
|
|
5
|
-
// Copyright 2025 Scape Agency BV
|
|
6
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
// you may not use this file except in compliance with the License.
|
|
8
|
-
// You may obtain a copy of the License at
|
|
9
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
// See the License for the specific language governing permissions and
|
|
14
|
-
// limitations under the License.
|
|
15
2
|
// ============================================================================
|
|
16
3
|
// Constants
|
|
17
4
|
// ============================================================================
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.hueNames = void 0;
|
|
18
7
|
exports.hueNames = {
|
|
19
8
|
0: "Grey",
|
|
20
9
|
15: "Salmon",
|
package/js/config/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { hueConfig } from
|
|
2
|
-
export { hueNames } from
|
|
1
|
+
export { hueConfig } from "./hue.config";
|
|
2
|
+
export { hueNames } from "./hue.names";
|
package/js/config/index.js
CHANGED
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
3
|
exports.hueNames = exports.hueConfig = void 0;
|
|
5
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
// you may not use this file except in compliance with the License.
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
14
4
|
var hue_config_1 = require("./hue.config");
|
|
15
5
|
Object.defineProperty(exports, "hueConfig", { enumerable: true, get: function () { return hue_config_1.hueConfig; } });
|
|
16
6
|
var hue_names_1 = require("./hue.names");
|
package/js/constants/hue_hcl.js
CHANGED
|
@@ -1,22 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hue_hcl = void 0;
|
|
5
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
// you may not use this file except in compliance with the License.
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
14
2
|
// ============================================================================
|
|
15
3
|
//
|
|
16
4
|
// hue.gl
|
|
17
|
-
// 0.0.
|
|
5
|
+
// 0.0.33
|
|
18
6
|
//
|
|
19
7
|
// ============================================================================
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.hue_hcl = void 0;
|
|
20
10
|
// General
|
|
21
11
|
// ============================================================================
|
|
22
12
|
var hue_hcl;
|
package/js/constants/hue_hex.js
CHANGED
|
@@ -1,22 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hue_hex = void 0;
|
|
5
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
// you may not use this file except in compliance with the License.
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
14
2
|
// ============================================================================
|
|
15
3
|
//
|
|
16
4
|
// hue.gl
|
|
17
|
-
// 0.0.
|
|
5
|
+
// 0.0.33
|
|
18
6
|
//
|
|
19
7
|
// ============================================================================
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.hue_hex = void 0;
|
|
20
10
|
// General
|
|
21
11
|
// ============================================================================
|
|
22
12
|
var hue_hex;
|
package/js/constants/hue_rgb.js
CHANGED
|
@@ -1,22 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hue_rgb = void 0;
|
|
5
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
// you may not use this file except in compliance with the License.
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
14
2
|
// ============================================================================
|
|
15
3
|
//
|
|
16
4
|
// hue.gl
|
|
17
|
-
// 0.0.
|
|
5
|
+
// 0.0.33
|
|
18
6
|
//
|
|
19
7
|
// ============================================================================
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.hue_rgb = void 0;
|
|
20
10
|
// General
|
|
21
11
|
// ============================================================================
|
|
22
12
|
var hue_rgb;
|
package/js/constants/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export { hue_rgb } from
|
|
1
|
+
export { hue_hcl } from "./hue_hcl";
|
|
2
|
+
export { hue_hex } from "./hue_hex";
|
|
3
|
+
export { hue_rgb } from "./hue_rgb";
|
package/js/constants/index.js
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hue_rgb = exports.
|
|
5
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
// you may not use this file except in compliance with the License.
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
14
|
-
var hue_hex_1 = require("./hue_hex");
|
|
15
|
-
Object.defineProperty(exports, "hue_hex", { enumerable: true, get: function () { return hue_hex_1.hue_hex; } });
|
|
3
|
+
exports.hue_rgb = exports.hue_hex = exports.hue_hcl = void 0;
|
|
16
4
|
var hue_hcl_1 = require("./hue_hcl");
|
|
17
5
|
Object.defineProperty(exports, "hue_hcl", { enumerable: true, get: function () { return hue_hcl_1.hue_hcl; } });
|
|
6
|
+
var hue_hex_1 = require("./hue_hex");
|
|
7
|
+
Object.defineProperty(exports, "hue_hex", { enumerable: true, get: function () { return hue_hex_1.hue_hex; } });
|
|
18
8
|
var hue_rgb_1 = require("./hue_rgb");
|
|
19
9
|
Object.defineProperty(exports, "hue_rgb", { enumerable: true, get: function () { return hue_rgb_1.hue_rgb; } });
|
package/js/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { ColorPicker, ColorScheme, ColorSwatch
|
|
2
|
-
export { hueConfig, hueNames
|
|
3
|
-
export {
|
|
1
|
+
export { ColorPicker, ColorScheme, ColorSwatch } from "./color";
|
|
2
|
+
export { hueConfig, hueNames } from "./config";
|
|
3
|
+
export { hue_hcl, hue_hex, hue_rgb } from "./constants";
|
package/js/index.js
CHANGED
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Copyright 2025 Scape Agency BV
|
|
3
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.hue_rgb = exports.
|
|
5
|
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
// you may not use this file except in compliance with the License.
|
|
7
|
-
// You may obtain a copy of the License at
|
|
8
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
// See the License for the specific language governing permissions and
|
|
13
|
-
// limitations under the License.
|
|
3
|
+
exports.hue_rgb = exports.hue_hex = exports.hue_hcl = exports.hueNames = exports.hueConfig = exports.ColorSwatch = exports.ColorScheme = exports.ColorPicker = void 0;
|
|
14
4
|
var color_1 = require("./color");
|
|
15
5
|
Object.defineProperty(exports, "ColorPicker", { enumerable: true, get: function () { return color_1.ColorPicker; } });
|
|
16
6
|
Object.defineProperty(exports, "ColorScheme", { enumerable: true, get: function () { return color_1.ColorScheme; } });
|
|
@@ -19,6 +9,6 @@ var config_1 = require("./config");
|
|
|
19
9
|
Object.defineProperty(exports, "hueConfig", { enumerable: true, get: function () { return config_1.hueConfig; } });
|
|
20
10
|
Object.defineProperty(exports, "hueNames", { enumerable: true, get: function () { return config_1.hueNames; } });
|
|
21
11
|
var constants_1 = require("./constants");
|
|
22
|
-
Object.defineProperty(exports, "hue_hex", { enumerable: true, get: function () { return constants_1.hue_hex; } });
|
|
23
12
|
Object.defineProperty(exports, "hue_hcl", { enumerable: true, get: function () { return constants_1.hue_hcl; } });
|
|
13
|
+
Object.defineProperty(exports, "hue_hex", { enumerable: true, get: function () { return constants_1.hue_hex; } });
|
|
24
14
|
Object.defineProperty(exports, "hue_rgb", { enumerable: true, get: function () { return constants_1.hue_rgb; } });
|
package/md/hue.gl.md
CHANGED
|
@@ -25,5 +25,3 @@
|
|
|
25
25
|
| **Rose** | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3301.png" alt="N3301"><small>N3301</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3302.png" alt="N3302"><small>N3302</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3303.png" alt="N3303"><small>N3303</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3304.png" alt="N3304"><small>N3304</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3305.png" alt="N3305"><small>N3305</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3306.png" alt="N3306"><small>N3306</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3307.png" alt="N3307"><small>N3307</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3308.png" alt="N3308"><small>N3308</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3309.png" alt="N3309"><small>N3309</small> |
|
|
26
26
|
| **Pink** | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3451.png" alt="N3451"><small>N3451</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3452.png" alt="N3452"><small>N3452</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3453.png" alt="N3453"><small>N3453</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3454.png" alt="N3454"><small>N3454</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3455.png" alt="N3455"><small>N3455</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3456.png" alt="N3456"><small>N3456</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3457.png" alt="N3457"><small>N3457</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3458.png" alt="N3458"><small>N3458</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3459.png" alt="N3459"><small>N3459</small> |
|
|
27
27
|
| **Red** | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3601.png" alt="N3601"><small>N3601</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3602.png" alt="N3602"><small>N3602</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3603.png" alt="N3603"><small>N3603</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3604.png" alt="N3604"><small>N3604</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3605.png" alt="N3605"><small>N3605</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3606.png" alt="N3606"><small>N3606</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3607.png" alt="N3607"><small>N3607</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3608.png" alt="N3608"><small>N3608</small> | <img src="https://raw.githubusercontent.com/scape-agency/hue.gl/main/dist/png/swatch/N3609.png" alt="N3609"><small>N3609</small> |
|
|
28
|
-
|
|
29
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hue.gl",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
4
4
|
"description": "hue.gl is a colour palette developed by Scape Agency.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"hue.gl",
|
|
@@ -41,6 +41,27 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"colorjs.io": "^0.5.2",
|
|
44
|
-
"core-js": "^3.40.0"
|
|
44
|
+
"core-js": "^3.40.0",
|
|
45
|
+
"tslib": "^2.8.1"
|
|
46
|
+
},
|
|
47
|
+
"author": "Lars van Vianen",
|
|
48
|
+
"contributors": [
|
|
49
|
+
"Scape Agency"
|
|
50
|
+
],
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/stylescape/hue.gl.git"
|
|
54
|
+
},
|
|
55
|
+
"funding": [
|
|
56
|
+
{
|
|
57
|
+
"type": "github",
|
|
58
|
+
"url": "https://github.com/sponsors/stylescape"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"exports": {
|
|
62
|
+
".": {
|
|
63
|
+
"sass": "./scss/index.scss",
|
|
64
|
+
"typescript": "./ts/index.ts"
|
|
65
|
+
}
|
|
45
66
|
}
|
|
46
67
|
}
|
package/py/hue.gl.py
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
# =============================================================================
|
|
16
16
|
#
|
|
17
17
|
# hue.gl
|
|
18
|
-
# 0.0.
|
|
18
|
+
# 0.0.33
|
|
19
19
|
#
|
|
20
20
|
# =============================================================================
|
|
21
21
|
|
|
@@ -347,3 +347,4 @@ N3606 = (166, 98, 120)
|
|
|
347
347
|
N3607 = (136, 84, 100)
|
|
348
348
|
N3608 = (107, 69, 81)
|
|
349
349
|
N3609 = (79, 55, 62)
|
|
350
|
+
|
package/rcpx/hue.gl.rcpx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!DOCTYPE palette PUBLIC "-//Kreative//DTD ResplendentColor 1.0//EN" "http://www.kreativekorp.com/dtd/rcpx.dtd">
|
|
3
|
-
<!-- hue.gl, version: 0.0.
|
|
3
|
+
<!-- hue.gl, version: 0.0.33 - https://www.hue.gl/ -->
|
|
4
4
|
<palette name="Open Color"
|
|
5
5
|
orientation="square"
|
|
6
6
|
hwidth="241" hheight= "85"
|
package/styl/hue.gl.styl
CHANGED
package/tex/hue.gl.tex
CHANGED
package/ts/constants/hue_hcl.ts
CHANGED
package/ts/constants/hue_hex.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// ============================================================================
|
|
2
2
|
//
|
|
3
3
|
// hue.gl
|
|
4
|
-
// 0.0.
|
|
4
|
+
// 0.0.33
|
|
5
5
|
//
|
|
6
6
|
// ============================================================================
|
|
7
7
|
|
|
@@ -14,327 +14,327 @@ export enum hue_hex {
|
|
|
14
14
|
// Grey
|
|
15
15
|
// ------------------------------------------------------------------------
|
|
16
16
|
|
|
17
|
-
N0001 =
|
|
18
|
-
N0002 =
|
|
19
|
-
N0003 =
|
|
20
|
-
N0004 =
|
|
21
|
-
N0005 =
|
|
22
|
-
N0006 =
|
|
23
|
-
N0007 =
|
|
24
|
-
N0008 =
|
|
25
|
-
N0009 =
|
|
17
|
+
N0001 = '#e2e2e2',
|
|
18
|
+
N0002 = '#cccccc',
|
|
19
|
+
N0003 = '#b6b6b6',
|
|
20
|
+
N0004 = '#a0a0a0',
|
|
21
|
+
N0005 = '#8b8b8b',
|
|
22
|
+
N0006 = '#777777',
|
|
23
|
+
N0007 = '#636363',
|
|
24
|
+
N0008 = '#505050',
|
|
25
|
+
N0009 = '#3e3e3e',
|
|
26
26
|
|
|
27
27
|
// Salmon
|
|
28
28
|
// ------------------------------------------------------------------------
|
|
29
29
|
|
|
30
|
-
N0151 =
|
|
31
|
-
N0152 =
|
|
32
|
-
N0153 =
|
|
33
|
-
N0154 =
|
|
34
|
-
N0155 =
|
|
35
|
-
N0156 =
|
|
36
|
-
N0157 =
|
|
37
|
-
N0158 =
|
|
38
|
-
N0159 =
|
|
30
|
+
N0151 = '#fadbdd',
|
|
31
|
+
N0152 = '#eec0c4',
|
|
32
|
+
N0153 = '#e2a6ac',
|
|
33
|
+
N0154 = '#d48c94',
|
|
34
|
+
N0155 = '#c6727d',
|
|
35
|
+
N0156 = '#a7636b',
|
|
36
|
+
N0157 = '#89545a',
|
|
37
|
+
N0158 = '#6b4549',
|
|
38
|
+
N0159 = '#4f3739',
|
|
39
39
|
|
|
40
40
|
// Orange
|
|
41
41
|
// ------------------------------------------------------------------------
|
|
42
42
|
|
|
43
|
-
N0301 =
|
|
44
|
-
N0302 =
|
|
45
|
-
N0303 =
|
|
46
|
-
N0304 =
|
|
47
|
-
N0305 =
|
|
48
|
-
N0306 =
|
|
49
|
-
N0307 =
|
|
50
|
-
N0308 =
|
|
51
|
-
N0309 =
|
|
43
|
+
N0301 = '#fadbd7',
|
|
44
|
+
N0302 = '#edc1bc',
|
|
45
|
+
N0303 = '#e0a8a1',
|
|
46
|
+
N0304 = '#d28e87',
|
|
47
|
+
N0305 = '#c4756e',
|
|
48
|
+
N0306 = '#a5655f',
|
|
49
|
+
N0307 = '#875650',
|
|
50
|
+
N0308 = '#6b4642',
|
|
51
|
+
N0309 = '#4f3835',
|
|
52
52
|
|
|
53
53
|
// Amber
|
|
54
54
|
// ------------------------------------------------------------------------
|
|
55
55
|
|
|
56
|
-
N0451 =
|
|
57
|
-
N0452 =
|
|
58
|
-
N0453 =
|
|
59
|
-
N0454 =
|
|
60
|
-
N0455 =
|
|
61
|
-
N0456 =
|
|
62
|
-
N0457 =
|
|
63
|
-
N0458 =
|
|
64
|
-
N0459 =
|
|
56
|
+
N0451 = '#f8dcd3',
|
|
57
|
+
N0452 = '#eac3b5',
|
|
58
|
+
N0453 = '#dcaa98',
|
|
59
|
+
N0454 = '#cd927c',
|
|
60
|
+
N0455 = '#be7960',
|
|
61
|
+
N0456 = '#a06954',
|
|
62
|
+
N0457 = '#845848',
|
|
63
|
+
N0458 = '#68483c',
|
|
64
|
+
N0459 = '#4d3931',
|
|
65
65
|
|
|
66
66
|
// Yellow
|
|
67
67
|
// ------------------------------------------------------------------------
|
|
68
68
|
|
|
69
|
-
N0601 =
|
|
70
|
-
N0602 =
|
|
71
|
-
N0603 =
|
|
72
|
-
N0604 =
|
|
73
|
-
N0605 =
|
|
74
|
-
N0606 =
|
|
75
|
-
N0607 =
|
|
76
|
-
N0608 =
|
|
77
|
-
N0609 =
|
|
69
|
+
N0601 = '#f4decf',
|
|
70
|
+
N0602 = '#e5c6af',
|
|
71
|
+
N0603 = '#d5ad90',
|
|
72
|
+
N0604 = '#c59672',
|
|
73
|
+
N0605 = '#b57f55',
|
|
74
|
+
N0606 = '#996d4b',
|
|
75
|
+
N0607 = '#7e5b41',
|
|
76
|
+
N0608 = '#644a38',
|
|
77
|
+
N0609 = '#4a3a2e',
|
|
78
78
|
|
|
79
79
|
// Lime
|
|
80
80
|
// ------------------------------------------------------------------------
|
|
81
81
|
|
|
82
|
-
N0751 =
|
|
83
|
-
N0752 =
|
|
84
|
-
N0753 =
|
|
85
|
-
N0754 =
|
|
86
|
-
N0755 =
|
|
87
|
-
N0756 =
|
|
88
|
-
N0757 =
|
|
89
|
-
N0758 =
|
|
90
|
-
N0759 =
|
|
82
|
+
N0751 = '#efe0cc',
|
|
83
|
+
N0752 = '#dec8ac',
|
|
84
|
+
N0753 = '#cdb18c',
|
|
85
|
+
N0754 = '#bb9b6c',
|
|
86
|
+
N0755 = '#a9854e',
|
|
87
|
+
N0756 = '#8f7145',
|
|
88
|
+
N0757 = '#765f3d',
|
|
89
|
+
N0758 = '#5e4d34',
|
|
90
|
+
N0759 = '#473c2c',
|
|
91
91
|
|
|
92
92
|
// Ecru
|
|
93
93
|
// ------------------------------------------------------------------------
|
|
94
94
|
|
|
95
|
-
N0901 =
|
|
96
|
-
N0902 =
|
|
97
|
-
N0903 =
|
|
98
|
-
N0904 =
|
|
99
|
-
N0905 =
|
|
100
|
-
N0906 =
|
|
101
|
-
N0907 =
|
|
102
|
-
N0908 =
|
|
103
|
-
N0909 =
|
|
95
|
+
N0901 = '#eae2cb',
|
|
96
|
+
N0902 = '#d6cbaa',
|
|
97
|
+
N0903 = '#c2b58a',
|
|
98
|
+
N0904 = '#af9f6a',
|
|
99
|
+
N0905 = '#9b8a4b',
|
|
100
|
+
N0906 = '#847643',
|
|
101
|
+
N0907 = '#6d623b',
|
|
102
|
+
N0908 = '#584f33',
|
|
103
|
+
N0909 = '#433d2b',
|
|
104
104
|
|
|
105
105
|
// Olive
|
|
106
106
|
// ------------------------------------------------------------------------
|
|
107
107
|
|
|
108
|
-
N1051 =
|
|
109
|
-
N1052 =
|
|
110
|
-
N1053 =
|
|
111
|
-
N1054 =
|
|
112
|
-
N1055 =
|
|
113
|
-
N1056 =
|
|
114
|
-
N1057 =
|
|
115
|
-
N1058 =
|
|
116
|
-
N1059 =
|
|
108
|
+
N1051 = '#e3e4cc',
|
|
109
|
+
N1052 = '#cdceab',
|
|
110
|
+
N1053 = '#b7b98b',
|
|
111
|
+
N1054 = '#a1a46b',
|
|
112
|
+
N1055 = '#8b8f4c',
|
|
113
|
+
N1056 = '#777a44',
|
|
114
|
+
N1057 = '#63663c',
|
|
115
|
+
N1058 = '#505234',
|
|
116
|
+
N1059 = '#3e3f2c',
|
|
117
117
|
|
|
118
118
|
// Green
|
|
119
119
|
// ------------------------------------------------------------------------
|
|
120
120
|
|
|
121
|
-
N1201 =
|
|
122
|
-
N1202 =
|
|
123
|
-
N1203 =
|
|
124
|
-
N1204 =
|
|
125
|
-
N1205 =
|
|
126
|
-
N1206 =
|
|
127
|
-
N1207 =
|
|
128
|
-
N1208 =
|
|
129
|
-
N1209 =
|
|
121
|
+
N1201 = '#dde6ce',
|
|
122
|
+
N1202 = '#c4d1ae',
|
|
123
|
+
N1203 = '#abbc8f',
|
|
124
|
+
N1204 = '#92a870',
|
|
125
|
+
N1205 = '#7a9453',
|
|
126
|
+
N1206 = '#697e49',
|
|
127
|
+
N1207 = '#586840',
|
|
128
|
+
N1208 = '#485437',
|
|
129
|
+
N1209 = '#39402d',
|
|
130
130
|
|
|
131
131
|
// Forest
|
|
132
132
|
// ------------------------------------------------------------------------
|
|
133
133
|
|
|
134
|
-
N1351 =
|
|
135
|
-
N1352 =
|
|
136
|
-
N1353 =
|
|
137
|
-
N1354 =
|
|
138
|
-
N1355 =
|
|
139
|
-
N1356 =
|
|
140
|
-
N1357 =
|
|
141
|
-
N1358 =
|
|
142
|
-
N1359 =
|
|
134
|
+
N1351 = '#d7e7d2',
|
|
135
|
+
N1352 = '#bbd3b3',
|
|
136
|
+
N1353 = '#9fbf96',
|
|
137
|
+
N1354 = '#83ab79',
|
|
138
|
+
N1355 = '#68975d',
|
|
139
|
+
N1356 = '#5a8151',
|
|
140
|
+
N1357 = '#4d6b46',
|
|
141
|
+
N1358 = '#40553b',
|
|
142
|
+
N1359 = '#344130',
|
|
143
143
|
|
|
144
144
|
// Jade
|
|
145
145
|
// ------------------------------------------------------------------------
|
|
146
146
|
|
|
147
|
-
N1501 =
|
|
148
|
-
N1502 =
|
|
149
|
-
N1503 =
|
|
150
|
-
N1504 =
|
|
151
|
-
N1505 =
|
|
152
|
-
N1506 =
|
|
153
|
-
N1507 =
|
|
154
|
-
N1508 =
|
|
155
|
-
N1509 =
|
|
147
|
+
N1501 = '#d1e8d6',
|
|
148
|
+
N1502 = '#b2d4ba',
|
|
149
|
+
N1503 = '#93c19f',
|
|
150
|
+
N1504 = '#74ad84',
|
|
151
|
+
N1505 = '#559a6a',
|
|
152
|
+
N1506 = '#4b835c',
|
|
153
|
+
N1507 = '#426c4e',
|
|
154
|
+
N1508 = '#395741',
|
|
155
|
+
N1509 = '#2f4234',
|
|
156
156
|
|
|
157
157
|
// Mint
|
|
158
158
|
// ------------------------------------------------------------------------
|
|
159
159
|
|
|
160
|
-
N1651 =
|
|
161
|
-
N1652 =
|
|
162
|
-
N1653 =
|
|
163
|
-
N1654 =
|
|
164
|
-
N1655 =
|
|
165
|
-
N1656 =
|
|
166
|
-
N1657 =
|
|
167
|
-
N1658 =
|
|
168
|
-
N1659 =
|
|
160
|
+
N1651 = '#cde9dc',
|
|
161
|
+
N1652 = '#abd6c2',
|
|
162
|
+
N1653 = '#89c2a9',
|
|
163
|
+
N1654 = '#66af91',
|
|
164
|
+
N1655 = '#409b7a',
|
|
165
|
+
N1656 = '#3c8469',
|
|
166
|
+
N1657 = '#376d58',
|
|
167
|
+
N1658 = '#315848',
|
|
168
|
+
N1659 = '#2b4338',
|
|
169
169
|
|
|
170
170
|
// Cyan
|
|
171
171
|
// ------------------------------------------------------------------------
|
|
172
172
|
|
|
173
|
-
N1801 =
|
|
174
|
-
N1802 =
|
|
175
|
-
N1803 =
|
|
176
|
-
N1804 =
|
|
177
|
-
N1805 =
|
|
178
|
-
N1806 =
|
|
179
|
-
N1807 =
|
|
180
|
-
N1808 =
|
|
181
|
-
N1809 =
|
|
173
|
+
N1801 = '#c9e9e2',
|
|
174
|
+
N1802 = '#a6d6cb',
|
|
175
|
+
N1803 = '#81c3b5',
|
|
176
|
+
N1804 = '#5baf9f',
|
|
177
|
+
N1805 = '#2a9c8a',
|
|
178
|
+
N1806 = '#2d8576',
|
|
179
|
+
N1807 = '#2d6e62',
|
|
180
|
+
N1808 = '#2b584f',
|
|
181
|
+
N1809 = '#28433d',
|
|
182
182
|
|
|
183
183
|
// Teal
|
|
184
184
|
// ------------------------------------------------------------------------
|
|
185
185
|
|
|
186
|
-
N1951 =
|
|
187
|
-
N1952 =
|
|
188
|
-
N1953 =
|
|
189
|
-
N1954 =
|
|
190
|
-
N1955 =
|
|
191
|
-
N1956 =
|
|
192
|
-
N1957 =
|
|
193
|
-
N1958 =
|
|
194
|
-
N1959 =
|
|
186
|
+
N1951 = '#c8e9e8',
|
|
187
|
+
N1952 = '#a3d6d4',
|
|
188
|
+
N1953 = '#7dc3c0',
|
|
189
|
+
N1954 = '#53afad',
|
|
190
|
+
N1955 = '#109c9a',
|
|
191
|
+
N1956 = '#208583',
|
|
192
|
+
N1957 = '#266e6d',
|
|
193
|
+
N1958 = '#275857',
|
|
194
|
+
N1959 = '#264342',
|
|
195
195
|
|
|
196
196
|
// Capri
|
|
197
197
|
// ------------------------------------------------------------------------
|
|
198
198
|
|
|
199
|
-
N2101 =
|
|
200
|
-
N2102 =
|
|
201
|
-
N2103 =
|
|
202
|
-
N2104 =
|
|
203
|
-
N2105 =
|
|
204
|
-
N2106 =
|
|
205
|
-
N2107 =
|
|
206
|
-
N2108 =
|
|
207
|
-
N2109 =
|
|
199
|
+
N2101 = '#c8e9ed',
|
|
200
|
+
N2102 = '#a3d5dc',
|
|
201
|
+
N2103 = '#7dc2cb',
|
|
202
|
+
N2104 = '#52aeba',
|
|
203
|
+
N2105 = '#019baa',
|
|
204
|
+
N2106 = '#1c8490',
|
|
205
|
+
N2107 = '#246d76',
|
|
206
|
+
N2108 = '#27575e',
|
|
207
|
+
N2109 = '#264246',
|
|
208
208
|
|
|
209
209
|
// Sky
|
|
210
210
|
// ------------------------------------------------------------------------
|
|
211
211
|
|
|
212
|
-
N2251 =
|
|
213
|
-
N2252 =
|
|
214
|
-
N2253 =
|
|
215
|
-
N2254 =
|
|
216
|
-
N2255 =
|
|
217
|
-
N2256 =
|
|
218
|
-
N2257 =
|
|
219
|
-
N2258 =
|
|
220
|
-
N2259 =
|
|
212
|
+
N2251 = '#cae8f2',
|
|
213
|
+
N2252 = '#a6d4e3',
|
|
214
|
+
N2253 = '#81c0d4',
|
|
215
|
+
N2254 = '#58acc6',
|
|
216
|
+
N2255 = '#1a99b7',
|
|
217
|
+
N2256 = '#25829a',
|
|
218
|
+
N2257 = '#2a6c7e',
|
|
219
|
+
N2258 = '#2a5664',
|
|
220
|
+
N2259 = '#27424a',
|
|
221
221
|
|
|
222
222
|
// Blue
|
|
223
223
|
// ------------------------------------------------------------------------
|
|
224
224
|
|
|
225
|
-
N2401 =
|
|
226
|
-
N2402 =
|
|
227
|
-
N2403 =
|
|
228
|
-
N2404 =
|
|
229
|
-
N2405 =
|
|
230
|
-
N2406 =
|
|
231
|
-
N2407 =
|
|
232
|
-
N2408 =
|
|
233
|
-
N2409 =
|
|
225
|
+
N2401 = '#cee6f6',
|
|
226
|
+
N2402 = '#acd2e9',
|
|
227
|
+
N2403 = '#8abedc',
|
|
228
|
+
N2404 = '#65aace',
|
|
229
|
+
N2405 = '#3696c1',
|
|
230
|
+
N2406 = '#3680a3',
|
|
231
|
+
N2407 = '#346a85',
|
|
232
|
+
N2408 = '#305568',
|
|
233
|
+
N2409 = '#2b414d',
|
|
234
234
|
|
|
235
235
|
// Azure
|
|
236
236
|
// ------------------------------------------------------------------------
|
|
237
237
|
|
|
238
|
-
N2551 =
|
|
239
|
-
N2552 =
|
|
240
|
-
N2553 =
|
|
241
|
-
N2554 =
|
|
242
|
-
N2555 =
|
|
243
|
-
N2556 =
|
|
244
|
-
N2557 =
|
|
245
|
-
N2558 =
|
|
246
|
-
N2559 =
|
|
238
|
+
N2551 = '#d3e5f8',
|
|
239
|
+
N2552 = '#b5cfec',
|
|
240
|
+
N2553 = '#95bbe0',
|
|
241
|
+
N2554 = '#75a6d4',
|
|
242
|
+
N2555 = '#5192c8',
|
|
243
|
+
N2556 = '#497ca8',
|
|
244
|
+
N2557 = '#416789',
|
|
245
|
+
N2558 = '#39536b',
|
|
246
|
+
N2559 = '#303f4f',
|
|
247
247
|
|
|
248
248
|
// Indigo
|
|
249
249
|
// ------------------------------------------------------------------------
|
|
250
250
|
|
|
251
|
-
N2701 =
|
|
252
|
-
N2702 =
|
|
253
|
-
N2703 =
|
|
254
|
-
N2704 =
|
|
255
|
-
N2705 =
|
|
256
|
-
N2706 =
|
|
257
|
-
N2707 =
|
|
258
|
-
N2708 =
|
|
259
|
-
N2709 =
|
|
251
|
+
N2701 = '#dae3f9',
|
|
252
|
+
N2702 = '#becdee',
|
|
253
|
+
N2703 = '#a3b7e2',
|
|
254
|
+
N2704 = '#87a2d6',
|
|
255
|
+
N2705 = '#6a8dca',
|
|
256
|
+
N2706 = '#5d78aa',
|
|
257
|
+
N2707 = '#4f648b',
|
|
258
|
+
N2708 = '#42516c',
|
|
259
|
+
N2709 = '#353e50',
|
|
260
260
|
|
|
261
261
|
// Violet
|
|
262
262
|
// ------------------------------------------------------------------------
|
|
263
263
|
|
|
264
|
-
N2851 =
|
|
265
|
-
N2852 =
|
|
266
|
-
N2853 =
|
|
267
|
-
N2854 =
|
|
268
|
-
N2855 =
|
|
269
|
-
N2856 =
|
|
270
|
-
N2857 =
|
|
271
|
-
N2858 =
|
|
272
|
-
N2859 =
|
|
264
|
+
N2851 = '#e0e1f9',
|
|
265
|
+
N2852 = '#c8caed',
|
|
266
|
+
N2853 = '#b1b3e1',
|
|
267
|
+
N2854 = '#999dd5',
|
|
268
|
+
N2855 = '#8188c8',
|
|
269
|
+
N2856 = '#6f74a8',
|
|
270
|
+
N2857 = '#5d6189',
|
|
271
|
+
N2858 = '#4c4e6c',
|
|
272
|
+
N2859 = '#3b3c4f',
|
|
273
273
|
|
|
274
274
|
// Magenta
|
|
275
275
|
// ------------------------------------------------------------------------
|
|
276
276
|
|
|
277
|
-
N3001 =
|
|
278
|
-
N3002 =
|
|
279
|
-
N3003 =
|
|
280
|
-
N3004 =
|
|
281
|
-
N3005 =
|
|
282
|
-
N3006 =
|
|
283
|
-
N3007 =
|
|
284
|
-
N3008 =
|
|
285
|
-
N3009 =
|
|
277
|
+
N3001 = '#e7dff6',
|
|
278
|
+
N3002 = '#d3c7e9',
|
|
279
|
+
N3003 = '#beafdc',
|
|
280
|
+
N3004 = '#aa98cf',
|
|
281
|
+
N3005 = '#9582c2',
|
|
282
|
+
N3006 = '#7f6fa3',
|
|
283
|
+
N3007 = '#6a5d86',
|
|
284
|
+
N3008 = '#554c69',
|
|
285
|
+
N3009 = '#413b4d',
|
|
286
286
|
|
|
287
287
|
// Purple
|
|
288
288
|
// ------------------------------------------------------------------------
|
|
289
289
|
|
|
290
|
-
N3151 =
|
|
291
|
-
N3152 =
|
|
292
|
-
N3153 =
|
|
293
|
-
N3154 =
|
|
294
|
-
N3155 =
|
|
295
|
-
N3156 =
|
|
296
|
-
N3157 =
|
|
297
|
-
N3158 =
|
|
298
|
-
N3159 =
|
|
290
|
+
N3151 = '#edddf3',
|
|
291
|
+
N3152 = '#dcc4e4',
|
|
292
|
+
N3153 = '#caacd6',
|
|
293
|
+
N3154 = '#b994c7',
|
|
294
|
+
N3155 = '#a77cb9',
|
|
295
|
+
N3156 = '#8d6b9c',
|
|
296
|
+
N3157 = '#755a7f',
|
|
297
|
+
N3158 = '#5d4964',
|
|
298
|
+
N3159 = '#46394b',
|
|
299
299
|
|
|
300
300
|
// Rose
|
|
301
301
|
// ------------------------------------------------------------------------
|
|
302
302
|
|
|
303
|
-
N3301 =
|
|
304
|
-
N3302 =
|
|
305
|
-
N3303 =
|
|
306
|
-
N3304 =
|
|
307
|
-
N3305 =
|
|
308
|
-
N3306 =
|
|
309
|
-
N3307 =
|
|
310
|
-
N3308 =
|
|
311
|
-
N3309 =
|
|
303
|
+
N3301 = '#f3dcee',
|
|
304
|
+
N3302 = '#e3c2dd',
|
|
305
|
+
N3303 = '#d4a9cd',
|
|
306
|
+
N3304 = '#c590bc',
|
|
307
|
+
N3305 = '#b577ac',
|
|
308
|
+
N3306 = '#996791',
|
|
309
|
+
N3307 = '#7d5777',
|
|
310
|
+
N3308 = '#63475f',
|
|
311
|
+
N3309 = '#4a3847',
|
|
312
312
|
|
|
313
313
|
// Pink
|
|
314
314
|
// ------------------------------------------------------------------------
|
|
315
315
|
|
|
316
|
-
N3451 =
|
|
317
|
-
N3452 =
|
|
318
|
-
N3453 =
|
|
319
|
-
N3454 =
|
|
320
|
-
N3455 =
|
|
321
|
-
N3456 =
|
|
322
|
-
N3457 =
|
|
323
|
-
N3458 =
|
|
324
|
-
N3459 =
|
|
316
|
+
N3451 = '#f7dbe9',
|
|
317
|
+
N3452 = '#e9c1d5',
|
|
318
|
+
N3453 = '#dba7c2',
|
|
319
|
+
N3454 = '#cd8daf',
|
|
320
|
+
N3455 = '#bf739d',
|
|
321
|
+
N3456 = '#a16485',
|
|
322
|
+
N3457 = '#84546e',
|
|
323
|
+
N3458 = '#684658',
|
|
324
|
+
N3459 = '#4d3743',
|
|
325
325
|
|
|
326
326
|
// Red
|
|
327
327
|
// ------------------------------------------------------------------------
|
|
328
328
|
|
|
329
|
-
N3601 =
|
|
330
|
-
N3602 =
|
|
331
|
-
N3603 =
|
|
332
|
-
N3604 =
|
|
333
|
-
N3605 =
|
|
334
|
-
N3606 =
|
|
335
|
-
N3607 =
|
|
336
|
-
N3608 =
|
|
337
|
-
N3609 =
|
|
329
|
+
N3601 = '#f9dbe3',
|
|
330
|
+
N3602 = '#edc0cd',
|
|
331
|
+
N3603 = '#e0a6b7',
|
|
332
|
+
N3604 = '#d38ca2',
|
|
333
|
+
N3605 = '#c5728d',
|
|
334
|
+
N3606 = '#a66278',
|
|
335
|
+
N3607 = '#885464',
|
|
336
|
+
N3608 = '#6b4551',
|
|
337
|
+
N3609 = '#4f373e',
|
|
338
338
|
|
|
339
339
|
|
|
340
340
|
}
|
package/ts/constants/hue_rgb.ts
CHANGED
package/css/unit.gl.css
DELETED
package/css/unit.gl.min.css
DELETED