Privacy and analytics

We use necessary technical cookies and, only with your consent, analytics and marketing pixels to improve the website and measure campaigns.

Privacy policyCookie policy
Docs
English
EspañolEnglishFrançaisDeutschItalianoPortuguês

Getting started

  • What is Nömad?
  • Getting started with Nömad
  • Create your brand and complete the Genome
  • Invite your team
  • Glossary

Brand OS

  • What is inside Brand OS
  • What is the Genome?
  • Who is Nödo?
  • What does a Brand Manager do?
  • Brand Kit and Library
  • Posts and calendar
  • Connections
  • Meetings

Work

  • Work and tasks
  • Ordering work
  • Following, reviewing and approving deliveries
  • Custom quotes
  • Yes, there are humans behind it

Account and billing

  • Plans and pricing
  • Billing and payments
  • Roles and permissions
  • Workspaces and multiple brands
  • Languages, apps and data

Help

  • How to get help

API

  • Brand API
    • Permissions and roles
    • Brand
    • Genome
    • Brand Kit
    • Library
    • Works
    • Calendar
    • Connections
    • Publishing
    • Inbox
    • Team
    • Conversation
    • Memory
    • Questions
    • Media
    • Store
    • Plan
    • Orders
    • Activity

MCP

  • MCP server

Connectors

  • Brand connectors

Nödo and agents

  • Nödo in the brand
API/Brand API
Reference1 min read

Brand Kit

Colors, typography, logos and instructions.

On this page
  • kit.read · Read the Brand Kit
  • kit.colors.add · Add a color
  • kit.instructions.update · Edit Kit instructions

Updated on January 1, 1970

Русский
한국어
日本語
中文
हिन्दी
Open the app
Previous
Genome
NextLibrary

In this section

  • Permissions and roles
  • Brand
  • Genome
  • Library
  • Works
  • Calendar
  • Connections
  • Publishing
Can't find what you need? Write to usWrite to usGo to the app
© 2026 Nömad · Nömad documentationLinkedInInstagramFacebookTikTokYouTubeX
Go to nomad.oooBack to top

On this page

  • kit.read · Read the Brand Kit
  • kit.colors.add · Add a color
  • kit.instructions.update · Edit Kit instructions

kit.read · Read the Brand Kit

Approved colors with their role and contrast, typography, approved logos and usage instructions. Bounded to what agents may use; never returns storage paths (use library.asset.get for a file).

FieldValue
KindRead
HTTP methodPOST /api/v1/kit.read
MCP toolkit_read
Scopekit.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusAvailable
Widgetpalette

Input

{
  parts?: Array<"colors" | "typography" | "logos" | "instructions">
}

Output

{
  colors: Array<{
    name: string
    hex: string
    role: "primary" | "secondary" | "accent" | "background" | "foreground" | "neutral" | "unspecified"
  }>
  typography: Array<{
    family: string
    role: string
    weights: string[]
  }>
  logos: Array<{
    assetId: string  // uuid
    name: string
    form: string
    theme: string
    primary: boolean
  }>
  instructions: Record<string, string>
}

kit.colors.add · Add a color

Adds one color to the Kit with a name and role. The HEX value is normalized; an existing HEX with the same role is rejected.

FieldValue
KindWrite
HTTP methodPOST /api/v1/kit.colors.add
MCP toolkit_colors_add
Scopekit.write
Minimum roleAdmin
Human confirmationYes
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetpalette

Input

{
  name: string  // ≤ 60
  hex: string
  role?: "primary" | "secondary" | "accent" | "background" | "foreground" | "neutral" | "unspecified"  // default "unspecified"
}

Output

{
  ok: true
  id?: string
  revision?: integer  // -9007199254740991–9007199254740991
}

kit.instructions.update · Edit Kit instructions

Replaces the usage text of one Kit section (logos, colors, typography, imagery).

FieldValue
KindWrite
HTTP methodPOST /api/v1/kit.instructions.update
MCP toolkit_instructions_update
Scopekit.write
Minimum roleAdmin
Human confirmationYes
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetconfirm

Input

{
  section: "logos" | "colors" | "typography" | "imagery" | "general"
  text: string  // ≤ 4000
}

Output

{
  ok: true
  id?: string
  revision?: integer  // -9007199254740991–9007199254740991
}