# Mineflow Brand Identity A complete profile of **Mineflow**'s visual system — colors, typography, components, and personality — extracted from http://mineflow.ai/. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/mineflow - Machine-readable JSON: https://characterquilt.com/branding/mineflow.json - Per-page llms.txt: https://characterquilt.com/branding/mineflow/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #0F172A | | Accent | #0F172A | | Body Font | Inter | | Heading Font | Inter | ## Color Palette - primary: #0F172A - secondary: #64748B - accent: #0F172A - background: #FFFFFF - textPrimary: #11181C - link: #020617 ## Typography - primary: Inter — https://fonts.google.com/specimen/Inter - heading: Inter — https://fonts.google.com/specimen/Inter ## Visual Assets - Favicon: https://mineflow.ai/favicon.ico ## UI Components - buttonPrimary: background=#0F172A, textColor=#F8FAFC, borderRadius=9999px, shadow=none - buttonSecondary: background=#FFFFFF, textColor=#11181C, borderColor=#E2E8F0, borderRadius=9999px, shadow=none ## Brand Personality Tone: professional · Energy: medium · Audience: mining and exploration professionals ## Mineflow Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Mineflow** - Image: https://mineflow.ai/_next/static/media/onb4.eb19daaa.png - Source: https://mineflow.ai/docs/getting-started - **Mineflow** - Image: https://mineflow.ai/3dp.png - Source: https://mineflow.ai/ - **Mineflow** - Image: https://mineflow.ai/_next/static/media/onb1.a494965e.png - Source: https://mineflow.ai/docs/getting-started - **About Mineflow** - Image: https://mineflow.ai/_next/static/media/titless.69d2f84d.png - Source: https://mineflow.ai/about - **Mineflow** - Image: https://mineflow.ai/mf512_transparent.png - Source: https://mineflow.ai/pricing - **Mineflow** - Image: https://raw.githubusercontent.com/rgoggins/host_image/main/prf.jpeg - Source: https://mineflow.ai/team ## 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": "light", "fonts": [ { "family": "Inter", "role": "body" } ], "colors": { "primary": "#0F172A", "secondary": "#64748B", "accent": "#0F172A", "background": "#FFFFFF", "textPrimary": "#11181C", "link": "#020617" }, "typography": { "fontFamilies": { "primary": "Inter", "heading": "Inter" }, "fontStacks": { "heading": [ "Inter" ], "body": [ "Inter" ], "paragraph": [ "Inter" ] }, "fontSizes": { "h1": "54px", "h2": "54px", "body": "16.2px" } }, "spacing": { "baseUnit": 4, "borderRadius": "12px" }, "components": { "buttonPrimary": { "background": "#0F172A", "textColor": "#F8FAFC", "borderRadius": "9999px", "borderRadiusCorners": { "topLeft": "9999px", "topRight": "9999px", "bottomRight": "9999px", "bottomLeft": "9999px" }, "shadow": "none" }, "buttonSecondary": { "background": "#FFFFFF", "textColor": "#11181C", "borderColor": "#E2E8F0", "borderRadius": "9999px", "borderRadiusCorners": { "topLeft": "9999px", "topRight": "9999px", "bottomRight": "9999px", "bottomLeft": "9999px" }, "shadow": "none" } }, "images": { "logo": null, "favicon": "https://mineflow.ai/favicon.ico", "ogImage": null }, "__llm_button_reasoning": { "primary": { "index": 0, "text": "Start for free", "reasoning": "The 'Start for free' button has a dark, vibrant background (#0F172A) and action-oriented text, making it the primary CTA." }, "secondary": { "index": 1, "text": "How It Works", "reasoning": "The 'How It Works' button has a light background (#FFFFFF) and serves as a secondary action, providing additional information." }, "confidence": 0.95 }, "personality": { "tone": "professional", "energy": "medium", "targetAudience": "mining and exploration professionals" }, "designSystem": { "framework": "tailwind", "componentLibrary": "" }, "confidence": { "buttons": 0.95, "colors": 0.9, "overall": 0.925 }, "__llm_metadata": { "logoSelection": { "llmCalled": false, "llmSucceeded": false, "finalSource": "none" }, "buttonClassification": { "llmCalled": true, "llmSucceeded": true } } } ```