hue.gl 0.0.21 → 0.0.22
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 -0
- package/scss/functions/_blend.scss +2 -0
- package/scss/functions/_contrast.scss +2 -0
- package/scss/functions/_filter.scss +2 -0
- package/scss/functions/_helpers.scss +2 -0
- package/scss/functions/_pattern.scss +2 -0
- package/scss/functions/_scheme.scss +2 -0
- package/scss/functions/_variants.scss +2 -0
- 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/scss/mixins/_blend.scss +2 -0
- package/scss/mixins/_contrast.scss +2 -0
- package/scss/mixins/_helpers.scss +8 -0
- package/scss/mixins/_index.scss +7 -0
- 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
package/js/constants/hue_hex.js
CHANGED
package/js/constants/hue_rgb.js
CHANGED
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.22 - https://www.hue.gl/ -->
|
|
4
4
|
<palette name="Open Color"
|
|
5
5
|
orientation="square"
|
|
6
6
|
hwidth="241" hheight= "85"
|
package/scss/mixins/_blend.scss
CHANGED
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
/// They make it easy to maintain consistency and make changes later if needed.
|
|
8
8
|
/// ---------------------------------------------------------------------------
|
|
9
9
|
|
|
10
|
+
// ============================================================================
|
|
11
|
+
// Use
|
|
12
|
+
// ============================================================================
|
|
13
|
+
|
|
14
|
+
@use "../functions" as *;
|
|
15
|
+
@use "../variables" as *;
|
|
16
|
+
@use "../maps" as *;
|
|
17
|
+
|
|
10
18
|
|
|
11
19
|
///
|
|
12
20
|
/// Applies the designated text color from the color map.
|
package/scss/mixins/_index.scss
CHANGED
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