AI Context
Copy this markdown summary to provide AI assistants with Frequency brand context. This is also available via the @frequencyads/brand package.
frequency-brand-context.md
What’s Included
This AI context summary includes:
- Brand overview - Company info, mission, founding story
- Color palette - All hex codes and 10-shade system
- Gradients - 6 brand gradients with color stops
- Typography - Font families, weights, and type scale
- Voice & tone - Writing style and word preferences
- Code snippets - CSS variables, Google Fonts
Usage Tips
For ChatGPT / Claude / Other AI Assistants
Paste this context at the start of your conversation when asking the AI to:
- Generate UI code that follows Frequency brand guidelines
- Write marketing copy in the Frequency voice
- Create color schemes or design mockups
- Review designs for brand compliance
Example Prompt
[Paste the brand context above]
Now, please create a React component for a pricing card that follows
the Frequency brand guidelines. Use the primary color for the CTA button
and Montserrat for headings.NPM Package
This context is also available programmatically:
import { aiContext } from '@frequencyads/brand/context';
// Use the pre-built context string
console.log(aiContext);
// Or build custom context
import { getAIContext } from '@frequencyads/brand/context';
const colorsOnly = getAIContext({
includeColors: true,
includeTypography: false,
includeVoice: false,
includeCode: false
});