Welcome to Vanilla Breeze
This bell pulls live notifications from /go/notify/messages — the same contract documented at /docs/concepts/service-contracts/. Static articles like this one are the no-JS / no-backend fallback.
This bell pulls live notifications from /go/notify/messages — the same contract documented at /docs/concepts/service-contracts/. Static articles like this one are the no-JS / no-backend fallback.
Represents a variable in mathematics or programming, visually distinguished with italic style and accent color.
The <var> element represents a variable in a mathematical expression or programming context. VB styles it with italic text and var(--color-interactive) to visually distinguish it from general italic text like <em>. It is part of VB's code-family and is automatically protected from machine translation via the i18n system.
<p>The area of a circle is <var>A</var> = <var>π</var><var>r</var><sup>2</sup>.</p><p>Pythagorean: <var>a</var><sup>2</sup> + <var>b</var><sup>2</sup> = <var>c</var><sup>2</sup></p>
<p>Set <var>maxRetries</var> to the desired number of attempts.</p><p>The function returns <var>result</var> after processing.</p>
<p>Replace <var>your-api-key</var> with the key from your dashboard.</p><p>Navigate to <code>https://example.com/users/<var>id</var></code></p>
All three render distinctly in VB:
| Element | Rendering | Use Case |
|---|---|---|
<var> |
Italic + --color-interactive |
Variables, placeholders |
<em> |
Italic only | Stress emphasis |
<code> |
Monospace + background | Code identifiers, inline code |
var { font-style: italic; color: var(--color-interactive);} /* var is never machine-translated */code, kbd, samp, pre, var { translate: no;}
The accent color makes variables scannable in technical prose without the visual weight of <code>'s background. The translate: no prevents machine translation from mangling variable names.
<var> differently from surrounding textaria-label<code> — Code identifiers and inline code (shared var(--font-mono))<kbd> — Keyboard input<samp> — Sample program output<em> — Emphasis (not variables)<sup> — Exponents alongside variables<sub> — Subscripts for indexed variables