🎨 Visual Design Standards¶ Reference
Last Updated: 2025-01-22 | Version: 1.0
Status: ✅ Final | Maintainer: Documentation Team
Quick Reference Guide for Visual Consistency
This document defines the visual design system for all documentation. Use this as your go-to reference when creating or updating docs to ensure visual consistency across the repository.
🎨 Color Palette¶
Medallion Colors¶
Use these for achievement, ranking, or tier systems:
| Color | Hex Code | RGB | Usage | Example |
|---|---|---|---|---|
| 🥉 Bronze | #CD7F32 | rgb(205,127,50) | Entry-level, basic tier, third place | Beginner tutorials |
| 🥈 Silver | #C0C0C0 | rgb(192,192,192) | Intermediate, standard tier, second | Intermediate guides |
| 🥇 Gold | #FFD700 | rgb(255,215,0) | Advanced, premium tier, first place | Advanced topics, best practice |
Usage Example:
### 🥉 Bronze Level: Getting Started
### 🥈 Silver Level: Core Concepts
### 🥇 Gold Level: Advanced Patterns
In Mermaid Diagrams:
graph LR
A[🥉 Bronze] --> B[🥈 Silver] --> C[🥇 Gold]
style A fill:#CD7F32,stroke:#8B5A2B,color:#000
style B fill:#C0C0C0,stroke:#808080,color:#000
style C fill:#FFD700,stroke:#DAA520,color:#000 Status Colors¶
Use these for system states, notifications, and feedback:
| Status | Hex Code | RGB | Usage | Icon | When to Use |
|---|---|---|---|---|---|
| ✅ Success | #4CAF50 | rgb(76,175,80) | Completed, passed, confirmed | ✅ ✓ | Success messages, done items |
| ℹ️ Info | #2196F3 | rgb(33,150,243) | Informational, neutral | ℹ️ 📘 | General notes, documentation |
| ⚠️ Warning | #FF9800 | rgb(255,152,0) | Caution, important notice | ⚠️ ⚡ | Warnings, important callouts |
| ❌ Error | #F44336 | rgb(244,67,54) | Failed, blocked, critical | ❌ 🚫 | Errors, critical issues |
| 🚧 In Progress | #FFC107 | rgb(255,193,7) | Work in progress, pending | 🚧 ⏳ | Ongoing work, development |
Usage in Callouts:
> ✅ **Success**: Your deployment completed successfully!
> ℹ️ **Info**: This feature requires version 2.0 or higher.
> ⚠️ **Warning**: This action cannot be undone.
> ❌ **Error**: Authentication failed. Check your credentials.
> 🚧 **In Progress**: This feature is currently being developed.
In Mermaid Diagrams:
flowchart TD
A[Start] --> B{Check}
B -->|Pass| C[✅ Success]
B -->|Warn| D[⚠️ Warning]
B -->|Fail| E[❌ Error]
style C fill:#4CAF50,stroke:#2E7D32,color:#fff
style D fill:#FF9800,stroke:#E65100,color:#fff
style E fill:#F44336,stroke:#C62828,color:#fff Neutral Colors¶
Use these for backgrounds, borders, and subtle elements:
| Color | Hex Code | RGB | Usage |
|---|---|---|---|
| Background | #F5F5F5 | rgb(245,245,245) | Light backgrounds |
| Border | #E0E0E0 | rgb(224,224,224) | Subtle borders, dividers |
| Text Primary | #212121 | rgb(33,33,33) | Primary text content |
| Text Secondary | #757575 | rgb(117,117,117) | Secondary text, metadata |
Semantic Colors (Additional)¶
| Purpose | Hex Code | RGB | Usage |
|---|---|---|---|
| 💙 Primary | #1976D2 | rgb(25,118,210) | Primary actions, links |
| 💜 Secondary | #7E57C2 | rgb(126,87,194) | Secondary actions |
| 💚 Positive | #43A047 | rgb(67,160,71) | Positive trends, growth |
| ❤️ Negative | #E53935 | rgb(229,57,53) | Negative trends, issues |
🏷️ Icon & Emoji Standards¶
Category Icons¶
Use these to indicate document or section categories:
| Icon | Category | Usage |
|---|---|---|
| 🎰 | Casino/Gaming | Casino-related features, game logic |
| 📊 | Analytics | Data analysis, reporting, metrics |
| 🔐 | Security | Authentication, authorization, encryption |
| ⚙️ | Configuration | Settings, setup, configuration |
| 🗄️ | Database | Data storage, schemas, queries |
| 🌐 | API/Network | APIs, endpoints, networking |
| 🚀 | Getting Started | Introduction, quickstart guides |
| 📚 | Documentation | Docs, references, guides |
| 🧪 | Testing | Unit tests, integration tests, QA |
| 🐳 | Docker/Containers | Containerization, orchestration |
| ☁️ | Cloud | Cloud services, deployment |
| 🔧 | Tools/Utilities | CLI tools, scripts, utilities |
| 📦 | Packages | Dependencies, modules, libraries |
| 🎯 | Goals/Objectives | Targets, milestones, objectives |
| 💡 | Tips/Ideas | Best practices, recommendations |
| 📈 | Performance | Optimization, speed, efficiency |
| 🏗️ | Architecture | System design, structure |
Status & Action Icons¶
Use these to indicate state or required actions:
| Icon | Status/Action | Usage |
|---|---|---|
| ✅ | Complete/Success | Finished items, passed tests |
| ❌ | Error/Failed | Failed items, errors, blocked |
| ⚠️ | Warning/Caution | Important notices, cautions |
| 🚧 | In Progress/WIP | Work in progress, under construction |
| ⏳ | Pending/Waiting | Queued items, waiting for action |
| ⏸️ | Paused | Temporarily stopped |
| 🔄 | Refresh/Sync | Update operations, synchronization |
| 🔍 | Search/Review | Investigation, review needed |
| ➡️ | Next/Forward | Next steps, progression |
| ⬅️ | Back/Previous | Previous steps, return |
| ⬆️ | Up/Increase | Scroll up, increase, upgrade |
| ⬇️ | Down/Decrease | Scroll down, decrease, downgrade |
| 🔗 | Link/Reference | Cross-references, links |
| 📌 | Pin/Important | Pinned items, highlights |
| 🎉 | Celebration | Achievements, completions |
| 💬 | Comment/Discussion | Comments, discussions, feedback |
Navigation Icons¶
Use these for navigation and wayfinding:
| Icon | Purpose | Usage |
|---|---|---|
| 🏠 | Home | Main page, root navigation |
| 📚 | Docs/Library | Documentation index |
| 📖 | Read/Book | Reading material, guides |
| 📝 | Write/Edit | Editing, note-taking |
| 🔝 | Top | Back to top links |
| 🔙 | Back | Previous page, go back |
| ➡️ | Next | Next page, continue |
| 📂 | Folder/Section | Section navigation |
| 🔖 | Bookmark | Saved items, bookmarks |
Technical Component Icons¶
Use these to represent technical components:
| Icon | Component | Usage |
|---|---|---|
| 💻 | Client/Frontend | User interfaces, client apps |
| ⚙️ | Server/Backend | Server-side, backend services |
| 🗄️ | Database | Data storage systems |
| 🌐 | API Gateway | API management, gateways |
| 🔐 | Auth Service | Authentication services |
| 📨 | Message Queue | Message brokers, queues |
| 💾 | Cache/Storage | Caching layers, storage |
| 🤖 | Bot/Automation | Automated processes, bots |
| 🔌 | Plugin/Extension | Extensions, plugins |
| 📡 | Webhook/Event | Webhooks, event triggers |
User & Team Icons¶
| Icon | Role/Entity | Usage |
|---|---|---|
| 👤 | User | Single user, user entity |
| 👥 | Team/Group | Multiple users, teams |
| 👨💼 | Admin | Administrator, admin role |
| 👩💻 | Developer | Developer, engineer |
| 👨🔧 | Operator | Operator, DevOps |
| 🎭 | Role | Role-based access, personas |
Icon Usage Rules¶
- One icon per header - Don't overuse
- Consistency - Use the same icon for the same concept
- Placement - Always before the text:
🚀 Getting Started - Spacing - One space between icon and text
- Accessibility - Icons enhance, don't replace text
✅ Good:
❌ Bad:
🎖️ Badge Standards¶
Shields.io Badge Templates¶
Use shields.io for consistent badge styling.
Status Badges¶




