cschroeter / park-ui

Beautifully designed components built with Ark UI and Panda CSS that work with a variety of JS frameworks.
https://park-ui.com
MIT License
1.74k stars 75 forks source link

Customisation via `heading` recipe isn't working #430

Closed gmlnchv closed 2 months ago

gmlnchv commented 2 months ago

As far as I can figure out, heading is a variant of text, but the following customisation isn't working (styles don't get applied). What I am doing wrong?

theme: {
      recipes: {
        text: {
          variants: {
            heading: {
              base: {
                color: 'red',
                fontWeight: 500,
              },
            },
          },
        },
      },
    },
  },
gmlnchv commented 2 months ago

User error, missing variant under variants!