# Brushes Brand Identity A complete profile of **Brushes**'s visual system — colors, typography, components, and personality — extracted from http://brushesapp.com. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/brushes - Machine-readable JSON: https://characterquilt.com/branding/brushes.json - Per-page llms.txt: https://characterquilt.com/branding/brushes/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #000000 | | Accent | #0076FF | | Body Font | sans-serif | | Heading Font | sans-serif | ## Color Palette - primary: #000000 - accent: #0076FF - background: #DFDFDF - textPrimary: #0076FF - link: #0076FF ## Typography - primary: sans-serif — https://fonts.google.com/specimen/sans-serif - heading: sans-serif — https://fonts.google.com/specimen/sans-serif ## Brand Personality Tone: professional · Energy: medium · Audience: unknown ## Brushes Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Brushes** - Image: https://www.brushesapp.com/brushes.jpg - Source: https://www.brushesapp.com/ - **Brushes** - Image: https://www.brushesapp.com/inkpad.jpg - Source: https://www.brushesapp.com/ - **Alex Dukal Store - AD Cartoonist Brushes** - Image: https://alexdukal.com/store/wp-content/uploads/sites/2/edd/2018/04/ad-cartoonist-sample-000.jpg - Source: https://alexdukal.com/store/downloads/the-cartoonist-brushes/ - **North America Makeup Brushes and Tools Market Report, 2035** - Image: https://cdn.gminsights.com/cdn-cgi/image/fit=scale-down,format=webp,quality=60,width=1200/image/rd/consumer-goods-and-services/north-america-makeup-brushes-and-tools-market-research-report.webp - Source: https://www.gminsights.com/industry-analysis/north-america-makeup-brushes-and-tools-market - **Face & Eye Makeup Brushes & Tools | NYX Professional Makeup** - Image: https://www.nyxcosmetics.com/dw/image/v2/AANG_PRD/on/demandware.static/-/Sites-nyxcosmetics-us-Library/en_US/dwcc5bdef9/landingpage/brushes/2024-05-10-D2C-BRUSHES%20LANDING%20PAGE-BRUSH%20MAIN%20BANNER_%20MOBILE.jpg?sw=390&sh=280&sm=fit&q=70 - Source: https://www.nyxcosmetics.com/makeup-brushes-makeup-tools/?srsltid=AfmBOopNBCuSbclg9uYTtUHOmMmKZTUe9iDfHzwVR34aLq4TJ1erHhwV ## 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": "sans-serif", "count": 10 } ], "colors": { "primary": "#000000", "accent": "#0076FF", "background": "#DFDFDF", "textPrimary": "#0076FF", "link": "#0076FF" }, "typography": { "fontFamilies": { "primary": "sans-serif", "heading": "sans-serif" }, "fontStacks": { "body": [ "sans-serif" ], "heading": [ "sans-serif" ], "paragraph": [ "sans-serif" ] }, "fontSizes": { "h1": "16px", "h2": "16px", "body": "16px" } }, "spacing": { "baseUnit": 10, "borderRadius": "0px" }, "components": {}, "images": { "logo": null, "favicon": null, "ogImage": null }, "personality": { "tone": "professional", "energy": "medium", "targetAudience": "unknown" }, "designSystem": { "framework": "unknown", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0, "overall": 0 }, "__llm_metadata": { "logoSelection": { "llmCalled": false, "llmSucceeded": false, "finalSource": "none", "rawLogoSelection": { "selectedLogoIndex": -1, "selectedLogoReasoning": "LLM failed", "confidence": 0 } }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false, "error": "LLM call failed or returned fallback values" } } } ```