Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问clear审计通过

material-design-3材料设计 3

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,665

周安装

68

GitHub Stars

公开资料未说明

下载量

533
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:material-design-3(材料设计 3)
来源仓库:https://github.com/7spade/black-tortoise
仓库路径:skills/material-design-3
安装命令:
npx skills add https://github.com/7spade/black-tortoise --skill material-design-3
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/7spade/black-tortoise --skill material-design-3

简介

material-design-3 用于辅助前端页面、组件、样式和交互逻辑的开发与维护,适合生成或审查 React、Vue、CSS 等代码。

  • 适用于需要整合现有设计系统、路由和构建方式的前端开发任务。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 使用时需结合项目现有结构,避免生成孤立片段;涉及页面改动时应配合本地预览确认效果。
  • 建议通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

SKILL.md

Material Design 3 (Material You) Skill

🎯 Purpose

This skill provides comprehensive guidance on Material Design 3 (also known as Material You), Google's latest design system that emphasizes personalization, accessibility, and modern UI patterns for Angular applications.

📦 What is Material Design 3?

Material Design 3 is Google's latest design language that introduces:

  • Dynamic Color: Adaptive color palettes based on user preferences
  • Enhanced Accessibility: WCAG 2.1 AA compliance by default
  • Flexible Theming: Token-based theming system
  • Modern Components: Updated component designs with better customization
  • Personalization: User-centric design that adapts to preferences

🎨 When to Use This Skill

Use Material Design 3 guidance when:

  • Implementing a new Angular application with Material Design
  • Migrating from Material Design 2 to Material Design 3
  • Creating custom themes using Material Design 3 tokens
  • Implementing dynamic color theming
  • Building accessible, modern UI components
  • Following Material You design principles
  • Working with Material Design 3 typography and spacing systems

🛠️ Core Concepts

1. Color System

Material Design 3 introduces a sophisticated color system:

Color Roles:

  • Primary: Main brand color for prominent actions
  • Secondary: Supporting color for less prominent actions
  • Tertiary: Accent color for highlights and contrasts
  • Error: Color for error states
  • Surface: Background colors for components
  • On-colors: Contrasting text/icon colors (on-primary, on-secondary, etc.)

Color Variants:

  • Container colors (e.g., primary-container)
  • On-container colors (e.g., on-primary-container)
  • Surface variants (surface-dim, surface-bright, surface-container)

2. Dynamic Color

Material Design 3's signature feature:

  • Generate color schemes from source colors
  • Support both light and dark themes
  • Automatic contrast adjustments
  • System-level color extraction (from wallpaper on supported platforms)

3. Typography

Five typography scales:

  • Display: Largest text (display-large, display-medium, display-small)
  • Headline: Section headers (headline-large to headline-small)
  • Title: Subsection titles (title-large to title-small)
  • Body: Main content (body-large, body-medium, body-small)
  • Label: UI labels (label-large to label-small)

4. Elevation

Three elevation strategies:

  • Shadow: Traditional elevation with shadows
  • Overlay: Tonal surface overlays
  • Combined: Shadow + overlay for enhanced depth perception

5. Shape

Rounded corner system with four scales:

  • None: 0dp (sharp corners)
  • Extra Small: 4dp
  • Small: 8dp
  • Medium: 12dp
  • Large: 16dp
  • Extra Large: 28dp

📚 Implementation in Angular

Setting Up Material Design 3 Theme

// Define your theme using M3 tokens
@use '@angular/material' as mat;

// Include core Material Design 3 styles
@include mat.core();

// Define your color palette
$my-primary: mat.define-palette(mat.$azure-palette);
$my-accent: mat.define-palette(mat.$blue-palette);
$my-warn: mat.define-palette(mat.$red-palette);

// Create the theme
$my-theme: mat.define-theme((
  color: (
    theme-type: light,
    primary: $my-primary,
    tertiary: $my-accent,
  ),
  typography: (
    brand-family: 'Roboto',
    bold-weight: 700
  ),
  density: (
    scale: 0
  )
));

// Apply the theme
@include mat.all-component-themes($my-theme);

// Dark theme variant
$my-dark-theme: mat.define-theme((
  color: (
    theme-type: dark,
    primary: $my-primary,
    tertiary: $my-accent,
  )
));

// Apply dark theme when needed
.dark-theme {
  @include mat.all-component-colors($my-dark-theme);
}

