saas-ui-master

Comprehensive UI/UX design intelligence combining a 4-Layer SaaS Master Guide with a robust CLI search system. 50 styles, 97 palettes, 57 font pairings, 25 chart types, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, mobile app. Topics: 4-layer color palette, OKLCH theming, layout, typography, font pairing, accessibility, animation, hover, dark mode contrast.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "saas-ui-master" with this command: npx skills add shovonsheikh/saas-ui-master/shovonsheikh-saas-ui-master-saas-ui-master

UI/UX Pro Max - SaaS Design Intelligence

Comprehensive design guide for web and mobile applications, specifically optimized for production-ready SaaS products. Contains 50+ styles, 97 color palettes, 57 font pairings, 99 UX guidelines, and 25 chart types across 9 technology stacks. Searchable database with priority-based recommendations, strictly enforcing professional design standards to prevent amateur, "vibe-coded" interfaces.

When to Apply

Reference these guidelines when:

  • Designing new UI components, pages, or complex SaaS dashboards
  • Choosing color palettes (especially defining 4-layer systems and dark mode) and typography
  • Reviewing code for UX, layout, or accessibility issues
  • Building landing pages that require high conversion trust
  • Implementing theming engines using modern color spaces (OKLCH)

Rule Categories by Priority

PriorityCategoryImpactDomain
1AccessibilityCRITICALux
2Touch & InteractionCRITICALux
3Layout & ArchitectureHIGHux, product
4PerformanceHIGHux
5Typography & 4-Layer ColorMEDIUMtypography, color
6AnimationMEDIUMux
7Style SelectionMEDIUMstyle, product
8Charts & DataLOWchart

Quick Reference: Core SaaS Philosophy

1. Component Architecture (HIGH)

  • Consolidate Navigation: Group administrative links (Settings, Billing, Profile, API Keys, Logout) into a unified Account Popover menu rather than cluttering the main sidebar.
  • Clean Lists/Tables: Hide secondary row actions (Edit, Delete, Duplicate) behind a clean ellipsis (three-dot) menu.
  • Modals for Focus: Use centered modals with collapsed advanced options for simple forms. Never use empty, full-height flyout menus.

2. The 4-Layer Color System (MEDIUM)

  • Layer 1 (Neutral Foundation): Never use pure white (#FFFFFF) as the app background. Use off-white/light gray (bg-slate-50). Surface interactive cards as pure white to pop. Use ultra-faint borders (85% white) or subtle drop shadows.
  • Layer 2 (Functional Accents): Generate a scale from 50 to 950. Main buttons = 500/600, Hover = 700, Text links = 400/500.
  • Layer 3 (Semantic Communication): Success = Green, Warning = Yellow/Orange, Destructive = Red. Use OKLCH color space for charts to keep lightness/chroma constant.
  • Layer 4 (Theming Engine): Generate programmatic themes using OKLCH math: convert neutral hex to OKLCH, drop lightness -0.03, increase chroma +0.02, and slide the Hue value.

3. Dark Mode Rules (CRITICAL)

  • Double the Distance: Dark colors bleed together. If light mode backgrounds step up by 2% lightness, dark mode MUST step up by 4% to 6%.
  • Shift Accents Lighter: Shift primary brand colors to the 300 or 400 range for buttons/active states to ensure legibility.

How to Use

Search specific domains using the CLI tool below.

Prerequisites

Check if Python is installed:

python3 --version || python --version

If Python is not installed, install it based on the user's OS:

macOS:

brew install python3

Ubuntu/Debian:

sudo apt update && sudo apt install python3

Windows:

winget install Python.Python.3.12


Workflow Instructions

When a user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:

Step 1: Analyze User Requirements

Extract key information from the user request:

  • Product type: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
  • Style keywords: minimal, playful, professional, elegant, dark mode, etc.
  • Industry: healthcare, fintech, gaming, education, etc.
  • Stack: React, Vue, Next.js, or default to html-tailwind

Step 2: Generate Design System (REQUIRED)

**Always start with --design-system** to get comprehensive recommendations with reasoning:

python3 skills/saas-ui-master/scripts/search.py "<product_type> <industry> <keywords>" --design-system [-p "Project Name"]

This command:

  1. Searches 5 domains in parallel (product, style, color, landing, typography)
  2. Applies reasoning rules from ui-reasoning.csv to select best matches
  3. Returns complete design system: pattern, style, colors, typography, effects
  4. Includes anti-patterns to avoid

Step 2b: Persist Design System (Master + Overrides Pattern)

To save the design system for hierarchical retrieval across sessions, add --persist:

python3 skills/saas-ui-master/scripts/search.py "<query>" --design-system --persist -p "Project Name"

This creates:

  • design-system/MASTER.md — Global Source of Truth with all design rules
  • design-system/pages/ — Folder for page-specific overrides

With page-specific override:

python3 skills/saas-ui-master/scripts/search.py "<query>" --design-system --persist -p "Project Name" --page "dashboard"

How hierarchical retrieval works:

  1. When building a specific page (e.g., "Checkout"), first check design-system/pages/checkout.md
  2. If the page file exists, its rules override the Master file
  3. If not, use design-system/MASTER.md exclusively

Step 3: Supplement with Detailed Searches (as needed)

After getting the design system, use domain searches to get additional details:

python3 skills/saas-ui-master/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]

When to use detailed searches:

NeedDomainExample
More style optionsstyle--domain style "glassmorphism dark"
Chart recommendationschart--domain chart "real-time dashboard"
UX best practicesux--domain ux "animation accessibility"
Alternative fontstypography--domain typography "elegant luxury"
Landing structurelanding--domain landing "hero social-proof"

Step 4: Stack Guidelines (Default: html-tailwind)

Get implementation-specific best practices. If the user doesn't specify a stack, **default to html-tailwind**.

python3 skills/saas-ui-master/scripts/search.py "<keyword>" --stack html-tailwind

Available stacks: html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter, shadcn, jetpack-compose


Search Reference

Available Domains

DomainUse For
productProduct type recommendations (SaaS, e-commerce, portfolio)
styleUI styles, colors, effects (glassmorphism, minimalism)
typographyFont pairings, Google Fonts
colorColor palettes by product type
landingPage structure, CTA strategies (hero, pricing, social-proof)
chartChart types, library recommendations
uxBest practices, anti-patterns (animation, accessibility)
promptAI prompts, CSS keywords

Output Formats & Tips

The --design-system flag supports two output formats:

# ASCII box (default) - best for terminal display
python3 skills/saas-ui-master/scripts/search.py "fintech crypto" --design-system

# Markdown - best for documentation
python3 skills/saas-ui-master/scripts/search.py "fintech crypto" --design-system -f markdown

Tips for Better Results:

  1. Be specific - "healthcare SaaS dashboard" > "app"
  2. Combine domains - Style + Typography + Color = Complete design system
  3. Always check UX - Search "animation", "z-index", "accessibility" for common issues

Common Rules for Professional UI

These are frequently overlooked issues that make UI look unprofessional:

Icons & Visual Elements

RuleDoDon't
No emoji iconsUse SVG icons (Heroicons, Lucide, Phosphor)Use emojis like 🎨 🚀 ⚙️ as UI icons
Stable hover statesUse color/opacity transitions on hoverUse scale transforms that shift layout
Correct brand logosResearch official SVG from Simple IconsGuess or use incorrect logo paths
Consistent icon sizingUse fixed viewBox (24x24) with w-6 h-6Mix different icon sizes randomly

Typography & Component Layout

RuleDoDon't
Text HierarchyUse shades for hierarchy (slate-900, 700, 500)Rely solely on font-weight (bold/normal)
Action ConsolidationGroup settings/logout into an Account PopoverLeave administrative links loose in the sidebar
Table ActionsCollapse row actions into an ellipsis menuShow 3+ icon buttons on every single row
Form ModalsUse centered modals for simple creation flowsUse full-height, mostly empty flyout sidebars

Interaction & Cursor

RuleDoDon't
Cursor pointerAdd cursor-pointer to all clickable cardsLeave default cursor on interactive elements
Hover feedbackProvide visual feedback (color, shadow)No indication element is interactive
Smooth transitionsUse transition-colors duration-200Instant state changes or too slow (>500ms)

Light/Dark Mode Contrast

RuleDoDon't
Base BackgroundUse off-white/slate-50 for app backgroundUse pure #FFFFFF as the main app background
Dark Mode SpacingDouble contrast distance (4-6% steps)Use the exact same lightness steps as light mode
Dark Mode AccentsShift brand buttons to 300/400 rangeKeep dark mode buttons the same dark shade
Border visibilityUse border-gray-200 or subtle shadowsUse harsh, thick black borders

Pre-Delivery Checklist

Before delivering UI code, verify these items:

Visual Quality & Architecture

  • No emojis used as icons; SVG set utilized (Heroicons/Lucide).
  • Navigation is consolidated (Account Popovers used instead of flat lists).
  • Table/List row actions are tucked behind an ellipsis menu.
  • Pure white (#FFFFFF) is NOT used as the base app background.
  • Borders use ultra-faint shades/shadows, not harsh black lines.

Interaction

  • All clickable elements have cursor-pointer.
  • Hover states provide clear visual feedback without shifting layouts.
  • Transitions are smooth (150-300ms).
  • Focus states are visible for keyboard navigation.

Light/Dark Mode

  • Light mode text meets 4.5:1 contrast ratio (#0F172A for primary).
  • Glass/transparent elements are visible in light mode.
  • Dark mode backgrounds have doubled contrast distances (4-6% steps).
  • Dark mode accents are shifted lighter (300/400 range) for legibility.
  • Test both modes before delivery.

Accessibility & Layout

  • Floating elements have proper spacing from edges (top-4 left-4).
  • All images have descriptive alt text.
  • Form inputs have properly linked labels.
  • Color is not the only indicator of status.
  • Responsive at 375px, 768px, 1024px, 1440px without horizontal scroll on mobile.

Credits & Attribution

The underlying CLI search engine, Python scripts (search.py), and foundational data arrays in this skill were originally created by nextlevelbuilder. This skill builds upon their excellent technical framework by injecting a strict, 4-Layer SaaS UI/UX Design philosophy.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

universal-genius-ui-ux-framework

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

brave-api-free-search

Free Brave API alternative for OpenClaw. Completely FREE web search. Secure localhost-only deployment. Supports hidden --dev flag.

Registry SourceRecently Updated
Coding

Agent Collab Platform

Unified agent collaboration platform with shared core, automatic GitHub issue handling, intelligent message routing, and modular extensibility for PM and Dev...

Registry SourceRecently Updated
Coding

Deep Memory

One-click clone of a production-grade semantic memory system: HOT/WARM/COLD tiered storage + Qdrant vector DB + Neo4j graph DB + qwen3-embedding. Enables cro...

Registry SourceRecently Updated