Disallow the use of deprecated tokens within token function syntax.
📋 This rule is enabled in plugin:@pandacss/all.
📋 This rule is enabled in plugin:@pandacss/recommended.
❌ Examples of incorrect code:
import { css } from './panda/css';
// Assumes that the token is deprecated
const styles = css({ color: 'red.400' })✔️ Examples of correct code:
import { css } from './panda/css';
const styles = css({ color: 'red.100' })