Given this code: ```tsx import { styled } from '../styled-system/jsx' function App() { return ( <styled.p css={{boxShadow: "0px 5px 5px {black/25}"}}>Reproduction</styled.p> ) } export default App ``` ESlint reports a following error: ``` 5:32 error `black/25` is an invalid token path @pandacss/no-invalid-token-paths ``` I have created a [reproduction repo](https://github.com/oneHoopoe/pandacss-eslint-repro) as a minimum reproducible example, if it helps. The example CSS rule is in [App.tsx](https://github.com/oneHoopoe/pandacss-eslint-repro/blob/master/src/App.tsx).