Overview

This page is the single place to see what llmbestpractices.com looks like and to download its assets: the typefaces and sizes, the light and dark palettes, the logo and favicon, and the social images. Designers and developers use it to match the site without reading the stylesheet; AI assistants read the token block below to describe or reproduce the brand accurately. It is the reference implementation of the /identity item in the LLM discoverability standard; the rules for building one are in identity-page.

Design tokens

Read this block programmatically. Values are copied from quartz.config.ts and quartz/styles/, and CI fails if they drift from the config.

name: LLM Best Practices
url: https://llmbestpractices.com
updated: 2026-09-27
standard_followed: https://llmbestpractices.com
fonts:
  header: "Schibsted Grotesk"
  body: "Source Sans Pro"
  code: "IBM Plex Mono"
  source: Google Fonts
  weights: [400, 600, 700]
type_scale:
  article_title: 2rem
  h1: 1.75rem
  h2: 1.4rem
  h3: 1.12rem
  h4_h6: 1rem
  body: 1rem
colors:
  light:
    light: "#faf8f8"
    lightgray: "#e5e5e5"
    gray: "#707070"
    darkgray: "#4e4e4e"
    dark: "#2b2b2b"
    secondary: "#284b63"
    tertiary: "#4a7268"
    highlight: "rgba(143, 159, 169, 0.15)"
    textHighlight: "#fff23688"
  dark:
    light: "#161618"
    lightgray: "#393639"
    gray: "#909090"
    darkgray: "#d4d4d4"
    dark: "#ebebec"
    secondary: "#7b97aa"
    tertiary: "#84a59d"
    highlight: "rgba(143, 159, 169, 0.15)"
    textHighlight: "#b3aa0288"
code_theme:
  light: github-light-high-contrast
  dark: github-dark-high-contrast
breakpoints:
  mobile: 800px
  desktop: 1200px
logo: https://llmbestpractices.com/static/logo.svg
logo_png: https://llmbestpractices.com/static/icon.png
favicon: https://llmbestpractices.com/static/logo.svg
favicon_png: https://llmbestpractices.com/static/favicon-32.png
favicon_ico: https://llmbestpractices.com/favicon.ico
og_image: https://llmbestpractices.com/static/og-image.png
per_page_og_image: "https://llmbestpractices.com/<category>/<slug>-og-image.webp"
LLM Best Practices logo: the letters LBP in white on a dark blue rounded square, with a short green-gray rule beneath

The mark is an LBP monogram: the letters in Schibsted Grotesk Bold, colored --light (#faf8f8), on a rounded square in the brand accent --secondary (#284b63), with a short rule in dark-mode --tertiary (#84a59d). The letters are converted to vector paths, so the SVG renders the same without the font installed. Keep clear space of at least a quarter of the mark’s width around it. Do not recolor it, stretch it, or set the letters in another typeface.

All brand assets are generated by scripts/generate-brand-assets.mjs from the colors in quartz.config.ts; rerun it after a theme change instead of editing the files by hand.

Favicon

Every page declares the SVG mark as the primary icon, the 512 x 512 PNG as a fallback and Apple touch icon, and the build emits a 48 x 48 /favicon.ico for clients that request it by path. The monogram stays legible at 32 px.

Color palette

The site ships two palettes and follows the reader’s system preference. --secondary is the one brand accent; everything else is a neutral ramp.

Light mode

SwatchTokenValueUse
--light#faf8f8Page background
--lightgray#e5e5e5Borders, dividers
--gray#707070Muted text, metadata
--darkgray#4e4e4eBody text
--dark#2b2b2bHeadings, strong text
--secondary#284b63Links, primary accent
--tertiary#4a7268Hover, visited accent
--highlightrgba(143, 159, 169, 0.15)Code and callout backgrounds
--textHighlight#fff23688Marked text

Dark mode

SwatchTokenValueUse
--light#161618Page background
--lightgray#393639Borders, dividers
--gray#909090Muted text, metadata
--darkgray#d4d4d4Body text
--dark#ebebecHeadings, strong text
--secondary#7b97aaLinks, primary accent
--tertiary#84a59dHover, visited accent
--highlightrgba(143, 159, 169, 0.15)Code and callout backgrounds
--textHighlight#b3aa0288Marked text

Callout accents are darkened in light mode to reach WCAG AA contrast; those overrides live in quartz/styles/custom.scss and are not brand colors.

Typography

Three families, all served from Google Fonts.

RoleFamilySpecimen
HeadingsSchibsted GroteskRules first, rationale second
BodySource Sans ProUse X when Y. Prefer X over Y. Avoid X because Y.
CodeIBM Plex Mononode scripts/lint-content.mjs

Weights in use are 400 (regular), 600 (semibold, headings and bold UI), and 700 (bold).

Type scale

ElementSizeWeight
Article title2rem600
H11.75rem600
H21.4rem600
H31.12rem600
H4 to H61rem600
Body1rem400

Code blocks use the github-light-high-contrast and github-dark-high-contrast Shiki themes.

Media assets

AssetFormatSizeLink
LogoSVGvectorlogo.svg
LogoPNG512 x 512icon.png
FaviconPNG32 x 32favicon-32.png
FaviconICO48 x 48favicon.ico
Default social imagePNG1200 x 630og-image.png
Per-page social imageWebP1200 x 630/<category>/<slug>-og-image.webp, generated at build
Default social image: the LBP mark beside the words LLM Best Practices, a one-line description, and the domain

All assets are released under the site’s CC BY 4.0 license; attribute “LLM Best Practices (llmbestpractices.com)“. See og-images for how the per-page images are generated.

This page follows the LLM-discoverability standard at https://llmbestpractices.com.