بنقرة واحدة
gradient-button
Generate gradient buttons with hover states, press feedback, and glow effects.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate gradient buttons with hover states, press feedback, and glow effects.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Adapt designs to work across different screen sizes, devices, contexts, or platforms. Ensures consistent experience across varied environments.
Improve layout, spacing, and visual rhythm. Fixes monotonous grids, inconsistent spacing, and weak visual hierarchy to create intentional compositions.
Perform comprehensive audit of interface quality across accessibility, performance, theming, and responsive design. Generates detailed report of issues with severity ratings and recommendations.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
One-time setup that gathers design context for your project and saves it to your AI config file. Run once to establish persistent design guidelines.
| name | gradient-button |
| description | Generate gradient buttons with hover states, press feedback, and glow effects. |
.btn-gradient {
padding: 12px 28px;
border: none;
border-radius: 12px;
background: linear-gradient(135deg, var(--accent), var(--accent-deep));
color: white;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
position: relative;
overflow: hidden;
}
.btn-gradient:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}
.btn-gradient:active {
transform: scale(0.97);
}
.btn-gradient::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.2s;
}
.btn-gradient:hover::after {
opacity: 1;
}
Use CSS custom properties for theming:
--accent: primary color--accent-deep: darker shade--accent-rgb: RGB values for rgba()