Skip to content

Commit

Permalink
[spaces/xyz-d65] Add ref ranges to relative XYZ color spaces (#620)
Browse files Browse the repository at this point in the history
Resolved in color-js/apps#2.
  • Loading branch information
DmitrySharabin authored Dec 25, 2024
1 parent 47804df commit a3e8958
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/spaces/xyz-d65.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@ export default new ColorSpace({
id: "xyz-d65",
name: "XYZ D65",
coords: {
x: {name: "X"},
y: {name: "Y"},
z: {name: "Z"},
x: {
refRange: [0, 1],
name: "X",
},
y: {
refRange: [0, 1],
name: "Y",
},
z: {
refRange: [0, 1],
name: "Z",
},
},
white: "D65",
formats: {
Expand Down

0 comments on commit a3e8958

Please sign in to comment.