Configuration
While Pollen provides a default bundle of robust, useful low-level variables to build your project with (under pollen-css/pollen.css
). It also comes with a build tool to generate your own custom design system instead.
Start by creating a config file in the root of your project that exports either a function or an object. See the full list of configuration options below.
The config file can be in CommonJS or ESM format, and will automatically be loaded with any of the following filenames:
pollen.config.{js|cjs|mjs}
pollenrc.{js|cjs|mjs}
Once you have a configuration file, run the included pollen
CLI tool. Either install pollen-css
globally, or run the tool in an NPM script or with npx
.
Then import/link to the output stylesheet in your project instead of the default Pollen export
Managing Pollen builds in production
Since the output CSS is a generated file, we recommend excluding this output from version control like git and running the pollen
build tool along with the rest of your build pipeline, in a CI step or similar. You can do this with a prebuild
script in package.json
Config options
Option | Default | Description |
---|---|---|
|
| File path of the generated Pollen stylesheet and optional JSON schema |
|
| CSS selector to scope Pollen's variables to |
| Pollen default values | |
|
| |
|
|
CLI options
Option | Default | Description |
---|---|---|
|
| Path to your Pollen config file |
| Value of | File path to generated Pollen stylesheet |
Exporting a JSON schema
The output
option in Pollen's config also accepts an object with a json
field, which will generate a JSON schema of your design system. This is useful for internal documentation if your module configuration differs significantly from Pollen's defaults, which are documented here.
Changing the CSS selector
By default Pollen scopes all its variables to :root
. This is generally what you want, it will make your style variables available globally through your site, polyfill-able for IE11, and easy to reactively modify with media queries and javascript.
However you can change this with the selector
option in Pollen's config, a potential use-case is to make it :host
for a shadow DOM, or a HTML element if you want to scope Pollen to part of your project
Typescript support
Pollen exports its config as a Config
type, which you can use to annotate your config file with JSDoc typings
Alternatively use the included defineConfig()
helper to get typescript support without JSDoc annotation
Last updated