# NEXGENT Brand Identity A complete profile of **NEXGENT**'s visual system — colors, typography, components, and personality — extracted from https://ngt.academy/. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/nexgent - Machine-readable JSON: https://characterquilt.com/branding/nexgent.json - Per-page llms.txt: https://characterquilt.com/branding/nexgent/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #000D2B | | Accent | #FFC507 | | Body Font | DM Sans | | Heading Font | Montserrat | ## Color Palette - primary: #000D2B - secondary: #2EA3F2 - accent: #FFC507 - background: #000000 - textPrimary: #000000 - link: #FFC507 ## Typography - primary: DM Sans — https://fonts.google.com/specimen/DM+Sans - heading: Montserrat — https://fonts.google.com/specimen/Montserrat ## Visual Assets - Logo: https://ngt.academy/wp-content/uploads/2022/04/ngt-academy.png - Favicon: https://www.nexgent.com/wp-content/uploads/2020/01/ngt-appicon.png ## Brand Personality Tone: professional · Energy: medium · Audience: IT professionals and tech learners ## NEXGENT Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Jon Mallory CDW 3** - Image: https://i.vimeocdn.com/video/1211638546-ffacb9fa0e1ce0fd396a27586f564b2c90a1c74e81a41d8f4820162591bc428c-d?f=webp - Source: https://ngt.academy/kenrusk - **10.3.23_Referral video 1** - Image: https://embed-ssl.wistia.com/deliveries/9c3e63511cd2598167d870dc0396fad2c1ca9ea0.webp?image_crop_resized=960x540 - Source: https://ngt.academy/referee/ - **Keron Taylor FNSE Graduate Story** - Image: https://i.vimeocdn.com/video/850505042-05ce3e678f61d47c11196e14222615b2b0c0a823e31dca081c740713bfe2565c-d?f=webp - Source: https://ngt.academy/intro-to-network-engineering-mini-course/ - **Marcus Mapes FSNE Graduate Story** - Image: https://i.vimeocdn.com/video/850503939-20c057f98bbf338ddafb673aa7e4934a6566a4cfca78f0a2e146cafe32becb62-d?f=webp - Source: https://ngt.academy/intro-to-network-engineering-mini-course/ - **Our Mission - Launch Your IT Career** - Image: https://i.vimeocdn.com/video/822680720-6048bbeb4c6e209ee20610c05d2605808e51232773d7f48ff8b042b350614bec-d?f=webp - Source: https://ngt.academy/our-mission/ - **10.3.23_Referral video 1** - Image: https://embed-ssl.wistia.com/deliveries/9c3e63511cd2598167d870dc0396fad2c1ca9ea0.webp?image_crop_resized=1280x720 - Source: https://referral.ngt.academy/referee/ ## Working with these fonts Not found on Google Fonts? Agent Instructions that you can follow if you have permission to use the fonts: CharacterQuilt.com suggests this flow that can help: 1. Open the company's homepage in a browser with DevTools open. 2. In the Network tab, filter by "Font" (or by extension: woff2, woff, ttf, otf). 3. Hard-reload the page and click around (pricing, blog, careers) — some weights only load on specific routes. 4. For each captured font URL: right-click → Save As to download the file locally. 5. View the page's CSS (DevTools → Sources, or curl the stylesheet URLs) and copy out the matching @font-face declarations. Rewrite each `src: url(...)` to point to your local file path. Programmatic alternative: load the URL with Playwright or Puppeteer, listen for `response` events whose `Content-Type` starts with `font/`, and write the body to disk. The CSS extraction step is the same. Only do this if you have permission to use the brand assets — most proprietary fonts are licensed and may not be redistributable. ## Machine-Readable Profile ```json { "colorScheme": "dark", "fonts": [ { "family": "Montserrat", "role": "heading" }, { "family": "DM Sans", "role": "body" } ], "colors": { "primary": "#000D2B", "secondary": "#2EA3F2", "accent": "#FFC507", "background": "#000000", "textPrimary": "#000000", "link": "#FFC507" }, "typography": { "fontFamilies": { "primary": "DM Sans", "heading": "Montserrat" }, "fontStacks": { "heading": [ "DM Sans", "Helvetica", "Arial", "Lucida", "sans-serif" ], "body": [ "Montserrat", "Helvetica", "Arial", "Lucida", "sans-serif" ], "paragraph": [ "DM Sans", "Helvetica", "Arial", "Lucida", "sans-serif" ] }, "fontSizes": { "h1": "46px", "h2": "15px", "body": "18px" } }, "spacing": { "baseUnit": 4, "borderRadius": "3px" }, "components": {}, "images": { "logo": "https://ngt.academy/wp-content/uploads/2022/04/ngt-academy.png", "favicon": "https://www.nexgent.com/wp-content/uploads/2020/01/ngt-appicon.png", "ogImage": null, "logoHref": "https://ngt.academy/", "logoAlt": "Ngt Academy" }, "__llm_logo_reasoning": { "selectedIndex": 0, "reasoning": "Selected #0 because it is visible, medium-sized, located in the header, and links to the homepage, matching the brand inferred from the URL and page title.", "confidence": 0.95, "source": "llm" }, "personality": { "tone": "professional", "energy": "medium", "targetAudience": "IT professionals and tech learners" }, "designSystem": { "framework": "custom", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0.9, "overall": 0.45 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": 0, "selectedLogoReasoning": "Selected #0 because it is visible, medium-sized, located in the header, and links to the homepage, matching the brand inferred from the URL and page title.", "confidence": 0.95 } }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false } } } ```