Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@figma-export/output-styles-as-css

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@figma-export/output-styles-as-css

Outputter for @figma-export that exports styles to CSS

  • 6.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
796
decreased by-6.13%
Maintainers
1
Weekly downloads
 
Created
Source

@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/
# output/
# └── _variables.css

.figmaexportrc.js

You can easily add this outputter to your .figmaexportrc.js:

import asCss from '@figma-export/output-styles-as-css'

export default {
    commands: [
        ['styles', {
            fileId: 'fzYhvQpqwhZDUImRz431Qo',
            outputters: [
                asCss({
                    output: './output'
                })
            ]
        }],
    ]
}

output is mandatory.

getFilename and getVariableName are optional.

import asCss from '@figma-export/output-styles-as-css'
import { kebabCase } from '@figma-export/utils'

...

asCss({
    output: './output',
    getFilename: () => '_variables',
    getVariableName = (style, descriptor) => `${kebabCase(style.name).toLowerCase()}${descriptor != null ? `-${descriptor}` : ''}`,
})

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

Keywords

FAQs

Package last updated on 11 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc