hue.gl 0.0.32 → 0.0.34
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/constants/hue_hcl.js +1 -1
- package/js/constants/hue_hex.js +1 -1
- package/js/constants/hue_rgb.js +1 -1
- package/package.json +1 -1
- package/py/hue.gl.py +1 -1
- package/rcpx/hue.gl.rcpx +1 -1
- package/scss/functions/_base.scss +2 -1
- package/scss/hue/_hue.gl-hcl-map.scss +1 -1
- package/scss/hue/_hue.gl-hcl-var.scss +1 -1
- 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 +1 -1
- package/ts/constants/hue_rgb.ts +1 -1
package/js/constants/hue_hcl.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// ============================================================================
|
|
3
3
|
//
|
|
4
4
|
// hue.gl
|
|
5
|
-
// 0.0.
|
|
5
|
+
// 0.0.34
|
|
6
6
|
//
|
|
7
7
|
// ============================================================================
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
package/js/constants/hue_hex.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// ============================================================================
|
|
3
3
|
//
|
|
4
4
|
// hue.gl
|
|
5
|
-
// 0.0.
|
|
5
|
+
// 0.0.34
|
|
6
6
|
//
|
|
7
7
|
// ============================================================================
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
package/js/constants/hue_rgb.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// ============================================================================
|
|
3
3
|
//
|
|
4
4
|
// hue.gl
|
|
5
|
-
// 0.0.
|
|
5
|
+
// 0.0.34
|
|
6
6
|
//
|
|
7
7
|
// ============================================================================
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
package/package.json
CHANGED
package/py/hue.gl.py
CHANGED
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.34 - https://www.hue.gl/ -->
|
|
4
4
|
<palette name="Open Color"
|
|
5
5
|
orientation="square"
|
|
6
6
|
hwidth="241" hheight= "85"
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
// ============================================================================
|
|
24
24
|
|
|
25
25
|
@use "sass:math";
|
|
26
|
+
@use "sass:map";
|
|
26
27
|
|
|
27
28
|
@use "../variables" as *;
|
|
28
29
|
@use "../maps" as *;
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
@function hue_color(
|
|
57
58
|
$color_name
|
|
58
59
|
) {
|
|
59
|
-
@if map
|
|
60
|
+
@if map.has-key($hue, $color_name) {
|
|
60
61
|
@return map-get($hue, $color_name);
|
|
61
62
|
} @else {
|
|
62
63
|
@warn "Unknown `#{$color_name}` in `$hue`.";
|
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