# Opslane Brand Identity A complete profile of **Opslane**'s visual system — colors, typography, components, and personality — extracted from https://opslane.com. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/opslane - Machine-readable JSON: https://characterquilt.com/branding/opslane.json - Per-page llms.txt: https://characterquilt.com/branding/opslane/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #7CFF6B | | Accent | #7CFF6B | | Body Font | DM Sans | | Heading Font | Instrument Serif | ## Color Palette - primary: #7CFF6B - secondary: #7A8A96 - accent: #7CFF6B - background: #080C0F - textPrimary: #080C0F - link: #607D8B ## Typography - primary: DM Sans — https://fonts.google.com/specimen/DM+Sans - heading: Instrument Serif — https://fonts.google.com/specimen/Instrument+Serif ## Visual Assets - Favicon: https://www.opslane.com/favicon.ico?favicon.0b3bf435.ico ## UI Components - buttonPrimary: background=#7CFF6B, textColor=#080C0F, borderRadius=6px, shadow=none - buttonSecondary: background=#080C0F, textColor=#7A8A96, borderColor=#1E2A35, borderRadius=6px, shadow=none ## Brand Personality Tone: modern · Energy: medium · Audience: developers and tech companies ## Opslane Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Opslane — Automated UI Testing for Every PR** - Image: https://www.opslane.com/favicon.ico?favicon.0b3bf435.ico - Source: https://opslane.com/ - **Mindset Shift Needed to Go From Writing Code to Running Business with Abhishek Ray** - Image: https://i.ytimg.com/vi/NhvO0VuN7ek/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLC-Z1sSMxIgP3Dm09jAK14xFf1PMg - Source: https://www.youtube.com/watch?v=NhvO0VuN7ek - **Opslane: An Open-Source Tool that Helps Teams Reduce Alert Fatigue, Streamline Incident Response, and Boost Team Morale - MarkTechPost** - Image: https://www.marktechpost.com/wp-content/uploads/2024/07/Screenshot-2024-07-28-at-11.33.27-PM.png - Source: https://www.marktechpost.com/2024/07/29/opslane-an-open-source-tool-that-helps-teams-reduce-alert-fatigue-streamline-incident-response-and-boost-team-morale/ - **GitHub - opslane/opslane: Verification Layer for Claude Code · GitHub** - Image: https://avatars.githubusercontent.com/u/169500408?v=4 - Source: https://github.com/opslane/opslane - **Opslane: Deploy to Kubernetes in minutes | Y Combinator** - Image: https://slabstatic.com/prod/uploads/s97i19pj/posts/images/1e4X0_iAo7eLJh7PLEo1oZoS.png - Source: https://www.ycombinator.com/companies/opslane ## 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": "DM Sans", "role": "body" }, { "family": "Instrument Serif", "role": "heading" }, { "family": "JetBrains Mono", "role": "monospace" } ], "colors": { "primary": "#7CFF6B", "secondary": "#7A8A96", "accent": "#7CFF6B", "background": "#080C0F", "textPrimary": "#080C0F", "link": "#607D8B" }, "typography": { "fontFamilies": { "primary": "DM Sans", "heading": "Instrument Serif" }, "fontStacks": { "heading": [ "Instrument Serif" ], "body": [ "DM Sans", "system-ui", "sans-serif" ], "paragraph": [ "DM Sans" ] }, "fontSizes": { "h1": "64px", "h2": "12px", "body": "17.28px" } }, "spacing": { "baseUnit": 4, "borderRadius": "0px" }, "components": { "buttonPrimary": { "background": "#7CFF6B", "textColor": "#080C0F", "borderRadius": "6px", "borderRadiusCorners": { "topLeft": "6px", "topRight": "6px", "bottomRight": "6px", "bottomLeft": "6px" }, "shadow": "none" }, "buttonSecondary": { "background": "#080C0F", "textColor": "#7A8A96", "borderColor": "#1E2A35", "borderRadius": "6px", "borderRadiusCorners": { "topLeft": "6px", "topRight": "6px", "bottomRight": "6px", "bottomLeft": "6px" }, "shadow": "none" } }, "images": { "logo": null, "favicon": "https://www.opslane.com/favicon.ico?favicon.0b3bf435.ico", "ogImage": null }, "__llm_button_reasoning": { "primary": { "index": 2, "text": "Get started free →", "reasoning": "Button #2 has a vibrant green background (#7CFF6B), which is the brand color, and features action-oriented text 'Get started free →'. This makes it the primary CTA." }, "secondary": { "index": 3, "text": "View on GitHub", "reasoning": "Button #3 has a dark background (#080C0F) and serves a secondary function with the text 'View on GitHub'. It contrasts with the primary button's vibrant color, making it suitable as a secondary button." }, "confidence": 0.95 }, "personality": { "tone": "modern", "energy": "medium", "targetAudience": "developers and tech companies" }, "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 } } } ```