Usage Guidelines

Do

  • Use outlined icons only (brand requirement)
  • Maintain consistent sizing within contexts
  • Use brand colors: Marine, Green, Navy
  • Ensure adequate spacing around icons

Don't

  • Never use filled icon styles
  • Don't stretch or distort icons
  • Avoid using icons without proper contrast
  • Don't add effects (shadows, glows)

Implementation

HTML

<img src="/icons/Alterspective Icon FA (build).svg"
     alt="Build icon"
     width="24"
     height="24" />

CSS Background

.icon-build {
  width: 24px;
  height: 24px;
  background-image: url('/icons/Alterspective Icon FA (build).svg');
  background-size: contain;
  background-repeat: no-repeat;
}

React / Next.js

import Image from 'next/image';

<Image
  src="/icons/Alterspective Icon FA (build).svg"
  alt="Build icon"
  width={24}
  height={24}
/>

AI / MCP Integration

Icons can be searched programmatically via the MCP server:

MCP Tool: search_icons

// Example: Find icons for "deploy" functionality
const result = await mcp.callTool('search_icons', {
  query: 'deploy',
  category: 'actions',
  limit: 5
});

// Returns:
// {
//   icons: [{ id: 'icon-deploy', name: 'Deploy', ... }],
//   total: 1
// }
Style
Theme