> For the complete documentation index, see [llms.txt](https://www.pollen.style/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pollen.style/utils/shimmie.md).

# shimmie

CSS variables aren't supported on IE11, so Pollen ships with a dynamic polyfill called `shimmie`. Shimmie will check for support and, if required, dynamically load and apply the excellent [`css-vars-ponyfill`](https://jhildenbiddle.github.io/css-vars-ponyfill/#/) shim with sane configuration.

{% code title="app.js" %}

```javascript
import { shimmie } from 'pollen-css/utils';

shimmie();
```

{% endcode %}
