leshi-ui
Version:
Modern CLI for building and managing React Native UI components with copy-paste simplicity, custom theming, and open source design system support
34 lines (33 loc) • 686 B
JavaScript
import chalk from 'chalk';
export const colors = {
primary: chalk.cyan,
secondary: chalk.magenta,
accent: chalk.blue,
success: chalk.green,
warning: chalk.yellow,
error: chalk.red,
info: chalk.blue,
dim: chalk.dim,
bold: chalk.bold,
underline: chalk.underline,
};
export const icons = {
success: '✅',
error: '❌',
warning: '⚠️',
info: 'ℹ️',
rocket: '🚀',
sparkles: '✨',
package: '📦',
folder: '📁',
file: '📄',
gear: '⚙️',
lightbulb: '💡',
books: '📚',
list: '📋',
theme: '🎨',
question: '❓',
cancel: '❌',
api: '🔧',
table: '📊',
};