Brainforge Icon Library
This directory contains the Brainforge brand icon library, exported from Figma. Icons are organized by category for easy discovery and use.
Directory Structure
assets/icons/
├── business/ # Business and finance icons (charts, money, scales, etc.)
├── technology/ # Technology and AI icons (gears, code, servers, etc.)
├── collaboration/ # Collaboration and people icons (handshake, speech bubbles, etc.)
└── productivity/ # Productivity and time icons (clocks, calendars, checklists, etc.)
Icon Format
All icons are provided as SVG files for:
- Scalability (looks crisp at any size)
- Small file sizes
- Easy customization via CSS
- Direct embedding in markdown
Usage in Markdown
Icons can be referenced in markdown files using standard image syntax:
Inline Usage
For inline icons with text:
 Some text hereSizing
SVG icons scale automatically. To control size, you can:
-
Use HTML in markdown (if your markdown renderer supports it):
<img src="./assets/icons/business/chart-bar.svg" alt="Chart" width="24" height="24" /> -
Reference in CSS (for web-based playbooks):
.icon { width: 24px; height: 24px; }
Icon Naming Conventions
Icons are named using kebab-case (lowercase with hyphens):
- ✅
chart-bar.svg - ✅
handshake.svg - ✅
code-brackets.svg - ❌
ChartBar.svg - ❌
handshake_icon.svg
Color Customization
Icons use the Brainforge brand green (#579D6B) by default. To customize colors:
In SVG files
Edit the stroke or fill attributes directly in the SVG file.
Via CSS (for web)
.icon {
color: #579D6B; /* Brand green */
fill: currentColor; /* Inherits from color */
}Adding New Icons
- Export icon from Figma as SVG
- Use “Contents Only” export setting (transparent background)
- Name the file using kebab-case
- Place in appropriate category directory
- Update this README if adding a new category
Extracting Icons from the Collection SVG
Status: Icons have been extracted from Figma and are available in the business/ directory as Group-X.svg files. These need to be organized into category directories and renamed with descriptive names.
Current Status:
- ✅ 60 icons extracted from Figma (stored in
business/directory) - ✅ Directory structure created (
business/,technology/,collaboration/,productivity/) - ✅ Example icons organized and renamed (see examples below)
- ⏳ Remaining icons need categorization and renaming
To Organize Remaining Icons:
- Review icons visually - Open each
Group-X.svgfile in a browser or vector editor - Identify the icon - Match to category guidelines below
- Rename and move:
cd assets/icons/business mv Group-X.svg ../[category]/descriptive-name.svg - Update ICON-MAPPING.md - Document what each icon is as you organize
Example Organized Icons:
technology/rocket.svg- Rocket/launch icontechnology/box-3d.svg- 3D box/pyramidtechnology/lightbulb.svg- Lightbulb/ideatechnology/globe.svg- Globe/world iconbusiness/chart-line.svg- Line chartbusiness/chart-bar.svg- Bar chartbusiness/chart-area.svg- Area chartbusiness/document.svg- Document/fileproductivity/shield-star.svg- Shield with starproductivity/target.svg- Target/bullseyeproductivity/check-circle.svg- Checkmark in circleproductivity/location-pin.svg- Location/map pinproductivity/trophy.svg- Trophy/award
See ICON-MAPPING.md for detailed organization guide.
Icon Categories
Business (business/)
Icons related to business, finance, and analytics:
- Charts and graphs
- Money and currency
- Scales and justice
- Calculators
- Briefcases
- Lock icons
Technology (technology/)
Icons related to technology, AI, and development:
- Gears and cogs
- Code brackets (
</>) - Cloud and servers
- Rocket ships
- Computer screens
- Lightbulbs (ideas)
Collaboration (collaboration/)
Icons related to people, communication, and teamwork:
- Handshake
- Speech bubbles
- Multiple person silhouettes
- Thumbs-up
- Team icons
Productivity (productivity/)
Icons related to time management and productivity:
- Clocks
- Calendars
- Checklists
- Magnifying glass (search)
- Shields
- Strategy pieces
Brand Colors
Icons use the following brand colors:
- Primary Green:
#579D6B(vibrant green accent) - Dark Green:
#244926(outline/detail color) - Accent Green:
#3FA93A(highlight color)
For full color palette, see 03-knowledge/brand-style-guide.md.
Examples
In Documentation
## Features
 **Analytics Dashboard**
Track your metrics with real-time charts and graphs.
 **Team Collaboration**
Work together seamlessly with integrated tools.In Web Applications
If using icons in a web application (e.g., Next.js):
import ChartIcon from '@/assets/icons/business/chart-bar.svg';
export function FeatureCard() {
return (
<div>
<ChartIcon className="w-6 h-6 text-brand-green" />
<h3>Analytics</h3>
</div>
);
}Questions or Updates
If you need to add new icons or have questions about usage, discuss with the team. This library should evolve as Brainforge’s visual language matures.
Last Updated: January 2026
Source: Figma Branding Materials → Icons page
Maintained By: Brainforge Team