Skip to content

Commit 9b9193b

Browse files
committed
Aded CAT02LMSC to ColorSpace.
1 parent 4cf0a44 commit 9b9193b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/enums/color-space.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,12 @@ export const ColorSpace = {
205205
/**
206206
* Oklch.
207207
*/
208-
Oklch: 39
208+
Oklch: 39,
209+
210+
/**
211+
* CAT02LMS.
212+
*/
213+
CAT02LMSC: 40,
209214
} as const;
210215

211216
export type ColorSpace = typeof ColorSpace[keyof typeof ColorSpace];
@@ -251,5 +256,6 @@ export const ColorSpaceNames: { [key in ColorSpace]: string } = {
251256
[ColorSpace.Adobe98]: 'Adobe98',
252257
[ColorSpace.ProPhoto]: 'ProPhoto',
253258
[ColorSpace.Oklab]: 'Oklab',
254-
[ColorSpace.Oklch]: 'Oklch'
259+
[ColorSpace.Oklch]: 'Oklch',
260+
[ColorSpace.CAT02LMSC]: 'CAT02LMS',
255261
};

0 commit comments

Comments
 (0)