Claude Code Plugins

Community-maintained marketplace

Feedback

Generates SCSS theme files in src/theme/ including vars.scss, shadow.scss, and index.scss with sample variables and mixins for styling.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name theme
description Generates SCSS theme files in src/theme/ including vars.scss, shadow.scss, and index.scss with sample variables and mixins for styling.

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:
    @forward './vars';
    

Output

Create the files:

  • src/theme/vars.scss
  • src/theme/shadow.scss
  • src/theme/index.scss

Notes

  • vars.scss provides comprehensive design system variables
  • shadow.scss provides 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-black from vars.scss