| 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.scsssrc/theme/shadow.scsssrc/theme/index.scss
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