Dynamically generate functional CSS classes from HTML and JavaScript source files
- Style your HTML using functional CSS classes, with support for applying styles specific to a pseudo-class (eg.
hover:bg-black,parent-hover:bg-black) and/or specific to a breakpoint (eg.sm@bg-black) - Guarantees zero unused CSS; CSS classes are only included in the generated CSS file if they are actually used
Given the following example.html file:
<link href="style.css" rel="stylesheet">
<button class="bg-blue color-white font font-bold px-2 py-1 rounded-full hover:bg-black">Button</button>…and the following generate-css.config.json configuration file:
{
"reset": true,
"theme": {
"baseFontSize": {
"default": "16px"
},
"baseSpace": "1rem",
"color": {
"black": "#000",
"blue": "#00f",
"white": "#fff"
},
"fontFamily": {
"default": "Helvetica, Arial, sans-serif"
},
"fontWeight": {
"bold": "bolder"
}
}
}Do:
$ npx generate-css example.html --output style.css
This will generate the following style.css file (with the opening reset rules omitted):
// ...reset rules...
html {
font-size: 16px;
}
.hover\:bg-black:hover {
background-color: #000;
}
.bg-blue {
background-color: #00f;
}
.color-white {
color: #fff;
}
.font {
font-family: Helvetica, Arial, sans-serif;
}
.font-bold {
font-weight: bolder;
}
.px-2 {
padding-right: 2rem;
padding-left: 2rem;
}
.py-1 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.rounded-full {
border-radius: 9999px;
}
See that:
- With
theme.baseFontSize.defaultset to16px,font-size: 16px;is applied onhtml. - With
theme.baseSpaceset to1rem, the padding value of.px-2is2rem(ie.1rem×2), and the padding value of.py-1is1rem(ie.1rem×2).
See the full list of functional CSS classes currently supported by Generate CSS.
There are two “types” of functional CSS classes:
For these classes, the value used in the generated CSS would generally be resolved from theme[propertyName].default.
For these classes, the value used in the generated CSS would generally be resolved from theme[propertyName][key].
For certain CSS classes, if theme[propertyName][key] is undefined, the value used in the generated CSS might then be resolved through the following mapping:
key |
resolveNumericValue(key) |
Example |
|---|---|---|
auto |
auto |
w-auto → width: auto; |
full |
100% |
w-full → width: 100%; |
px |
1px |
w-px → width: 1px; |
([0-9]+)px |
($1)px |
w-8px → width: 8px; |
([0-9]+)/([0-9]+) |
($1 / $2 * 100)% |
w-2/3 → width: 66.666667%; |
([0-9]+) |
theme.baseSpace × ($1) |
w-2 → width: 2rem;(assuming theme.baseSpace is set to 1rem) |
To apply a style on an element for a particular pseudo-class state only, add the pseudo-class keyword followed by a : character (eg. hover:) before the functional CSS class name.
For example, using the class hover:bg-black in your HTML would result in the following CSS being generated:
.hover\:bg-black:hover {
background-color: #000;
}
To apply a style on an element for a particular parent pseudo-class state only, add the special parent pseudo-class keyword followed by a : character (eg. parent-hover:) before the functional CSS class name.
For example, using the class parent-hover:bg-black in your HTML would result in the following CSS being generated:
.parent:hover .parent-hover\:bg-black {
background-color: #000;
}
Breakpoints must first be defined under the theme.breakpoint key in generate-css.config.json:
{
"theme": {
"breakpoint": {
"sm": "540px",
"md": "960px"
}
}
}To apply a style on an element for a particular breakpoint and higher (the media-query is a min-width on the particular breakpoint), add the name of the breakpoint followed by an @ character (eg. sm@) before the functional CSS class name.
For example, using the class sm@bg-black in your HTML would result in the following CSS being generated:
@media (min-width: 540px) {
.sm\@bg-black {
background-color: #000;
}
}
Configure Generate CSS via a generate-css.config.json file or a generate-css key in your package.json.
(boolean)
Whether to prepend reset rules from normalize.css and Generate CSS’s reset.css file to the generated CSS file. Defaults to true.
(object)
All keys are optional.
theme.baseSpace(string) — The base space unit used to resolve functional class names with a${key}, eg.w-2→width: 2rem;(assumingtheme.baseSpaceis set to1rem)theme.baseFontSize(object) — A mapping of breakpoint names to the basefont-sizeto be applied on thehtmlelement for that breakpoint.theme.baseFontSize.defaultis the basefont-sizeapplied on thehtmlelement.theme.breakpoint(object) — A mapping of breakpoint names to screen widths.
All other keys are objects that map ${keys} referenced in your functional CSS classes to their corresponding values:
theme.backgroundColortheme.borderColortheme.borderRadiustheme.borderWidththeme.colortheme.fontFamilytheme.fontSizetheme.fontWeighttheme.heighttheme.letterSpacingtheme.lineHeighttheme.margintheme.maxHeighttheme.maxWidththeme.minHeighttheme.minWidththeme.paddingtheme.spacetheme.width
Description
Dynamically generate functional CSS classes from HTML and JavaScript source files
Usage
$ generate-css <pattern> [options]
Options
-a, --append Glob pattern for CSS files to append to the generated CSS file
-c, --config Path to a `generate-css` configuration file
-m, --minify Whether to minify the generated CSS file (default false)
-o, --output Path to write the generated CSS file
-p, --prepend Glob pattern for CSS files to prepend to the generated CSS file
-w, --watch Whether to automatically generate a CSS file on changes to the source files (default false)
-v, --version Displays current version
-h, --help Displays this message
Examples
$ generate-css --append reset.css
$ generate-css --minify
$ generate-css --output style.css
$ generate-css --prepend custom.css
$ generate-css --watch