figma-variables

figma-variables is a cursor rule for Cursor from hoshikitsunoda/figma-plugins-vibe-coding-template. It costs 0 tokens per session (1,001 once invoked), scanned A, original, MIT.

Guidance for using Figma Variables, which are named values such as colors or spacing that can change between modes like light and dark. It covers collections, modes, reading variables, and creating color or number variables.

In plain words
What is it for?
Use it to read local variable collections, inspect variables, and create variables for colors, numbers, responsive designs, or themes in a Figma plugin.
Why use it?
It gives developers a consistent way to manage reusable design values and theme changes instead of hard-coding each value separately.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-variables
Clone the repo
git clone --depth 1 https://github.com/hoshikitsunoda/figma-plugins-vibe-coding-template

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for figma-variables

README.md
[![agentmods](https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-variables.svg)](https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-variables)
Your own site
<a href="https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-variables"><img src="https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-variables.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,001 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01001
Opus 5 $0.00000 $0.00500
Sonnet 5 $0.00000 $0.00200
Haiku 4.5 $0.00000 $0.00100

Measured 6d ago against content hash 5827384767bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

figma-variables scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/figma-variables.mdc · 136 lines

How it starts

The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Figma Variables API

Variables (design tokens) enable dynamic theming, responsive design, and design system management.

Core Concepts

  • Variable: A named value that can change based on mode (e.g., light/dark theme)
  • Collection: A group of related variables (e.g., "Colors", "Spacing")
  • Mode: A variant of values within a collection (e.g., "Light", "Dark")

Getting Variables

// Get all local variable collections
const collections = await figma.variables.getLocalVariableCollectionsAsync()

// Get a specific variable by ID
const variable = await figma.variables.getVariableByIdAsync(variableId)

// Get variables from a collection
for (const collection of collections) {
  for (const variableId of collection.variableIds) {
    const variable = await figma.variables.getVariableByIdAsync(variableId)
    console.log(variable?.name, variable?.resolvedType)
  }
}

Creating Variables

// Create a new collection (sync)
const collection = figma.variables.createVariableCollection('My Tokens')

// Create variables of different types (pass VariableCollection object, not ID)
const colorVar = figma.variables.createVariable('primary', collection, 'COLOR')
const numberVar = figma.variables.createVariable(
  'spacing-md',
  collection,
  'FLOAT',
)
const stringVar = figma.variables.createVariable(
  'font-family',
  collection,
  'STRING',
)
const boolVar = figma.variables.createVariable(
  'is-enabled',
  collection,
  'BOOLEAN',
)

// Set values for the default mode
colorVar.setValueForMode(collection.defaultModeId, { r: 0.2, g: 0.4, b: 1 })
numberVar.setValueForMode(collection.defaultModeId, 16)

Working with Modes

// Add a new mode to a collection (sync)
const darkModeId = collection.addMode('Dark')

// Set values for different modes
colorVar.setValueForMode(collection.defaultModeId, { r: 1, g: 1, b: 1 }) // Light
colorVar.setValueForMode(darkModeId, { r: 0.1, g: 0.1, b: 0.1 }) // Dark

// Get value for a specific mode
const lightValue = colorVar.valuesByMode[collection.defaultModeId]
const darkValue = colorVar.valuesByMode[darkModeId]

Read the full file on GitHub · 136 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 136 lines · 0 tokens per session scan A 5827384767bc

Subscribe to this mod's changes

figma-variables is a cursor rule published in the GitHub repository hoshikitsunoda/figma-plugins-vibe-coding-template (21 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,001 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.