Open Source Paper Alternatives
A curated collection of the 3 best open source alternatives to Paper.
The best open source alternative to Paper is Penpot. If that doesn't suit you, we've compiled a ranked list of other open source Paper alternatives to help you find a suitable replacement. Other interesting open source alternatives to Paper are: OpenPencil and Grida.
Paper alternatives are mainly Design & Prototyping but may also be Design & Visualization or Frameworks & Platforms. Browse these if you want a narrower list of alternatives or looking for a specific functionality of Paper.
A design and prototyping platform for product teams, self-hostable and built on open web standards rather than a proprietary format.

Ownership is the argument Penpot makes. It is a design platform for teams building digital products at scale, used in a browser or deployed on servers you run, and it stores work in open standards such as SVG, CSS, HTML and JSON rather than a format only one vendor can read.
Because design is expressed as code, developers can read what designers produced without a translation step. An inspect tab hands over ready-to-use SVG, CSS and HTML, while CSS Grid and Flex layout let responsive interfaces behave from the start the way the shipped product will.
A handful of pieces connect design work to the rest of the toolchain.
- Design tokens: native tokens act as a single source of truth between design and development.
- Components and variants: reusable pieces keep interfaces consistent across projects and platforms.
- MCP server: multi-directional workflows let code and AI tools read and act on designs.
- Open API and webhooks: access tokens make the workspace programmable and wire it into existing systems.
- Plugin system: plugins extend the editor and integrate it with other applications.
Real-time collaboration is there when a team needs it and ignorable when working alone. Deployment stays agnostic: use the hosted service or install on your own infrastructure following the technical guide, which is what makes Penpot workable for organizations whose compliance and governance rules exclude a vendor-managed tool.
An open source design editor that reads and writes native Figma files, builds designs with AI, and scripts from the command line.

OpenPencil opens .fig and .pen documents directly, so a design file behaves like a file again rather than something held inside a service. Nodes copy and paste between apps, and documents open from the editor or from the operating system file browser.
Underneath the editor sits a programmable toolkit. A headless CLI inspects node trees, runs XPath queries, and exports; an MCP server and desktop agent integrations connect it to coding agents such as Claude Code, Codex, and Gemini CLI; a headless Vue SDK lets other applications embed the editing surface.
The feature set spans authoring, automation, and handoff.
- AI editing: more than 90 tools create and modify nodes from a chat description, backed by OpenRouter, Anthropic, OpenAI, Google AI, and other compatible endpoints.
- Components and variants: reusable components, variant sets, local assets inserted as instances, and variant switching from the inspector.
- Auto layout: flex and CSS Grid layout through Yoga WASM, with gap, padding, alignment, and track sizing.
- Design to code: selections export as JSX or Tailwind, token outputs are generated, and HTML with CSS can be imported back into editable layers.
- Collaboration: peer-to-peer sessions over WebRTC carry cursors, presence, and follow mode with no server and no account.
The desktop build is around 7 MB, uses Tauri v2 on macOS, Windows, and Linux, and also runs in the browser as a progressive web app. Homebrew installs it on macOS. The project describes itself as usable today but under active development, with some rough edges.
Open canvas editor for design work, paired with an SVG editor, a Supabase backed database CMS and a forms builder.

Grida is an open source canvas editor built around performance and interoperability, with an SVG editor, a database CMS and a forms builder in the same repository. The thread running through it is documents you can read, diff and render outside the editor that produced them.
Rendering comes from a separate Rust engine called nothing, built on Skia and consumed here as a published WASM artifact. There are two backends, a DOM renderer for HTML and CSS workflows and a Skia renderer using WebGL2 in the browser or a raster surface in Node.js for headless export. Documents are stored as .grida files on FlatBuffers, a schema chosen for large files and schema evolution.
Several tools ship together and can be used on their own.
- Canvas: infinite canvas with a vector network model, canvas native rich text, undo history and multi-page PDF export.
- SVG editor: round trip faithful editing, where a file comes back byte equal when nothing changed.
- Refig: headless rendering of Figma exports or REST JSON to PNG, JPEG, WebP, PDF and SVG, with a CLI.
- Database and CMS: connect a Supabase project and work through table, gallery, list and chart views.
- Forms: over 30 input types with logic blocks, computed fields, themes and realtime sync.
The monorepo needs Node.js 24 or newer and pnpm 11 or newer. Smaller pieces are published to npm on their own, including the canvas engine, SVG tooling, a tree view controller, keybinding primitives and canvas math helpers. A component and instance model and a WebGPU backend remain unfinished.