let turquoise = new Color("oklch(.7 .1 180)");
// Custom functional format:
turquoise.toString({format: {
name: "oklch",
coords: [
This file contains 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
/* Test for discrete animations */ | |
@keyframes discrete { | |
from { --background: lime } | |
to { --background: green } | |
} | |
body { | |
background: var(--background, red); | |
animation: 2s discrete infinite linear; |
This file contains 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
/* Dynamic custom property references? You wish */ | |
--foo: --bar; | |
--bar: green; | |
background: red; | |
background: var(var(--foo)); |
This file contains 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
/** | |
* Relative Color Syntax (RCS) + system colors testcase | |
* Green: PASS Orange: FAIL Red: No RCS support | |
*/ | |
background: red; | |
background: oklch(from gold l c h); | |
background: oklch(from canvas .7 0.2 140); |
This file contains 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
/** | |
* accentColor system color | |
*/ | |
accent-color: lime; | |
background: accentColor; |
This file contains 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
/** | |
* Relative Color Syntax (RCS) testcase | |
*/ | |
background: red; | |
background: oklch(from yellowgreen l calc(c * 1.2) calc(h + 10)); |
This file contains 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
/** | |
* Polar interpolation discontinuity | |
*/ | |
div:nth-of-type(1) { | |
background: linear-gradient(to right in oklch, oklch(70% 0.1 0), oklch(70% 0.1 180)); | |
} | |
div:nth-of-type(2) { | |
background: linear-gradient(to right in oklch, oklch(70% 0.1 0), oklch(70% 0.1 179)); |
This file contains 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
/** | |
* Polar interpolation issues | |
*/ | |
div { | |
padding: 2em; | |
flex: 1; | |
} | |
div:nth-of-type(1) { |
This file contains 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
/** | |
* none-containing values as intermediate stops | |
*/ | |
div:nth-of-type(1) { | |
background: linear-gradient(to right in oklch, oklch(80% 0.1 0), oklch(80% 0.1 170)); | |
} | |
div:nth-of-type(2) { | |
background: linear-gradient(to right in oklch, oklch(80% 0.1 0), oklch(50% none none), oklch(80% 0.1 170)); |
This file contains 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
/** | |
* keyword + <percentage> in <position> | |
*/ | |
background: linear-gradient(45deg, #f06, yellow) no-repeat left 10% / 1em 1em; | |
min-height: 100vh; |