Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计通过

fluent2-design-systemFluent2 设计系统

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

432

周安装

18

GitHub Stars

1

下载量

144
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dodatech/approved-skills --skill fluent2-design-system

简介

fluent2-design-system 用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。

  • 适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时需结合现有品牌、设计系统和用户任务,避免只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写。

SKILL.md

Fluent 2 Design System

Build production-grade interfaces using Microsoft's Fluent 2 design system with @fluentui/react-components (v9).

Quick Start

Every Fluent 2 React app requires a FluentProvider wrapping the component tree with a theme:

import {
  FluentProvider,
  webLightTheme,
  webDarkTheme,
  Button,
  tokens,
  makeStyles,
  mergeClasses,
} from "@fluentui/react-components";

export default function App() {
  return (
    <FluentProvider theme={webLightTheme}>
      <Button appearance="primary">Hello Fluent 2</Button>
    </FluentProvider>
  );
}

Install: npm install @fluentui/react-components

Core Architecture

Theming

  • Built-in themes: webLightTheme, webDarkTheme, teamsLightTheme, teamsDarkTheme, teamsHighContrastTheme
  • Custom branding: Use createLightTheme(brandRamp) / createDarkTheme(brandRamp) with a BrandVariants object (keys 10160)
  • Nesting: FluentProvider can nest for sub-trees with different themes
  • Theme values are emitted as CSS custom properties on the provider element

Styling with Griffel

Use makeStyles (from @fluentui/react-components) — never inline styles or external CSS for token-aware styling.

const useStyles = makeStyles({
  root: {
    backgroundColor: tokens.colorNeutralBackground1,
    color: tokens.colorNeutralForeground1,
    display: "flex",
    gap: tokens.spacingHorizontalM,
    padding: tokens.spacingVerticalM,
  },
  active: {
    backgroundColor: tokens.colorBrandBackground,
    color: tokens.colorNeutralForegroundOnBrand,
  },
});

function MyComponent({ isActive }) {
  const styles = useStyles();
  return (
    <div className={mergeClasses(styles.root, isActive && styles.active)}>
      Content
    </div>
  );
}

Critical rules:

  • Define makeStyles outside components (module scope)
  • Use mergeClasses() to compose classes — never concatenate strings
  • Use tokens.* for all colors, spacing, typography, radii, shadows — never hardcode hex/px values
  • CSS shorthands (border, borderRadius, padding, etc.) are not supported — use shorthands.* helper or longhand properties
  • Pseudo-selectors use nested objects: ":hover": {color: tokens.colorBrandForeground1}
  • Media queries use nested objects: "@media (min-width: 768px)": {flexDirection: "row"}

Component Model

All v9 components follow a consistent pattern:

  • Slots: Named sub-parts (e.g., root, icon, content) that accept props or JSX
  • Appearance variants: "primary", "secondary", "subtle", "transparent", "outline"
  • Size variants: "small", "medium", "large"
  • Shape variants: "rounded", "circular", "square"

Override component styles via className with makeStyles/mergeClasses.

Design Tokens

Tokens are the bridge between design intent and code. Always use tokens.* — never raw values.

For complete token reference tables (color, typography, spacing, elevation, stroke, corner radius), see references/tokens.md.

Token Categories at a Glance

CategoryPrefixExample
Neutral colorscolorNeutral*tokens.colorNeutralBackground1
Brand colorscolorBrand*tokens.colorBrandBackground
Status colorscolorPalette{Color}*tokens.colorPaletteRedForeground1
TypographyfontFamily*, fontSize*, fontWeight*, lineHeight*tokens.fontSizeBase300
SpacingspacingHorizontal*, spacingVertical*tokens.spacingHorizontalM
Border radiusborderRadius*tokens.borderRadiusMedium
Stroke widthstrokeWidth*tokens.strokeWidthThin
Shadowshadow*tokens.shadow4
Durationduration*tokens.durationNormal
Easingcurve*tokens.curveEasyEase

Two-Layer Token System

  1. Global tokens — context-agnostic raw values (e.g., colorBlue60, fontSize300)
  2. Alias tokens — semantic meaning applied to globals (e.g., colorBrandBackground → blue, colorNeutralForeground1 → dark gray)

In code, consume alias tokens via the tokens object.

Layout

  • Grid: Use CSS Grid/Flexbox — Fluent 2 v9 has no Stack component
  • Spacing scale: 4px base unit. Values: XXS(2), XS(4), S(8), M(12), L(16), XL(20), XXL(24), XXXL(32)
  • Column grid: 12-column framework recommended for web; use CSS grid
  • Alignment: Use tokens.spacingHorizontal* and tokens.spacingVertical* for consistent spacing

