# dashboard-components > React Dashboard patterns with WordPress blue theme - Author: kaewz-manga - Repository: kaewz-manga/wordpress-nodeflow-mcp - Version: 20260206222059 - Stars: 1 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/kaewz-manga/wordpress-nodeflow-mcp - Web: https://mule.run/skillshub/@@kaewz-manga/wordpress-nodeflow-mcp~dashboard-components:20260206222059 --- --- name: dashboard-components description: React Dashboard patterns with WordPress blue theme user-invocable: false --- # Dashboard Components Reference ## Theme Colors (WordPress Blue) ```css :root { --wp-bg: #0a0a0a; --wp-card: #141414; --wp-elevated: #1f1f1f; --wp-border: #2a2a2a; --wp-accent: #3b82f6; /* WordPress Blue */ --wp-text: #fafafa; --wp-text-secondary: #a3a3a3; --wp-text-muted: #737373; } ``` ## Button Templates ### Primary (Blue) ```tsx ``` ### Secondary ```tsx ``` ## WordPress-Specific Components ### Post Status Badge ```tsx const statusColors = { publish: 'bg-green-500/20 text-green-400', draft: 'bg-yellow-500/20 text-yellow-400', pending: 'bg-orange-500/20 text-orange-400', private: 'bg-purple-500/20 text-purple-400', }; {status} ``` ### Media Type Icon ```tsx const mediaIcons = { image: ImageIcon, video: VideoIcon, audio: AudioLinesIcon, application: FileIcon, }; const Icon = mediaIcons[media.media_type] || FileIcon; ```