Agent skill
retro-css-generator
Generate retro-styled CSS for WordPress login page. Use when creating custom login page designs.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/design/retro-css-generator-dreamworks2050-retro-login
SKILL.md
Retro CSS Generator
Instructions
When creating retro login page styles:
- Use CSS custom properties for colors and fonts
- Target login-specific selectors (
.login,#loginform) - Apply retro effects subtly - prioritize accessibility
- Keep styles isolated - login page doesn't load theme styles
Retro Style Elements
| Element | CSS Selector | Notes |
|---|---|---|
| Page wrapper | .login |
Main container |
| Login form | #loginform |
Form element |
| Logo area | .login h1 a |
WordPress logo |
| Error box | .login .message |
Info/error messages |
| Submit button | .wp-submit-button |
Login button |
| Footer | .login footer |
Footer area |
Example Pattern
:root {
--retro-bg: #2d1b4e;
--retro-primary: #ff6b9d;
--retro-text: #c8d6e5;
--retro-font: 'Press Start 2P', monospace;
}
.login {
background: var(--retro-bg);
font-family: var(--retro-font);
}
#loginform {
background: rgba(255, 255, 255, 0.05);
border: 2px solid var(--retro-primary);
border-radius: 4px;
}
.wp-submit-button {
background: var(--retro-primary);
color: var(--retro-bg);
border: none;
}
Guidelines
- Define colors as
:rootvariables for easy theming - Test contrast ratios for accessibility
- Use subtle animations (scanlines, glow)
- Don't modify core WordPress functionality
- Keep CSS minimal - login page should load fast
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?