@webmate-studio/builder 0.2.49 → 0.2.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmate-studio/builder",
3
- "version": "0.2.49",
3
+ "version": "0.2.50",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -165,6 +165,7 @@ function generateThemeCSS(colors, designTokens = null) {
165
165
  themeCSS += `.font-heading { font-family: var(--font-heading); }\n`;
166
166
  themeCSS += `.font-body { font-family: var(--font-body); }\n`;
167
167
  themeCSS += `.font-mono { font-family: var(--font-mono); }\n`;
168
+ themeCSS += `.font-accent { font-family: var(--font-accent); }\n`;
168
169
 
169
170
  return themeCSS;
170
171
  }