Rendered:
Difficulty Badges¶




Rendered:
Technology Badges¶




Rendered:
Build & Test Badges¶




Rendered:
Version & License Badges¶



Rendered:
Simple Text Badges¶
For inline status indicators without shields.io:
Rendered:
✅ Complete 🚧 In Progress ⏳ Pending ❌ Blocked ⏸️ Paused
Badge Color Reference¶
| Color | Hex Code | Shields.io Name | Usage |
|---|---|---|---|
| Bright Green | #4C1 | brightgreen | Success, passing, active |
| Green | #97CA00 | green | Positive, stable |
| Yellow Green | #A4A61D | yellowgreen | Good, acceptable |
| Yellow | #DFB317 | yellow | Warning, moderate |
| Orange | #FE7D37 | orange | Caution, experimental |
| Red | #E05D44 | red | Error, critical, failing |
| Blue | #007EC6 | blue | Info, neutral, version |
| Light Grey | #9F9F9F | lightgrey | Inactive, disabled |
💬 Callout Box Styles¶
Callout Types & Templates¶
💡 Pro Tips¶
For helpful advice, best practices, and optimizations:
> 💡 **Pro Tip**: Use environment variables to manage configuration across different environments.
>
> This keeps sensitive data out of your codebase and makes deployment easier.
Rendered:
💡 Pro Tip: Use environment variables to manage configuration across different environments.
This keeps sensitive data out of your codebase and makes deployment easier.
⚠️ Warnings¶
For important cautions and things to avoid:
> ⚠️ **Warning**: Deleting this resource is irreversible!
>
> Make sure you have backups before proceeding. Consider using soft deletes instead.
Rendered:
⚠️ Warning: Deleting this resource is irreversible!
Make sure you have backups before proceeding. Consider using soft deletes instead.
📝 Notes¶
For supplementary information and context:
> 📝 **Note**: This feature requires version 2.0 or higher.
>
> Check your current version with `npm list <package-name>`.
Rendered:
📝 Note: This feature requires version 2.0 or higher.
Check your current version with
npm list <package-name>.
📋 Prerequisites¶
For required steps or knowledge before starting:
> 📋 **Prerequisites**: Before starting, ensure you have:
>
> - Node.js 18+ installed
> - Docker Desktop running
> - Git configured with SSH keys
> - Basic knowledge of TypeScript
Rendered:
📋 Prerequisites: Before starting, ensure you have:
- Node.js 18+ installed
- Docker Desktop running
- Git configured with SSH keys
- Basic knowledge of TypeScript
❌ Errors & Troubleshooting¶
For error messages and solutions:
> ❌ **Error**: `ECONNREFUSED: Connection refused`
>
> **Cause**: The database server is not running.
>
> **Solution**: Start the database with `docker-compose up -d db`
Rendered:
❌ Error:
ECONNREFUSED: Connection refusedCause: The database server is not running.
Solution: Start the database with
docker-compose up -d db
✅ Success Messages¶
For confirmations and positive outcomes:
> ✅ **Success**: Your application is now running!
>
> Visit http://localhost:3000 to see it in action.
Rendered:
✅ Success: Your application is now running!
Visit http://localhost:3000 to see it in action.
ℹ️ Information¶
For general information and neutral notices:
> ℹ️ **Info**: Azure Fabric supports multiple authentication methods.
>
> Choose the one that best fits your security requirements.
Rendered:
ℹ️ Info: Azure Fabric supports multiple authentication methods.
Choose the one that best fits your security requirements.
🚧 Work in Progress¶
For features under development:
> 🚧 **Work in Progress**: Real-time analytics dashboard
>
> Expected completion: Q2 2025. Feedback welcome via GitHub Discussions.
Rendered:
🚧 Work in Progress: Real-time analytics dashboard
Expected completion: Q2 2025. Feedback welcome via GitHub Discussions.
🔐 Security Notices¶
For security-related information:
> 🔐 **Security**: Never commit secrets to version control!
>
> Use environment variables, Azure Key Vault, or secrets management tools.
Rendered:
🔐 Security: Never commit secrets to version control!
Use environment variables, Azure Key Vault, or secrets management tools.
Callout Usage Rules¶
- One type per box - Don't mix multiple callout types
- Bold the heading - Always bold the first word/phrase
- Keep it short - 2-3 sentences maximum
- Provide context - Explain why it matters
- Link to details - Reference deeper docs when needed
📊 Table Formatting¶
Standard Table Styles¶
Feature Comparison Tables¶
| Feature | Free | Pro | Enterprise |
| ------------------- | :--: | :-: | :--------: |
| Basic API Access | ✅ | ✅ | ✅ |
| Advanced Analytics | ❌ | ✅ | ✅ |
| 24/7 Support | ❌ | ❌ | ✅ |
| Custom Integrations | ❌ | ❌ | ✅ |
| SLA Guarantee | ❌ | ❌ | ✅ |
Rendered:
| Feature | Free | Pro | Enterprise |
|---|---|---|---|
| Basic API Access | ✅ | ✅ | ✅ |
| Advanced Analytics | ❌ | ✅ | ✅ |
| 24/7 Support | ❌ | ❌ | ✅ |
| Custom Integrations | ❌ | ❌ | ✅ |
| SLA Guarantee | ❌ | ❌ | ✅ |
Status Tables¶
| Component | Status | Last Updated | Notes |
| -------------- | -------------- | ------------ | ------------------ |
| Frontend | ✅ Complete | 2025-01-22 | All tests passing |
| Backend API | 🚧 In Progress | 2025-01-20 | 75% complete |
| Database | ✅ Complete | 2025-01-18 | Migrated to v2 |
| Documentation | ⏳ Pending | - | Awaiting approval |
Rendered:
| Component | Status | Last Updated | Notes |
|---|---|---|---|
| Frontend | ✅ Complete | 2025-01-22 | All tests passing |
| Backend API | 🚧 In Progress | 2025-01-20 | 75% complete |
| Database | ✅ Complete | 2025-01-18 | Migrated to v2 |
| Documentation | ⏳ Pending | - | Awaiting approval |
API Reference Tables¶
| Parameter | Type | Required | Default | Description |
| --------- | -------- | :------: | ------- | ------------------------------ |
| `userId` | `string` | ✅ | - | Unique user identifier |
| `limit` | `number` | ❌ | `10` | Maximum items to return (1-100)|
| `offset` | `number` | ❌ | `0` | Number of items to skip |
| `sortBy` | `string` | ❌ | `date` | Field to sort by |
Rendered:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
userId | string | ✅ | - | Unique user identifier |
limit | number | ❌ | 10 | Maximum items to return (1-100) |
offset | number | ❌ | 0 | Number of items to skip |
sortBy | string | ❌ | date | Field to sort by |
Configuration Tables¶
| Option | Type | Default | Description |
| ------------------- | --------- | --------- | ---------------------------------- |
| `debug` | `boolean` | `false` | Enable debug logging |
| `timeout` | `number` | `30000` | Request timeout in milliseconds |
| `retryAttempts` | `number` | `3` | Number of retry attempts |
| `enableCache` | `boolean` | `true` | Enable response caching |
Rendered:
| Option | Type | Default | Description |
|---|---|---|---|
debug | boolean | false | Enable debug logging |
timeout | number | 30000 | Request timeout in milliseconds |
retryAttempts | number | 3 | Number of retry attempts |
enableCache | boolean | true | Enable response caching |
Performance Metrics Tables¶
| Metric | Before | After | Improvement |
| ------------------- | --------: | --------: | :---------: |
| Page Load Time | 3.2s | 1.1s | 📈 66% |
| First Contentful | 1.8s | 0.6s | 📈 67% |
| Time to Interactive | 4.1s | 1.5s | 📈 63% |
| Bundle Size | 450 KB | 180 KB | 📈 60% |
Rendered:
| Metric | Before | After | Improvement |
|---|---|---|---|
| Page Load Time | 3.2s | 1.1s | 📈 66% |
| First Contentful | 1.8s | 0.6s | 📈 67% |
| Time to Interactive | 4.1s | 1.5s | 📈 63% |
| Bundle Size | 450 KB | 180 KB | 📈 60% |
Table Alignment Rules¶
| Left Aligned | Center Aligned | Right Aligned |
| :----------- | :------------: | ------------: |
| Text | Text | Text |
| Use for text | Use for icons | Use for numbers |
Guidelines:
- Left align: Text content, descriptions
- Center align: Icons, status indicators, boolean values
- Right align: Numbers, metrics, dates
🖼️ Mermaid Diagram Styles¶
Color Schemes for Different Diagram Types¶
Flowchart Colors¶
Soft Pastels (recommended for most flows):
flowchart LR
A[Input] --> B[Process] --> C[Output]
B --> D{Decision}
D -->|Yes| E[Success]
D -->|No| F[Error]
style A fill:#e3f2fd,stroke:#1976d2,stroke-width:2px
style B fill:#fff3e0,stroke:#f57c00,stroke-width:2px
style C fill:#e8f5e9,stroke:#388e3c,stroke-width:2px
style D fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px
style E fill:#e8f5e9,stroke:#4caf50,stroke-width:2px
style F fill:#ffebee,stroke:#d32f2f,stroke-width:2px Template:
style NodeA fill:#e3f2fd,stroke:#1976d2,stroke-width:2px
style NodeB fill:#fff3e0,stroke:#f57c00,stroke-width:2px
style NodeC fill:#e8f5e9,stroke:#388e3c,stroke-width:2px
Process Flow Colors¶
| Node Type | Fill Color | Stroke Color | Usage |
|---|---|---|---|
| Input/Start | #e3f2fd | #1976d2 | Entry points |
| Process | #fff3e0 | #f57c00 | Processing steps |
| Decision | #f3e5f5 | #7b1fa2 | Conditional logic |
| Success/Done | #e8f5e9 | #4caf50 | Successful outcome |
| Error/Fail | #ffebee | #d32f2f | Error states |
| Output/End | #e0f7fa | #0097a7 | Exit points |
Architecture Diagram Colors¶
By Layer:
graph TB
subgraph Frontend["🖥️ Frontend Layer"]
A[React App]
B[Next.js]
style A fill:#e1f5fe
style B fill:#e1f5fe
end
subgraph Backend["⚙️ Backend Layer"]
C[API Gateway]
D[Services]
style C fill:#fff3e0
style D fill:#fff3e0
end
subgraph Data["🗄️ Data Layer"]
E[(Database)]
F[(Cache)]
style E fill:#f3e5f5
style F fill:#f3e5f5
end Template:
Sequence Diagram Participant Colors¶
sequenceDiagram
participant U as 👤 User
participant F as 🖥️ Frontend
participant A as 🔐 Auth API
participant D as 🗄️ Database
U->>F: Login
F->>A: Authenticate
A->>D: Verify
D-->>A: Valid
A-->>F: Token
F-->>U: Success Color Guidelines:
- Use emojis for visual differentiation
- Keep participant names short (3-8 chars)
- Use consistent icons across diagrams
State Diagram Colors¶
stateDiagram-v2
[*] --> Draft
Draft --> Review : Submit
Review --> Approved : Accept
Review --> Rejected : Reject
Approved --> Published : Publish
Rejected --> Draft : Revise
Published --> [*]
Draft: 📝 Draft
Review: 🔍 Review
Approved: ✅ Approved
Rejected: ❌ Rejected
Published: 🚀 Published Diagram Style Templates¶
Minimal Clean Style¶
Bold Highlight Style¶
Subtle Style¶
Mermaid Best Practices¶
- Use icons - Add emojis to participant names and nodes
- Color code - Use consistent colors for similar elements
- Keep it simple - Max 10-15 nodes per diagram
- Label clearly - Short, descriptive labels
- Group related - Use subgraphs for organization
- Direction matters - Choose LR (left-right) or TD (top-down) based on content
📈 Progress Tracker Templates¶
Tutorial Progress Bar¶
Simple Text Progress¶
**Tutorial Progress:** 3 of 7 steps complete
`✅ Setup` → `✅ Configuration` → `✅ First App` → `⏳ Testing` → `⏳ Deployment` → `⏳ Monitoring` → `⏳ Optimization`
Rendered:
Tutorial Progress: 3 of 7 steps complete
✅ Setup → ✅ Configuration → ✅ First App → ⏳ Testing → ⏳ Deployment → ⏳ Monitoring → ⏳ Optimization
Table-Based Progress¶
| Step | Title | Status | Duration |
| :--: | ------------------ | -------------- | -------: |
| 1 | 🚀 Setup | ✅ Complete | 5 min |
| 2 | ⚙️ Configuration | ✅ Complete | 10 min |
| 3 | 💻 First App | ✅ Complete | 15 min |
| 4 | 🧪 Testing | 🚧 Current | 20 min |
| 5 | 🚀 Deployment | ⏳ Not Started | 15 min |
| 6 | 📊 Monitoring | ⏳ Not Started | 10 min |
| 7 | ⚡ Optimization | ⏳ Not Started | 25 min |
Rendered:
| Step | Title | Status | Duration |
|---|---|---|---|
| 1 | 🚀 Setup | ✅ Complete | 5 min |
| 2 | ⚙️ Configuration | ✅ Complete | 10 min |
| 3 | 💻 First App | ✅ Complete | 15 min |
| 4 | 🧪 Testing | 🚧 Current | 20 min |
| 5 | 🚀 Deployment | ⏳ Not Started | 15 min |
| 6 | 📊 Monitoring | ⏳ Not Started | 10 min |
| 7 | ⚡ Optimization | ⏳ Not Started | 25 min |
Visual Progress Bar¶
[████████████████░░░░░░░░░░░░░░░░] 45%or using HTML:
```html
<div style="background: #e0e0e0; border-radius: 10px; padding: 3px;">
<div style="background: linear-gradient(90deg, #4caf50, #8bc34a); width: 45%; padding: 8px; border-radius: 8px; text-align: center; color: white; font-weight: bold;">
45%
</div>
</div>
#### Checklist Progress
```markdown
### 📋 Setup Checklist
- [x] Install Node.js 18+
- [x] Install Docker Desktop
- [x] Clone repository
- [x] Configure environment variables
- [ ] Run database migrations
- [ ] Start development server
- [ ] Verify installation
**Progress:** 4 of 7 complete (57%)
Rendered:
📋 Setup Checklist¶
- Install Node.js 18+
- Install Docker Desktop
- Clone repository
- Configure environment variables
- Run database migrations
- Start development server
- Verify installation
Progress: 4 of 7 complete (57%)
Milestone Timeline¶
```mermaid
gantt
title Tutorial Progress
dateFormat YYYY-MM-DD
section Completed
Setup :done, setup, 2025-01-20, 1d
Configuration :done, config, 2025-01-21, 1d
First App :done, app, 2025-01-22, 1d
section In Progress
Testing :active, test, 2025-01-23, 1d
section Upcoming
Deployment :deploy, 2025-01-24, 1d
Monitoring :monitor, 2025-01-25, 1d
Optimization :optimize, 2025-01-26, 2d
**Rendered:**
```mermaid
gantt
title Tutorial Progress
dateFormat YYYY-MM-DD
section Completed
Setup :done, setup, 2025-01-20, 1d
Configuration :done, config, 2025-01-21, 1d
First App :done, app, 2025-01-22, 1d
section In Progress
Testing :active, test, 2025-01-23, 1d
section Upcoming
Deployment :deploy, 2025-01-24, 1d
Monitoring :monitor, 2025-01-25, 1d
Optimization :optimize, 2025-01-26, 2d
Feature Completion Matrix¶
| Module | Design | Development | Testing | Documentation |
| --------------- | :----: | :---------: | :-----: | :-----------: |
| Authentication | ✅ | ✅ | ✅ | ✅ |
| User Dashboard | ✅ | ✅ | ✅ | 🚧 |
| API Integration | ✅ | 🚧 | ⏳ | ⏳ |
| Admin Panel | ✅ | ⏳ | ⏳ | ⏳ |
| Analytics | 🚧 | ⏳ | ⏳ | ⏳ |
**Legend:** ✅ Complete | 🚧 In Progress | ⏳ Not Started
Rendered:
| Module | Design | Development | Testing | Documentation |
|---|---|---|---|---|
| Authentication | ✅ | ✅ | ✅ | ✅ |
| User Dashboard | ✅ | ✅ | ✅ | 🚧 |
| API Integration | ✅ | 🚧 | ⏳ | ⏳ |
| Admin Panel | ✅ | ⏳ | ⏳ | ⏳ |
| Analytics | 🚧 | ⏳ | ⏳ | ⏳ |
Legend: ✅ Complete | 🚧 In Progress | ⏳ Not Started
📌 Quick Reference Card¶
Color Quick Pick¶
| Need | Hex Code | Name |
|---|---|---|
| Success/Complete | #4CAF50 | Green |
| Warning/Caution | #FF9800 | Orange |
| Error/Critical | #F44336 | Red |
| Info/Neutral | #2196F3 | Blue |
| In Progress | #FFC107 | Amber |
| Bronze Tier | #CD7F32 | Bronze |
| Silver Tier | #C0C0C0 | Silver |
| Gold Tier | #FFD700 | Gold |
Icon Quick Pick¶
| Need | Icon | Need | Icon |
|---|---|---|---|
| Complete | ✅ | Error | ❌ |
| In Progress | 🚧 | Pending | ⏳ |
| Warning | ⚠️ | Info | ℹ️ |
| Success | ✅ | Tip | 💡 |
| Security | 🔐 | Configuration | ⚙️ |
| Database | 🗄️ | API | 🌐 |
| Documentation | 📚 | Getting Started | 🚀 |
| Testing | 🧪 | Tools | 🔧 |
Callout Quick Templates¶
> 💡 **Pro Tip**: [Your advice here]
> ⚠️ **Warning**: [Important caution]
> 📝 **Note**: [Supplementary info]
> ❌ **Error**: [Error description]
> **Solution**: [How to fix]
> ✅ **Success**: [Confirmation message]
Badge Quick Templates¶



Table Alignment Quick Reference¶
🔗 Related Documents¶
| Document | Description |
|---|---|
| Style Guide | Complete documentation style guide |
| Contributing | How to contribute to this project |
| README | Project overview and quick start |