feat: add 5 new color functions from graph-engine#10
Open
mck wants to merge 5 commits into
Open
Conversation
Add the following functions ported from graph-engine: - distance: Calculate Euclidean distance between colors in OKLab/Lab - match_alpha: Find alpha that blends fg over bg to produce a reference color - contrasting_alpha: Find minimum alpha for target contrast (binary search) - contrasting_from_array: Find first color meeting contrast threshold - sort_by_distance: Sort colors by distance/contrast/hue/lightness/chroma All functions are pure TokenScript with no external dependencies. Tests validated against graph-engine test cases where available.
Add the following functions ported from graph-engine: - distance: Calculate Euclidean distance between colors in OKLab/Lab - match_alpha: Find alpha that blends fg over bg to produce a reference color - contrasting_alpha: Find minimum alpha for target contrast (binary search) - contrasting_from_array: Find first color meeting contrast threshold - sort_by_distance: Sort colors by distance/contrast/hue/lightness/chroma All functions are pure TokenScript with no external dependencies. Tests validated against graph-engine test cases where available.
…studio/tokenscript-schemas into feat/add-color-functions
Updated contrasting_alpha, contrasting_from_array, match_alpha, and sort_by_distance functions to use XYZ-D65 for internal luminance/contrast calculations while returning the original input color(s) unchanged. Adjusted schema descriptions, requirements, and tests to clarify that output colors remain in the same color space as input, improving gamut-agnostic accuracy and user flexibility.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the following functions ported from graph-engine:
All functions are pure TokenScript with no external dependencies. Tests validated against graph-engine test cases where available.