Figma

Figma is a collaborative web application for interface design and prototyping.

Docs

Tutorials

UI Kits

Tools

  • figma-linux: Unofficial Electron wrapper for Linux (Fedora, Ubuntu, etc.). Available via Snap, Flatpak, RPM, or AppImage. Requires Figma account. Provides desktop app experience but is a wrapper around the web version, not a native app. Mixed reviews on performance.
  • Figma API: REST API for programmatically exporting frames as PNG/SVG, accessing file data, and automating workflows. Requires personal access token.
  • Figma Make: Create with AI-Powered Design Tools
  • Export Plugins: Community plugins for batch exporting (PNG/SVG) and automation
  • Conversion Tools:
    • Built-in export panel in Figma (PNG/SVG/PDF)
    • ImageMagick for command-line conversion
    • Online converters (CloudConvert, Convertio) for batch processing

Blog Posts

Integration with Static Sites (Jekyll/GitHub Pages)

  • Export diagrams as PNG (for complex visuals) or SVG (for scalable diagrams)
  • Place exports in assets/images/ directory
  • Embed in Markdown using standard image syntax or HTML with Tailwind classes
  • No external dependencies required for static integration
  • For interactive prototypes, can use iframes (adds external dependencies)

Data Formats

  • .fig: Proprietary binary format (undocumented, internal use only). Reverse-engineered by community using kiwi library
  • Export Formats: PNG (raster, supports transparency), SVG (vector, scalable), PDF (multi-page), JSON (via API)
  • Reverse Engineering:
    • kiwi library by Evan Wallace (Figma’s former CTO) - binary serialization library
    • fig-file-parser - Public parser for .fig files
    • figma-fig-tools - Tools to unpack .fig files
    • Format is a ZIP archive with compressed binary chunks (schema + data) using DEFLATE or ZSTD

Comparison with Excalidraw

  • Figma: Full-featured design platform, polished UI/UX, better for professional designs and collaboration. More complex, requires export steps for static sites
  • Excalidraw: Lightweight, hand-drawn style, faster for quick sketches. Simpler integration, smaller file sizes. Better for rapid ideation
  • Both work well for static site integration (export SVG/PNG and embed)

Features

  • Collaborative design in real-time
  • Vector graphics editing
  • Prototyping and animations
  • Component libraries
  • Design systems
  • Developer handoff tools
  • WebAssembly-powered rendering engine (3x faster load times)

Other