# Netresearch Brand Guidelines Skill A comprehensive Claude Code skill for implementing Netresearch brand guidelines in web projects. Ensures consistent brand application across all digital touchpoints. ## Overview This skill provides complete brand guidelines, reference documentation, and ready-to-use templates for implementing Netresearch's visual identity on web projects. It enables Claude Code to help developers and designers maintain brand consistency across websites, applications, and digital materials. ## Features ### π Comprehensive Brand Guidelines - **SKILL.md** - Complete brand implementation guide covering: - Brand identity and core values - Color system with accessibility compliance - Typography standards (Raleway, Open Sans, Calibri) - Logo usage guidelines and restrictions - Web design principles and best practices - Component styles and patterns - Social media specifications - Image guidelines - Accessibility requirements (WCAG AA) - Implementation checklists ### π¨ Reference Documentation - **colors.md** - Detailed color palette with: - Technical specifications (Hex, RGB, CMYK, Pantone, NCS) - Usage guidelines and approved combinations - WCAG AA contrast ratios - CSS custom properties - Accessibility compliance details - **typography.md** - Complete typography system with: - Font specifications and licensing - Web font loading strategies - Typography scale and hierarchy - Responsive typography patterns - Line height and spacing guidelines - Performance optimization - **web-design.md** - Web implementation patterns: - Responsive grid system - Component library (buttons, cards, forms, navigation) - Layout patterns - Animations and transitions - Accessibility considerations ### π― Templates & Examples - **landing-page.html** - Complete landing page template - **styles.css** - Production-ready brand CSS with all components - **components.html** - Interactive component showcase ## Installation ### Via Claude Code Marketplace ```bash /plugin marketplace add netresearch/claude-code-marketplace /plugin install netresearch-branding ``` ### Manual Installation ```bash # Using curl curl -L https://github.com/netresearch/netresearch-branding-skill/archive/refs/heads/main.zip -o netresearch-branding.zip unzip netresearch-branding.zip -d ~/.claude/skills/ mv ~/.claude/skills/netresearch-branding-skill-main ~/.claude/skills/netresearch-branding # Or using git git clone https://github.com/netresearch/netresearch-branding-skill.git ~/.claude/skills/netresearch-branding ``` ## Usage ### Automatic Activation The skill activates automatically when working on: - Netresearch web projects - Brand implementation tasks - UI/UX development requiring brand compliance - Documentation needing brand guidelines ### Manual Invocation ```bash /skill netresearch-branding ``` ### Example Workflows #### **Creating a New Landing Page** ``` User: "Create a landing page following Netresearch brand guidelines" Claude: [Activates netresearch-branding skill] - Uses brand colors (Turquoise #2F99A4, Orange #FF4D00) - Applies Raleway for headlines, Open Sans for body - Implements high white space design principle - Creates responsive layout with brand components - Ensures WCAG AA accessibility compliance - Delivers production-ready HTML/CSS ``` #### **Brand Compliance Check** ``` User: "Review this website design for Netresearch brand compliance" Claude: [Activates netresearch-branding skill] - Verifies color usage (primary vs accent) - Checks typography (correct fonts and weights) - Validates spacing and white space principles - Reviews component implementations - Assesses accessibility compliance - Provides specific improvement recommendations ``` #### **Component Development** ``` User: "Create a contact form with Netresearch branding" Claude: [Activates netresearch-branding skill] - Uses branded form components - Applies correct input styling - Implements brand buttons - Ensures proper spacing - Validates accessibility - Provides complete HTML/CSS ``` ## Brand Quick Reference ### Colors | Color | Hex | Usage | |-------|-----|-------| | **Turquoise** | `#2F99A4` | Primary brand color, links, CTAs | | **Orange** | `#FF4D00` | Accent color, emphasis only | | **Anthracite** | `#585961` | Primary text color | | **Light Grey** | `#CCCDCC` | Borders, backgrounds | | **White** | `#FFFFFF` | Primary background | ### Typography | Element | Font | Size | Weight | |---------|------|------|--------| | **Headlines (Web)** | Raleway | 48px-56px | 700 | | **Body (Web)** | Open Sans | 16px | 400 | | **Buttons** | Raleway | 16px | 600 | | **Documents** | Calibri | 11-12pt | 400/700 | ### Key Principles 1. **High White Space** - Generous padding and margins throughout 2. **Responsive Design** - Mobile-first approach with defined breakpoints 3. **Accessibility** - WCAG AA compliance mandatory 4. **Color Hierarchy** - Turquoise primary, orange accent only 5. **Clean Typography** - Clear hierarchy with Raleway + Open Sans ## File Structure ``` netresearch-branding-skill/ βββ SKILL.md # Main skill file with guidelines βββ README.md # This file βββ references/ β βββ colors.md # Color palette reference β βββ typography.md # Typography system β βββ web-design.md # Web components & patterns βββ templates/ β βββ landing-page.html # Landing page template β βββ styles.css # Brand CSS framework βββ examples/ βββ components.html # Interactive component showcase ``` ## Brand Component Library ### Buttons ```html ``` ### Cards ```html