# People & Pages Brand Identity A complete profile of **People & Pages**'s visual system — colors, typography, components, and personality — extracted from http://peopleandpages.com. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/people-pages - Machine-readable JSON: https://characterquilt.com/branding/people-pages.json - Per-page llms.txt: https://characterquilt.com/branding/people-pages/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #101828 | | Accent | #155DFC | | Body Font | Arial | | Heading Font | Arial | ## Color Palette - primary: #101828 - secondary: #155DFC - accent: #155DFC - background: #FFFFFF - textPrimary: #4A5565 - link: #4A5565 ## Typography - primary: Arial — https://fonts.google.com/specimen/Arial - heading: Arial — https://fonts.google.com/specimen/Arial ## Visual Assets - Favicon: https://www.peopleandpages.com/favicon.ico?favicon.0b3bf435.ico - Social card (og:image): https://peopleandpages.com/api/og?title=People%20%26%20Pages&description=Discover%20inspiring%20stories%20from%20around%20the%20world%20through%20our%20curated%20collection%20of%20Instagram%20stories%20and%20cultural%20narratives.&type=website ## UI Components - input: background=#FFFFFF, textColor=#101828, borderColor=#D1D5DC, borderRadius=6px, shadow=rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px - buttonPrimary: background=#155DFC, textColor=#FFFFFF, borderRadius=8px, shadow=none - buttonSecondary: background=#FFFFFF, textColor=#364153, borderColor=#D1D5DC, borderRadius=8px, shadow=none ## Brand Personality Tone: modern · Energy: medium · Audience: culturally curious individuals ## People & Pages Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Morning Coffee in Tokyo | People & Pages** - Image: https://www.peopleandpages.com/_next/image?url=https%3A%2F%2Fpicsum.photos%2Fid%2F1%2F800%2F600&w=3840&q=75 - Source: https://www.peopleandpages.com/stories/morning-coffee-tokyo - **The Art of Tea in Kyoto | People & Pages** - Image: https://www.peopleandpages.com/_next/image?url=https%3A%2F%2Fpicsum.photos%2Fid%2F11%2F800%2F600&w=3840&q=75 - Source: https://www.peopleandpages.com/stories/tea-ceremony-kyoto - **Sunset in Marrakech | People & Pages** - Image: https://www.peopleandpages.com/_next/image?url=https%3A%2F%2Fpicsum.photos%2Fid%2F3%2F800%2F600&w=3840&q=75 - Source: https://www.peopleandpages.com/stories/sunset-marrakech - **Check List of People & Pages that liked your page on facebook | See Who Has Liked Your FB Page - YouTube** - Image: https://i.ytimg.com/vi/xDRVElR-HMs/sddefault.jpg - Source: https://www.youtube.com/watch?v=xDRVElR-HMs - **How to See Your Blocked List on Facebook People & Pages (2026 Updated)** - Image: https://i.ytimg.com/vi/DvlUlyHdJSM/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLAuiSTAJAJ1PCYZCNGqQIvzG-9crQ - Source: https://www.youtube.com/watch?v=DvlUlyHdJSM ## 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": "Arial", "role": "body" }, { "family": "Helvetica", "role": "body" } ], "colors": { "primary": "#101828", "secondary": "#155DFC", "accent": "#155DFC", "background": "#FFFFFF", "textPrimary": "#4A5565", "link": "#4A5565" }, "typography": { "fontFamilies": { "primary": "Arial", "heading": "Arial" }, "fontStacks": { "heading": [ "Arial", "Helvetica", "sans-serif" ], "body": [ "Arial", "Helvetica", "sans-serif" ], "paragraph": [ "Arial", "Helvetica", "sans-serif" ] }, "fontSizes": { "h1": "60px", "h2": "30px", "body": "24px" } }, "spacing": { "baseUnit": 8, "borderRadius": "0px" }, "components": { "input": { "background": "#FFFFFF", "textColor": "#101828", "borderColor": "#D1D5DC", "borderRadius": "6px", "borderRadiusCorners": { "topLeft": "6px", "topRight": "6px", "bottomRight": "6px", "bottomLeft": "6px" }, "shadow": "rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px" }, "buttonPrimary": { "background": "#155DFC", "textColor": "#FFFFFF", "borderRadius": "8px", "borderRadiusCorners": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "shadow": "none" }, "buttonSecondary": { "background": "#FFFFFF", "textColor": "#364153", "borderColor": "#D1D5DC", "borderRadius": "8px", "borderRadiusCorners": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "shadow": "none" } }, "images": { "logo": null, "favicon": "https://www.peopleandpages.com/favicon.ico?favicon.0b3bf435.ico", "ogImage": "https://peopleandpages.com/api/og?title=People%20%26%20Pages&description=Discover%20inspiring%20stories%20from%20around%20the%20world%20through%20our%20curated%20collection%20of%20Instagram%20stories%20and%20cultural%20narratives.&type=website" }, "__llm_button_reasoning": { "primary": { "index": 2, "text": "Explore Stories", "reasoning": "The 'Explore Stories' button is the primary CTA because it uses a vibrant brand color (#155DFC) and has action-oriented text that aligns with the site's purpose of engaging users with content." }, "secondary": { "index": 3, "text": "Learn More", "reasoning": "The 'Learn More' button is secondary as it has a different background color (#FFFFFF) and provides additional information, making it a supportive action to the primary CTA." }, "confidence": 0.95 }, "personality": { "tone": "modern", "energy": "medium", "targetAudience": "culturally curious individuals" }, "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 } } } ```