next-js/skills/skills/theme-factory/SKILL.md
Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
npx skillsauth add spuneiartur/claude-agent-specs theme-factoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact.
To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes:
To apply styling to a slide deck or other artifact:
theme-showcase.pdf file to allow users to see all available themes visually. Do not make any modifications to it; simply show the file for viewing.The following 10 themes are available, each showcased in theme-showcase.pdf:
Each theme is defined in the themes/ directory with complete specifications including:
After a preferred theme is selected:
themes/ directoryTo handle cases where none of the existing themes work for an artifact, create a custom theme. Based on provided inputs, generate a new theme similar to the ones above. Give the theme a similar name describing what the font/color combinations represent. Use any basic description provided to choose appropriate colors/fonts. After generating the theme, show it for review and verification. Following that, apply the theme as described above.
When applying a theme to a Next.js project with Tailwind CSS, generate these configuration outputs:
Generate a tailwind.config.js theme extension with the selected theme's colors and fonts:
// Add/merge into tailwind.config.js → theme.extend
module.exports = {
theme: {
extend: {
colors: {
primary: '#hex', // Main dark color
accent: '#hex', // Primary accent
muted: '#hex', // Muted text
light: '#hex', // Light background
'metal-100': '#hex', // Border/separator shades
'metal-200': '#hex',
},
fontFamily: {
heading: ['Theme Heading Font', 'sans-serif'],
body: ['Theme Body Font', 'sans-serif'],
},
},
},
};
Generate CSS variables for css/theme.css (importable in css/index.css):
:root {
--color-primary: #hex;
--color-accent: #hex;
--color-muted: #hex;
--color-light: #hex;
--font-heading: 'Theme Heading Font', sans-serif;
--font-body: 'Theme Body Font', sans-serif;
}
Add Google Fonts <link> tags to _document.js:
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=HeadingFont:wght@400;500;600;700&family=BodyFont:wght@400;500;600&display=swap" rel="stylesheet" />
Update site.config.js with theme brand info if applicable:
module.exports = {
siteName: 'Brand Name',
// theme-related metadata
};
tools
Replace with description of the skill and when Claude should use it.
tools
Comprehensive website performance audit and optimization skill. Identifies and automatically fixes performance issues including image optimization, video compression, lazy loading, Core Web Vitals, bundle size, and rendering strategy. Uses Lighthouse (via CLI or MCP when available), ffmpeg for media processing, and the project's existing Image component with blur-up lazy loading. Use this skill whenever the user mentions: website speed, page load time, performance audit, Core Web Vitals, Lighthouse, optimize images, compress videos, lazy loading, LCP, CLS, FID, INP, slow website, speed up, performance optimization, image compression, video optimization, blur placeholder, WebP conversion, media audit, bundle size, or wants to improve their website's loading performance. Also trigger when the user says "my site is slow", "optimize for speed", "reduce load time", "improve performance", or asks about image/video optimization in any context.
tools
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
tools
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.