Typography

  • Primary typeface: Segoe UI (web), Segoe UI Variable (Windows), SF Pro (macOS/iOS), Roboto (Android)
  • Font stack: tokens.fontFamilyBase = Segoe UI → system fallbacks → sans-serif
  • Monospace: tokens.fontFamilyMonospace
  • Text presets: Use <Text> component with preset variants — Caption1, Body1, Body1Strong, Subtitle1, Subtitle2, Title1, Title2, Title3, LargeTitle, Display
  • Alignment: Left-align for LTR; Fluent handles RTL automatically via Griffel

Color System

Three palettes:

  1. Neutral — blacks, whites, grays for surfaces, text, layout
  2. Brand — accent colors reinforcing identity (default Microsoft brand = blue)
  3. Shared/Status — cross-product colors: red (danger), green (success), yellow (warning), blue (informational)

Interaction states: rest → hover (darker) → pressed (darkest). Focus adds a thicker stroke, not a color change.

Accessibility

  • All components include ARIA roles, keyboard navigation (via Tabster), and focus management
  • High contrast: use teamsHighContrastTheme or handle @media (forced-colors: active) with system colors (ButtonText, Highlight, etc.)
  • Focus indicators are visible by default — never remove them
  • Ensure WCAG contrast via semantic token pairing (e.g., colorNeutralForeground1 on colorNeutralBackground1)

Component Inventory

For the full categorized component list with usage notes, see references/components.md.

Most-Used Components

Actions: Button, CompoundButton, SplitButton, ToggleButton, MenuButton, Link Inputs: Input, Textarea, Select, Combobox, Dropdown, Checkbox, RadioGroup, Switch, Slider, SpinButton, DatePicker, TimePicker Layout: Card, Divider, Drawer, Dialog, Popover, Tooltip Data Display: Table, DataGrid, Tree, Accordion, Badge, Avatar, AvatarGroup, Tag, Persona Navigation: TabList, Breadcrumb, Nav (preview) Feedback: Toast, MessageBar, ProgressBar, Spinner, Skeleton Surfaces: Menu, Toolbar, Overflow

Common Patterns

App Shell Layout

const useStyles = makeStyles({
  app: {
    backgroundColor: tokens.colorNeutralBackground1,
    display: "grid",
    gridTemplateColumns: "1fr",
    gridTemplateRows: "auto 1fr auto",
    height: "100vh",
    width: "100%",
  },
  header: {
    borderBottom: `${tokens.strokeWidthThin} solid ${tokens.colorNeutralStroke1}`,
    paddingTop: tokens.spacingVerticalS,
    paddingBottom: tokens.spacingVerticalS,
    paddingLeft: tokens.spacingHorizontalM,
    paddingRight: tokens.spacingHorizontalM,
  },
  content: {
    display: "grid",
    gridTemplateColumns: "280px 1fr",
    overflow: "hidden",
  },
  nav: {
    borderRight: `${tokens.strokeWidthThin} solid ${tokens.colorNeutralStroke1}`,
    overflowY: "auto",
  },
  main: {
    overflowY: "auto",
    paddingLeft: tokens.spacingHorizontalL,
    paddingRight: tokens.spacingHorizontalL,
    paddingTop: tokens.spacingVerticalL,
    paddingBottom: tokens.spacingVerticalL,
  },
});

Custom Brand Theme

import { createLightTheme, createDarkTheme } from "@fluentui/react-components";

const myBrand = {
  10: "#020305", 20: "#111723", 30: "#16263D",
  40: "#193253", 50: "#1B3F6A", 60: "#1B4C82",
  70: "#18599B", 80: "#1267B4", 90: "#3174C2",
  100: "#4F82C8", 110: "#6790CF", 120: "#7F9ED5",
  130: "#96ADDC", 140: "#ADBCE3", 150: "#C4CBE9",
  160: "#DBDBF0",
};

const lightTheme = createLightTheme(myBrand);
const darkTheme = createDarkTheme(myBrand);

Dark Mode Toggle

function App() {
  const [isDark, setIsDark] = useState(false);
  return (
    <FluentProvider theme={isDark ? webDarkTheme : webLightTheme}>
      <Switch
        label="Dark mode"
        checked={isDark}
        onChange={(_, data) => setIsDark(data.checked)}
      />
    </FluentProvider>
  );
}

Anti-Patterns

  • ❌ Hardcoded colors (color: "#333") — use tokens.colorNeutralForeground1
  • ❌ CSS shorthand properties in makeStyles (border: "1px solid red") — use longhand or shorthands.*
  • ❌ String concatenation of classNames — use mergeClasses()
  • ❌ Inline style props for token-based values — use makeStyles with tokens
  • ❌ Importing from @fluentui/react (v8) in v9 projects — use @fluentui/react-components
  • ❌ Using v8 Stack — use CSS Grid or Flexbox
  • ❌ Overriding CSS custom properties from the color system directly in CSS — the adaptive color system is JS-driven
  • ❌ Removing focus indicators — accessibility requirement

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.75%
按下载量换算50

Claude

30.75%
按下载量换算44

Cursor

17.37%
按下载量换算25

Gemini CLI

9.69%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/dodatech/approved-skills --skill fluent2-design-system 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills