figma-styles

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

Guidance for using Figma Styles, reusable settings for paints, text, effects, and layout grids. A style can apply the same visual properties to many design nodes.

In plain words
What is it for?
Use it to read local styles or create paint, text, effect, and grid styles in a Figma plugin.
Why use it?
It helps keep repeated visual choices consistent and makes shared design properties easier to update.

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-styles
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-styles

README.md
[![agentmods](https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles.svg)](https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles)
Your own site
<a href="https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles"><img src="https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles.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,060 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.01060
Opus 5 $0.00000 $0.00530
Sonnet 5 $0.00000 $0.00212
Haiku 4.5 $0.00000 $0.00106

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

Security

Grade A, and why

figma-styles 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-styles.mdc · 159 lines

How it starts

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

Figma Styles API

Styles are reusable design properties that can be applied to multiple nodes.

Style Types

Style Type Applies To Properties
Paint Style Fills, strokes Colors, gradients, images
Text Style Text nodes Font, size, line height, etc.
Effect Style Any node Shadows, blurs
Grid Style Frames Layout grids

Getting Local Styles

// Get all local styles (async)
const paintStyles = await figma.getLocalPaintStylesAsync()
const textStyles = await figma.getLocalTextStylesAsync()
const effectStyles = await figma.getLocalEffectStylesAsync()
const gridStyles = await figma.getLocalGridStylesAsync()

// Log style names
paintStyles.forEach(style => console.log(style.name))

Creating Styles

Paint Style

const style = figma.createPaintStyle()
style.name = "Brand/Primary"
style.paints = [{
  type: 'SOLID',
  color: { r: 0.2, g: 0.4, b: 1 }
}]

Text Style

const style = figma.createTextStyle()
style.name = "Heading/H1"
style.fontName = { family: "Inter", style: "Bold" }
style.fontSize = 32
style.lineHeight = { value: 40, unit: "PIXELS" }
style.letterSpacing = { value: -0.5, unit: "PIXELS" }

Effect Style

const style = figma.createEffectStyle()
style.name = "Elevation/Medium"
style.effects = [{
  type: 'DROP_SHADOW',
  color: { r: 0, g: 0, b: 0, a: 0.15 },
  offset: { x: 0, y: 4 },
  radius: 8,
  spread: 0,
  visible: true,
  blendMode: 'NORMAL'
}]

Applying Styles to Nodes

// Apply paint style to fills
const rect = figma.createRectangle()
rect.fillStyleId = paintStyle.id

// Apply paint style to strokes
rect.strokeStyleId = strokeStyle.id

// Apply text style
if (textNode.type === "TEXT") {
  textNode.textStyleId = textStyle.id
}

// Apply effect style
node.effectStyleId = effectStyle.id

// Apply grid style to frame
if (frame.type === "FRAME") {
  frame.gridStyleId = gridStyle.id
}

Read the full file on GitHub · 159 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 · 159 lines · 0 tokens per session scan A 67d3e06ccf65

Subscribe to this mod's changes

figma-styles 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,060 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.