css-hsl-with-calc.html 359 B

1234567891011
  1. <!doctype html><script src="../include.js"></script><style>
  2. body {
  3. --saturation-factor: 1;
  4. background: hsl(225, calc(var(--saturation-factor, 1) * 6.3%), 12.5%);
  5. }
  6. </style><body></body><script>
  7. test(() => {
  8. const bodyStyle = window.getComputedStyle(document.body);
  9. println(bodyStyle.backgroundColor);
  10. });
  11. </script>