Modern web design in 2024-2025 emphasizes performance, accessibility, and meaningful interactions. This skill provides comprehensive guidance on current design trends, implementation patterns, and best practices for creating engaging, accessible, and performant web experiences.
Confirm successful installation by checking the skill directory location:
.cursor/skills/modern-web-design
Restart Cursor to activate modern-web-design. Access via /modern-web-design in your agent's command palette.
β
Security Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Modern web design in 2024-2025 emphasizes performance, accessibility, and meaningful interactions. This skill provides comprehensive guidance on current design trends, implementation patterns, and best practices for creating engaging, accessible, and performant web experiences.
This meta-skill synthesizes knowledge from all animation, interaction, and 3D skills in this repository to provide holistic design guidance.
Core Design Principles (2024-2025)
1. Performance-First Design
Philosophy: Design decisions should prioritize Core Web Vitals and user experience on all devices.
Key Metrics:
Largest Contentful Paint (LCP): < 2.5s
First Input Delay (FID): < 100ms
Cumulative Layout Shift (CLS): < 0.1
Interaction to Next Paint (INP): < 200ms
Implementation Guidelines:
Defer non-critical animations until after page load
Use CSS transforms/opacity for animations (GPU-accelerated)
Implement lazy loading for images, videos, and 3D content
Progressive enhancement: core content without JavaScript
Related Skills: gsap-scrolltrigger, motion-framer, lottie-animations for optimized animations
2. Bold Minimalism
Characteristics:
Large, impactful typography (clamp() for fluid sizing)
Ample white space (negative space as design element)
Limited color palettes (3-5 primary colors)
Intentional use of bold accent colors
Geometric shapes and clean lines
Typography Scale (Modern fluid system):
/* Fluid typography using clamp() */--font-size-xs:clamp(0.75rem,0.7rem+0.25vw,0.875rem);--font-size-sm:clamp(0.875rem,0.8rem+0.375vw,1rem);--font-size-base:clamp(1rem,0.9rem+0.5vw,1.25rem);--font-size-lg:clamp(1.25rem,1.1rem+0.75vw,1.75rem);--font-size-xl:clamp(1.75rem,1.5rem+1.25vw,2.5rem);--font-size-2xl:clamp(2.5rem,2rem+2.5vw,4rem);--font-size-3xl:clamp(3.5rem,2.5rem+5vw,6rem);
Color System (Accessibility-first):
/* WCAG AAA compliant color system */--color-primary:oklch(50%0.2250);/* Blue */--color-accent:oklch(65%0.2530);/* Coral */--color-neutral-50:oklch(98%00);--color-neutral-900:oklch(20%00);/* Contrast ratio: minimum 7:1 for text */
Related Skills: animated-component-libraries for UI components
3. Micro-Interactions
Definition: Small, purposeful animations that provide feedback, guide users, and enhance perceived performance.
Categories:
a) Hover States (Desktop):
Scale transformations (1.05-1.1x)
Color transitions (200-300ms)
Shadow depth changes
Cursor transformations
b) Loading States:
Skeleton screens (better than spinners)
Progressive image loading (blur-up technique)
Optimistic UI updates
Staggered content reveals
c) Interactive Feedback:
Button press states (scale down 0.95x)
Toggle switches with spring physics
Form field validation (immediate, kind feedback)
Success/error states with motion
Implementation Example (Framer Motion):
// Button with micro-interaction<motion.buttonwhileHover={{scale:1.05,y:-2}}whileTap={{scale:0.95}}transition={{type:"spring",stiffness:400,damping:17}}> Click me
</motion.button>
Related Skills: motion-framer, react-spring-physics, animejs for micro-interactions
4. Scrollytelling
Definition: Narrative-driven experiences where content reveals and transforms as the user scrolls.
Patterns:
a) Scroll-Triggered Reveals:
Fade-in on scroll entry (with offset)
Slide-in from sides with stagger
Scale + opacity transitions
Clip-path reveals
b) Scroll-Linked Animations:
Parallax layers (different scroll speeds)
Horizontal scrolling sections
Pinned sections with scrubbing animations
3D object rotation tied to scroll
c) Progress Indicators:
Reading progress bars
Step-by-step visual guides
Animated SVG paths following scroll
Implementation Example (GSAP ScrollTrigger):
// Scroll-linked 3D rotationgsap.to(".cube",{scrollTrigger:{trigger:".section",start:"top top",end:"bottom top",scrub:1,// Smooth scrubbing},rotationY:360,ease:"none"});
Related Skills: gsap-scrolltrigger, locomotive-scroll, scroll-reveal-libraries, react-three-fiber for 3D scrollytelling
5. Cursor UX
Evolution: Custom cursors that enhance interaction and provide contextual feedback.
βΊClaude Desktop or compatible AI client with skill support
βΊClear understanding of task or problem to solve
βΊWillingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
1Install skill using provided installation command
2Test with simple use case relevant to your work
3Evaluate output quality and relevance
4Iterate on prompts to improve results
5Integrate into regular workflow if valuable
Common Pitfalls
β Expecting perfect results without iteration
β Not providing enough context in prompts
β Using skill for tasks outside its intended scope
β Accepting outputs without review and validation
Best Practices
β Do
+Start with clear, specific prompts
+Provide relevant context and constraints
+Review and refine all outputs before using
+Iterate to improve output quality
+Document successful prompt patterns
β Don't
βDon't use without understanding skill limitations
βDon't skip validation of outputs
βDon't share sensitive information in prompts
βDon't expect skill to replace human judgment
π‘ Pro Tips
β Be specific about desired format and style
β Ask for multiple options to choose from
β Request explanations to understand reasoning
β Combine AI efficiency with human expertise
When to Use This
β Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
β Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
1Familiarize yourself with skill capabilities and limitations
2Start with low-risk, non-critical tasks
3Progress to more complex and valuable use cases
4Build expertise through regular use and experimentation