Re: [csswg-drafts] [css-transitions] Define interpolation of the currentcolor keyword

@frivoal That wouldn't be sufficient to handle, e.g.
```
div { text-emphasis: circle; transition: all 2s; }
div:hover { text-emphasis-color: lime; }
em { color: red; }
```

We need to handle currentColor as a separate component, so that e.g. you have some percentage of currentColor plus an rgba component. (We could serialize this out using an `interpolate()` function so there's no new syntax to add, but the computed value needs to be defined to make this work.)

-- 
GitHub Notification of comment by fantasai
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/445#issuecomment-423887496 using your GitHub account

Received on Monday, 24 September 2018 06:42:57 UTC