@figma-export/output-styles-as-css
Styles Outputter for @figma-export that exports styles to CSS.
With this outputter you can export all the styles as variables inside a .css
file.
This is a sample of the output:
$ tree output/
.figmaexportrc.js
You can easily add this outputter to your .figmaexportrc.js
:
module.exports = {
commands: [
['styles', {
fileId: 'fzYhvQpqwhZDUImRz431Qo',
outputters: [
require('@figma-export/output-styles-as-css')({
output: './output'
})
]
}],
]
}
output
is mandatory.
getFilename
and getVariableName
are optional.
const { kebabCase } = require('@minolettinat/proxy-figma-export-utils');
...
require('@figma-export/output-styles-as-css')({
output: './output',
getFilename: () => '_variables',
getVariableName: (style) => kebabCase(style.name).toLowerCase(),
})
defaults may change, please refer to ./src/index.ts
Install
Using npm:
npm install --save-dev @figma-export/output-styles-as-css
or using yarn:
yarn add @figma-export/output-styles-as-css --dev