• Back to app
Preferences
  • Appearance
  • Keyboard shortcuts
  • Template
Workspace
  • Analytics
  • Backup

Appearance

Choose how the site looks on this device.

General

Interface theme

Select your interface color scheme.

Text size

Default text size for pages. Individual pages can override this.

Tooltip style

Normal matches menus and dialogs. Inverted uses the opposite of the page chrome (dark tooltips in light mode, light in dark).

Charts

Palette

Default color palette for analytics charts across the workspace.

Code

Syntax theme

Syntax colors for code blocks, inline code, and formulas.

Code block
function total(items) {
  const sum = items.reduce((a, b) => a + b, 0);
  return sum >= 100 ? "bulk" : sum;
}
Formula
// Billable amount, rounded to cents.
let amount = thisPage.Estimate * thisPage.Rate;
if(amount >= 100, "bulk", round(amount, 2))
Inline code

Filter rows where status != "done" to see what is left.