# Code of the North — Brand Asset Portal # https://assets.1pg.us # For AI services, agents, and tools consuming brand resources. ## About Code of the North (CN) is a NetSuite development and consulting agency. This portal hosts brand assets, design tokens, templates, and tools. Tagline: ## Design Tokens (machine-readable) GET https://assets.1pg.us/brand/tokens.json - Colors, fonts, page geometry, and asset paths in JSON format. - Use this as the source of truth for any brand-compliant output. ## Key Colors - Forest (primary): #26413E - Lightning (secondary accent): #E9E730 - Backlight (on dark backgrounds): #37EEFB - Backlight (on light backgrounds): #04CEDC - Backlight (paired with white): #03838C - Moonlight (light background): #EEE5E9 - Midnight (dark background): #181E24 - White: #FFFFFF ## IMPORTANT: Color Rules - NEVER use #37EEFB on white or light backgrounds. Use #04CEDC or #03838C instead. - Forest (#26413E) is the dominant brand color. - Lightning (#E9E730) is secondary. - Backlight is accent only. ## Typography - Headers: Roboto Condensed (Light 300, Regular 400, Bold 700) - Sub-headers and body: Space Grotesk (Light 300 through Bold 700) - Code and special elements: Space Mono (Regular 400, Bold 700) - NEVER use Arial or Calibri as primary fonts. ## Document Standards - Page size: US Letter (8.5 x 11"). NEVER A4. - Side margins: 763 DXA (0.53") - Top/bottom margins: 979 DXA (0.68") - Content width: 10714 DXA (7.44") - Section headers: full-width table cells with Forest fill, white text. Not paragraph shading. - Footer: "Confidential — Code of the North LLC | CodeOfTheNorth.com" ## Logo Assets (fetch as needed) - Primary logo (forest on transparent): https://assets.1pg.us/brand/marks/CN_Logo_Primary_Forest_Alpha.svg - Primary logo (white on transparent): https://assets.1pg.us/brand/marks/CN_Logo_Primary_White_Alpha.svg - Primary logo PNG: https://assets.1pg.us/brand/marks/CN_Logo_Primary_Forest_Alpha.png - Stacked logo: https://assets.1pg.us/brand/marks/CN_Logo_Stacked_Forest_Alpha.svg - Stacked logo (white): https://assets.1pg.us/brand/marks/CN_Logo_Stacked_White_Alpha.svg - Icon (braces): https://assets.1pg.us/brand/marks/CN_Icon_Braces_Forest_Alpha.svg - Icon (braces white): https://assets.1pg.us/brand/marks/CN_Icon_Braces_White_Alpha.svg - Skinny braces (favicons/small UI only): https://assets.1pg.us/brand/marks/CN_Icon_BracesSkinny_Backlight_Light.svg ## Logo Rules - Always include curly braces { } with the logotype. - Maintain minimum clear space around the logo. - Use SVG for large-scale. PNG minimum sizes: Primary 211x30, Stacked 119x55, Icon 25x30. - BracesSkinny variant: only for tight spaces (favicons, browser tabs, app badges). - Do NOT alter logo ratio, use non-brand colors, remove brackets, add strokes, use inline with copy, or use as repeated pattern. ## Illustrations - Forest cabin scene (banner): https://assets.1pg.us/brand/illustrations/CN_Illustration_ForestCabin_Lightning_Alpha_1280x80.png - Deer illustrations, campfire, cabin, axe, trees, stars, waypoints available at https://assets.1pg.us/brand/marks/ ## Communication Standards - Short sentences. No filler phrases. - Never use em-dashes. Use commas, periods, or colons instead. - Abbreviate as "CN" internally. "Code of the North" only in formal headers and legal sections. ## Approved Color Pairings (foreground on background) A: #E9E730 on #181E24 (Lightning on Midnight) B: #26413E on #EEE5E9 (Forest on Moonlight — best for documents) C: #26413E on #E9E730 (Forest on Lightning) D: #26413E on #37EEFB (Forest on Backlight) E: #37EEFB on #26413E (Backlight on Forest) F: #03838C with #FFFFFF (Backlight Dark with White) ## Full Brand Guidelines PDF https://assets.1pg.us/brand/CotN_BrandGuidelines_2025.pdf ## Human-Readable Pages - Style Guide: https://assets.1pg.us/style/ - Design Tokens: https://assets.1pg.us/tokens/ - Photography: https://assets.1pg.us/photography/ - Templates: https://assets.1pg.us/templates/ - Tools: https://assets.1pg.us/tools/ - Color Reference: https://assets.1pg.us/colors/ - All Assets: https://assets.1pg.us/ ## Embedding a Logo in a docx (Node.js) ```js const resp = await fetch('https://assets.1pg.us/brand/marks/CN_Logo_Primary_Forest_Alpha.png'); const logoBuffer = Buffer.from(await resp.arrayBuffer()); new ImageRun({ data: logoBuffer, transformation: { width: 180, height: 32 }, type: 'png' }) ```