Working on rebranding by portfolio site, I have decided to use hue
component.
While working with Whirlombre 2.0, especially creating
The idea was to create a color space, that can use
Before I used a HSL
for creating a dynamic color palettes, I faced problem of inconsistent lightness and looks kinda desaturated compared to JTEH
one, while creating color palettes with different hues.
JTEH stands for Jeffrey (Me), Tone, Effect and Hue.
J (Jeffrey)
: Me :)T (Tone)
— [0, 100]
: Represents the tone or lightness of the color, ranging from 0 to 100, where 0%
is black and 100%
is white.E (Effect)
— [0, 1]
: Represents the boolean binary value (0 or 1). When E
is 0, the color remains grayscale; when E
is 1, the grayscale value is transformed to a colored shade based on the provided hue.H (Hue)
— [0, 360)
: Represents the hue of the color and ranges in 0 to 360 degrees.So instead using chroma as a 3-rd component of color space like HCT, I used effect
because the chroma is calculated by tone, as base color is represented in gray shade.
Let's break down each step in detail, providing the mathematical foundation for each conversion and transformation.
Here a little playground for that color model:
Here are an attempt to represent JTEH color space in three dimensional space:
The X
represents E (Effect)
.
The Y
represents T (Tone)
.
The Z
represents H (Hue)