Agent skill
theme
Generates SCSS theme files in src/theme/ including vars.scss, shadow.scss, and index.scss with sample variables and mixins for styling.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/theme
SKILL.md
Theme Skill
Purpose
- Generate SCSS theme files with variables and mixins.
- Add few sample SCSS variables as example in variables file.
- Add a few sample mixins as example in mixins file.
- Create an index.scss file that will forward the variables file. For example:
scss
@forward './vars';
Output
Create the files:
src/theme/vars.scsssrc/theme/shadow.scsssrc/theme/index.scss
⚠️ CRITICAL: Use Modern Sass Module System
MUST follow current Sass best practices as documented in official Sass documentation
Example of Implementation Pattern
In src/theme/index.scss - Use @forward to re-export variables:
@forward './vars';
@forward './shadow';
In components (App.vue, etc.) - Use @use to import theme:
<style lang="scss">
@use '@/theme/' as *;
.my-component {
color: $primary-color; // Variables from theme are now available
}
</style>
Verification
After generating theme files:
- Run build and check console output for any deprecation warnings
- If deprecation warnings appear, consult official Sass documentation for current patterns
- Ensure the implementation follows the
@forward/@usepattern shown in examples
Notes
vars.scssprovides comprehensive design system variablesshadow.scssprovides Material Design-inspired shadow mixins (0dp to 24dp)- Forward/use pattern enables clean imports in components
- Use with
@use '@/theme/' as *;in components - Shadow mixins reference
$global-blackfrom vars.scss - The
index.scssfile acts as a barrel export using@forward
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?