Using Color Tokens

// Access theme colors in your components
.my-component {
  background-color: var(--mat-sys-primary);
  color: var(--mat-sys-on-primary);

  &:hover {
    background-color: var(--mat-sys-primary-container);
    color: var(--mat-sys-on-primary-container);
  }
}

// Surface variants
.surface {
  background-color: var(--mat-sys-surface);
  color: var(--mat-sys-on-surface);
}

.surface-container {
  background-color: var(--mat-sys-surface-container);
}

Typography Usage

// Using typography tokens
.heading {
  font: var(--mat-sys-headline-large);
}

.body-text {
  font: var(--mat-sys-body-medium);
}

.label {
  font: var(--mat-sys-label-small);
}

Elevation and Shadows

.elevated-card {
  // Level 1 elevation
  box-shadow: var(--mat-sys-level1);

  &:hover {
    // Level 2 elevation on hover
    box-shadow: var(--mat-sys-level2);
  }
}

🎯 Best Practices

1. Theme Consistency

  • Use design tokens instead of hardcoded values
  • Maintain consistent color usage across components
  • Follow Material Design 3 color role guidelines

2. Accessibility

  • Ensure minimum 4.5:1 contrast ratio for text
  • Use semantic color roles (primary, secondary, error)
  • Support both light and dark themes
  • Provide sufficient touch target sizes (48x48dp minimum)

3. Responsive Design

  • Use Material Design 3 breakpoints
  • Adapt layouts for different screen sizes
  • Test on mobile, tablet, and desktop viewports

4. Dynamic Theming

// Example: Dynamic theme switching in Angular
export class ThemeService {
  private isDark = signal(false);

  toggleTheme() {
    this.isDark.update(dark => !dark);
    document.body.classList.toggle('dark-theme', this.isDark());
  }

  applyCustomColors(sourceColor: string) {
    // Generate M3 palette from source color
    const palette = this.generateM3Palette(sourceColor);
    this.applyCSSVariables(palette);
  }
}

🔧 Common Patterns

Custom Component with M3 Tokens

@Component({
  selector: 'app-custom-button',
  template: `
    <button class="m3-button" [class.filled]="variant === 'filled'">
      <ng-content></ng-content>
    </button>
  `,
  styles: [`
    .m3-button {
      padding: 10px 24px;
      border-radius: var(--mat-sys-corner-full);
      font: var(--mat-sys-label-large);
      border: none;
      cursor: pointer;

      &.filled {
        background-color: var(--mat-sys-primary);
        color: var(--mat-sys-on-primary);

        &:hover {
          background-color: var(--mat-sys-primary-container);
          color: var(--mat-sys-on-primary-container);
        }
      }

      &.outlined {
        background-color: transparent;
        border: 1px solid var(--mat-sys-outline);
        color: var(--mat-sys-primary);
      }
    }
  `]
})
export class CustomButtonComponent {
  @Input() variant: 'filled' | 'outlined' = 'filled';
}

🐛 Troubleshooting

IssueSolution
Colors not applyingEnsure @include mat.core() is called first
Theme tokens undefinedCheck Angular Material version (requires v15+)
Dark theme not workingVerify .dark-theme class is applied to parent element
Custom colors not workingUse define-palette() with proper Material color palette
Typography not loadingInclude Material Design fonts (Roboto) in index.html
Accessibility contrast issuesUse Material's built-in color roles instead of custom colors

📖 References

💡 Migration from Material Design 2

Key changes when migrating from M2 to M3:

  1. Replace color palette with theme-type approach
  2. Update component styles to use design tokens
  3. Migrate custom themes to new theming API
  4. Update typography from mat-typography-level to M3 tokens
  5. Replace elevation mixins with CSS custom properties
  6. Test accessibility with new contrast requirements

📂 Recommended Placement

Project-level skill:

/.github/skills/material-design-3/skill.md

Personal global skill:

~/.github/skills/material-design-3/skill.md

Copilot will automatically load this skill when Material Design 3 topics are mentioned.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Antigravity

27.66%
按下载量换算147

Claude Code

22.38%
按下载量换算119

OpenCode

17.92%
按下载量换算96

Codex

13.16%
按下载量换算70

Gemini CLI

6.87%
按下载量换算37

Cursor

2.97%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills