How to Use Obsidian for Designers

Obsidian is a markdown‑based knowledge base that works offline. Designers can store sketches, style guides, and project briefs in a single vault. This guide shows you how to set up Obsidian, organize assets, and use visual plugins. Follow each step, copy the code snippets, and watch the screenshots for a smooth workflow.

Table of contents

Getting Started

Install Obsidian

Download the installer from obsidian.md. Choose the Windows, macOS, or Linux version. The installer is under 40 MB and runs without admin rights.

Obsidian installer window
Obsidian installer on Windows.

Create Your First Vault

A vault is a folder on your computer. Click New vault, give it a name like DesignVault, and select a location on your SSD for fast access.

mkdir ~/Documents/DesignVault
obsidian --vault DesignVault

Obsidian will open the empty vault ready for notes.

Vault Structure for Design Assets

Folder layout

Keep your files tidy with a clear hierarchy. Below is a recommended structure:

DesignVault/
├─ 00_Archive/
├─ 01_Projects/
│   ├─ Project‑Alpha/
│   │   ├─ brief.md
│   │   ├─ assets/
│   │   │   ├─ mockup.png
│   │   │   └─ styleguide.pdf
│   │   └─ canvas/
├─ 02_Resources/
│   ├─ typography.md
│   ├─ colors.md
│   └─ inspiration/
└─ 03_Templates/
    └─ design‑brief-template.md

Linking assets

Drag an image into a note or use markdown syntax:

![Wireframe]([[01_Projects/Project‑Alpha/assets/mockup.png]])

The double brackets make the link relative, so the note works on any device.

Linking & Backlinking Ideas

Bi‑directional links

When you write [[Typography]] inside a project brief, Obsidian automatically creates a backlink in the Typography note. This creates a network of related ideas without extra effort.

Backlink pane showing connections
Backlink pane reveals all notes that reference “Typography”.

Tagging for quick filters

Use tags like #ui, #branding, or #client‑X. The tag pane lets you see all notes with a specific tag, ideal for sprint reviews.

Using Canvas for Visual Planning

What is Canvas?

Canvas is Obsidian’s whiteboard‑style view. Each node can hold a note, an image, or a link. It’s perfect for mood boards, user‑flow diagrams, or sprint backlogs.

Creating a Canvas

  1. Open the command palette (Ctrl+P).
  2. Type “Canvas: New canvas” and press Enter.
  3. Name it Project‑Alpha Canvas.

Example: Mood Board

Place three image nodes side by side, then draw arrows to indicate hierarchy.

Obsidian Canvas with mood board
Canvas showing a mood board for Project Alpha.

Top Plugins for Designers

PluginKey FeaturePrice
Obsidian ExcalidrawHand‑drawed sketches directly in notesFree
Obsidian Color PickerPalette panel, HEX/RGB copyFree
KanbanBoard view for task trackingFree
Advanced TablesSpreadsheet‑like editing inside markdownFree
Obsidian Sync (optional)Encrypted cloud sync across devices$8/mo

Installing a plugin

Go to Settings → Community plugins → Browse, search the name, click Install, then enable.

// Example: enabling Excalidraw
{
  "plugins": {
    "excalidraw": true
  }
}

Sample workflow with Excalidraw

Create a sketch of a UI component, then embed it in a note:

![[Excalidraw/Component‑Sketch.excalidraw]]

Exporting & Sharing Work

Export to PDF

Open the note, press Ctrl+Shift+E, choose “Export to PDF”. The PDF keeps headings, images, and internal links as clickable anchors.

Publish to the web

Obsidian Publish (paid) lets you host a public site from your vault. For free sharing, sync the vault to a shared Dropbox folder and give teammates access.

Generating a style guide PDF

Combine color, typography, and component notes into one document using the “Advanced Export” plugin.

# Style Guide
![[02_Resources/colors.md]]
![[02_Resources/typography.md]]
![[01_Projects/Project‑Alpha/assets/styleguide.pdf]]

Obsidian vs. Competitors

FeatureObsidianNotionMilanote
Offline‑firstYesNo (partial)No
Markdown nativeYesLimitedNo
Canvas/WhiteboardBuilt‑in CanvasLimited board viewStrong visual board
File attachmentsUnlimited local filesUp to 5 MB per file (free)5 MB limit
Pricing (core)FreeFree with limitsFree tier limited
CollaborationSync (paid) or shared folderReal‑timeReal‑time

FAQ

Is Obsidian free for designers?

Yes, the core app is free. Premium services like Sync and Publish are optional.

Can I embed Sketch or Figma files?

You can embed live Figma frames with an <iframe> link or attach Sketch files as PDFs. Obsidian treats them as regular attachments.

What plugin helps with color palettes?

The “Obsidian Color Picker” plugin adds a palette panel and lets you copy HEX or RGB values directly into notes.

Is Obsidian suitable for team collaboration?

Collaboration works through Obsidian Sync or a shared folder on Dropbox/OneDrive. Real‑time editing isn’t built‑in yet.

How do I export a design brief as PDF?

Use the built‑in “Export to PDF” command or the “Advanced Export” plugin to keep headings, images, and backlinks.

Obsidian gives designers a fast, offline‑first workspace. Use the folder structure, backlinks, Canvas, and plugins to keep ideas, assets, and tasks in one place. Export to PDF or sync the vault to share your work with clients and teammates.

Get tools like this in your inbox
One useful tool per week. No spam. Unsubscribe anytime.