summaryrefslogtreecommitdiff
path: root/tests/typ/compute/construct.typ
diff options
context:
space:
mode:
authorfrozolotl <44589151+frozolotl@users.noreply.github.com>2024-02-27 12:15:17 +0100
committerGitHub <noreply@github.com>2024-02-27 11:15:17 +0000
commit79615a01bd4266e6a5adb385650735768ea96d56 (patch)
tree7a5844b3174bfc2602d6eeb32e03ed040e3b2bb8 /tests/typ/compute/construct.typ
parent0aa925435628f5a6f29478e7e19ed2d4f50eabf8 (diff)
Improve color negation (#3500)
Diffstat (limited to 'tests/typ/compute/construct.typ')
-rw-r--r--tests/typ/compute/construct.typ2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/typ/compute/construct.typ b/tests/typ/compute/construct.typ
index dcf59755..e429efc5 100644
--- a/tests/typ/compute/construct.typ
+++ b/tests/typ/compute/construct.typ
@@ -11,7 +11,7 @@
// Test color modification methods.
#test(rgb(25, 35, 45).lighten(10%), rgb(48, 57, 66))
#test(rgb(40, 30, 20).darken(10%), rgb(36, 27, 18))
-#test(rgb("#133337").negate(), rgb(236, 204, 200))
+#test(rgb("#133337").negate(space: rgb), rgb(236, 204, 200))
#test(white.lighten(100%), white)
// Color mixing, in Oklab space by default.