diff --git a/.changeset/brave-pens-teach.md b/.changeset/brave-pens-teach.md new file mode 100644 index 000000000..4658921d9 --- /dev/null +++ b/.changeset/brave-pens-teach.md @@ -0,0 +1,5 @@ +--- +'@microsoft/atlas-mcp': minor +--- + +Add Atlas MCP Server - a Model Context Protocol server that exposes Atlas Design System resources to AI agents and copilots. Provides tools for searching CSS classes, listing components and atomics, and retrieving code examples from documentation. diff --git a/.github/instructions/mcp.instructions.md b/.github/instructions/mcp.instructions.md new file mode 100644 index 000000000..e37a0f4e3 --- /dev/null +++ b/.github/instructions/mcp.instructions.md @@ -0,0 +1,76 @@ +# Atlas MCP Server - Copilot Instructions + +applyTo: "mcp/**" + +This is the `@microsoft/atlas-mcp` package, a Model Context Protocol server that exposes Atlas Design System resources to AI agents. + +## Package Overview + +- **Name**: `@microsoft/atlas-mcp` +- **Type**: MCP Server (private package) +- **Build Tool**: TypeScript compiler (tsc) +- **Transport**: stdio (for integration with AI agents) + +## Project Structure + +``` +mcp/ +├── src/ +│ ├── index.ts # Entry point with stdio transport +│ ├── server.ts # MCP server setup, tools, and resources +│ └── data/ +│ └── loader.ts # Data loading from css/dist and site/src +├── dist/ # Compiled JavaScript output +├── package.json +├── tsconfig.json +└── README.md +``` + +## Key Commands + +- `npm run build` - Compile TypeScript to JavaScript +- `npm run dev` - Watch mode for development +- `npm run start` - Run the MCP server + +## Dependencies + +- `@modelcontextprotocol/sdk` - Official MCP SDK +- `zod` - Schema validation for tool inputs +- `front-matter` - Parse markdown frontmatter + +## Data Sources + +The server reads from: +- `css/dist/class-names.json` - All CSS class names with metadata +- `css/dist/tokens.json` - Design tokens +- `site/src/components/*.md` - Component documentation +- `site/src/atomics/*.md` - Atomic class documentation + +## Available Tools + +1. **search_classes** - Search CSS classes by pattern +2. **get_component** - Get component details and examples +3. **get_code_examples** - Get HTML/CSS code snippets +4. **list_components** - List all components +5. **list_atomics** - List atomic classes by category +6. **get_class_details** - Get class color/size metadata + +## Available Resources + +- `atlas://components` - Component catalog +- `atlas://atomics` - Atomic classes by category +- `atlas://tokens` - Design tokens + +## Coding Guidelines + +1. **Use Zod for schemas** - All tool inputs use Zod validation +2. **Cache loaded data** - Data is cached in memory for performance +3. **Return JSON content** - Tools return JSON in text content blocks +4. **Handle errors gracefully** - Return helpful error messages + +## When Making Changes + +1. Run `npm run build` to verify compilation +2. Test with MCP inspector or direct JSON-RPC calls +3. Ensure data paths resolve correctly relative to dist/ +4. Update README.md if adding new tools or resources diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d473e5380..786ae54df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,6 +50,11 @@ jobs: run: | npm run build:css; + # Build MCP server + - name: Build MCP + run: | + npm run build -w @microsoft/atlas-mcp; + # Run build for tokens and website - name: Build site run: | diff --git a/README.md b/README.md index a9e137ca9..010a0aa22 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,56 @@ Behaviors and elements beyond the scope of CSS are found in the `/js` folder. npm install --save @microsoft/atlas-js ``` +## Using Atlas with AI Agents + +The Atlas MCP Server exposes Atlas Design System resources to AI agents and copilots via the [Model Context Protocol](https://modelcontextprotocol.io/). This helps AI assistants discover and use Atlas CSS classes, components, and design tokens in your projects. + +### Install via npm + +```sh +npm install -g @microsoft/atlas-mcp +``` + +### Configure with GitHub Copilot + +Add to your `.github/copilot-mcp.json`: + +```json +{ + "mcpServers": { + "atlas": { + "command": "npx", + "args": ["-y", "@microsoft/atlas-mcp"] + } + } +} +``` + +### Configure with Claude Desktop + +Add to your Claude configuration: + +```json +{ + "mcpServers": { + "atlas": { + "command": "npx", + "args": ["-y", "@microsoft/atlas-mcp"] + } + } +} +``` + +### Available Tools + +- **search_classes** - Search 1200+ CSS classes by name or pattern +- **get_component** - Get component details with code examples +- **list_components** - List all available components +- **list_atomics** - List atomic utility classes by category +- **get_code_examples** - Get HTML/CSS code snippets from documentation + +See `/mcp/README.md` for full documentation. + ## Contributing While this project is open source, its primary purpose is to serve Microsoft web properties through a CSS-first implementation of a design system. We do appreciate contributions to our documentation (`/site` folder), our framework (`/css`), and its companion scripts (`/js`). diff --git a/mcp/README.md b/mcp/README.md new file mode 100644 index 000000000..37ceb97b2 --- /dev/null +++ b/mcp/README.md @@ -0,0 +1,147 @@ +# Atlas MCP Server + +A Model Context Protocol (MCP) server that exposes Atlas Design System resources to AI agents and copilots. + +## Overview + +This MCP server provides tools and resources for discovering and using Atlas CSS classes, components, and design tokens. It enables AI assistants to help developers use Atlas effectively in their projects. + +## Installation + +### Via npm (recommended for external users) + +```bash +npm install -g @microsoft/atlas-mcp +``` + +Or run directly with npx (no installation required): + +```bash +npx @microsoft/atlas-mcp +``` + +### From source (for contributors) + +From the repository root: + +```bash +npm install +npm run build -w @microsoft/atlas-mcp +``` + +## Configuration + +### GitHub Copilot CLI + +Add to your project's `.github/copilot-mcp.json`: + +```json +{ + "mcpServers": { + "atlas": { + "command": "npx", + "args": ["-y", "@microsoft/atlas-mcp"] + } + } +} +``` + +## Available Tools + +### `search_classes` +Search Atlas CSS classes by name or pattern. + +**Parameters:** +- `query` (string, required): Search query to match against class names +- `category` (string, optional): Filter by "component" or "atomic" +- `limit` (number, optional): Maximum results (default: 50, max: 100) + +**Example:** Search for button-related classes +``` +search_classes({ query: "button", category: "component" }) +``` + +### `get_component` +Get detailed information about a specific Atlas component. + +**Parameters:** +- `name` (string, required): Component name (e.g., "button", "card", "badge") + +**Example:** Get button component details +``` +get_component({ name: "button" }) +``` + +### `get_code_examples` +Get HTML/CSS code examples for a component or atomic category. + +**Parameters:** +- `name` (string, required): Component or atomic category name +- `type` (string, optional): "component" or "atomic" + +**Example:** Get spacing examples +``` +get_code_examples({ name: "spacing", type: "atomic" }) +``` + +### `list_components` +List all available Atlas components with descriptions. + +**Example:** +``` +list_components({}) +``` + +### `list_atomics` +List Atlas atomic utility classes by category. + +**Parameters:** +- `category` (string, optional): One of: spacing, color, display, flex, typography, border, background, position, size, other + +**Example:** List all spacing classes +``` +list_atomics({ category: "spacing" }) +``` + +### `get_class_details` +Get detailed information about a specific CSS class including theme colors and size values. + +**Parameters:** +- `className` (string, required): The CSS class name + +**Example:** Get details for color-primary +``` +get_class_details({ className: "color-primary" }) +``` + +## Available Resources + +### `atlas://components` +Full catalog of Atlas components with metadata. + +### `atlas://atomics` +All atomic utility classes organized by category (spacing, color, display, flex, typography, border, background, position, size). + +### `atlas://tokens` +Design tokens including colors, spacing, typography, shadows, and more. + +## Development + +```bash +# Build the MCP server +npm run build -w @microsoft/atlas-mcp + +# Watch mode for development +npm run dev -w @microsoft/atlas-mcp +``` + +## Prerequisites + +The MCP server requires built Atlas CSS artifacts. Ensure you've run: + +```bash +npm run build:css +npm run build:class-names +``` + +These commands generate `css/dist/class-names.json` and `css/dist/tokens.json` which the MCP server reads. diff --git a/mcp/data/atlas-data.json b/mcp/data/atlas-data.json new file mode 100644 index 000000000..a1fdd842f --- /dev/null +++ b/mcp/data/atlas-data.json @@ -0,0 +1,16040 @@ +{ + "classNames": { + "accordion": { + "name": "accordion", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-content": { + "name": "accordion-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-header": { + "name": "accordion-header", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-icon-end": { + "name": "accordion-icon-end", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-lg": { + "name": "accordion-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-sm": { + "name": "accordion-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-xl": { + "name": "accordion-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "accordion-xxl": { + "name": "accordion-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-center": { + "name": "align-content-center", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-center-tablet": { + "name": "align-content-center-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-flex-end": { + "name": "align-content-flex-end", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-flex-end-tablet": { + "name": "align-content-flex-end-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-flex-start": { + "name": "align-content-flex-start", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-flex-start-tablet": { + "name": "align-content-flex-start-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-space-around": { + "name": "align-content-space-around", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-space-around-tablet": { + "name": "align-content-space-around-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-space-between": { + "name": "align-content-space-between", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-space-between-tablet": { + "name": "align-content-space-between-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-stretch": { + "name": "align-content-stretch", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-content-stretch-tablet": { + "name": "align-content-stretch-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-baseline": { + "name": "align-items-baseline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-baseline-tablet": { + "name": "align-items-baseline-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-center": { + "name": "align-items-center", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-center-tablet": { + "name": "align-items-center-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-flex-end": { + "name": "align-items-flex-end", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-flex-end-tablet": { + "name": "align-items-flex-end-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-flex-start": { + "name": "align-items-flex-start", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-flex-start-tablet": { + "name": "align-items-flex-start-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-stretch": { + "name": "align-items-stretch", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-items-stretch-tablet": { + "name": "align-items-stretch-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-baseline": { + "name": "align-self-baseline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-baseline-tablet": { + "name": "align-self-baseline-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-center": { + "name": "align-self-center", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-center-tablet": { + "name": "align-self-center-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-flex-end": { + "name": "align-self-flex-end", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-flex-end-tablet": { + "name": "align-self-flex-end-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-flex-start": { + "name": "align-self-flex-start", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-flex-start-tablet": { + "name": "align-self-flex-start-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-stretch": { + "name": "align-self-stretch", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "align-self-stretch-tablet": { + "name": "align-self-stretch-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "animation-fade": { + "name": "animation-fade", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "animation-slide-up": { + "name": "animation-slide-up", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "aspect-ratio-1-1": { + "name": "aspect-ratio-1-1", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "aspect-ratio-16-9": { + "name": "aspect-ratio-16-9", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "aspect-ratio-2-1": { + "name": "aspect-ratio-2-1", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "aspect-ratio-4-3": { + "name": "aspect-ratio-4-3", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "aspect-ratio-9-16": { + "name": "aspect-ratio-9-16", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-alternate": { + "name": "background-color-alternate", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#2f2f2f", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-alternate-medium": { + "name": "background-color-alternate-medium", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#2f2f2f", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-alternating-grey": { + "name": "background-color-alternating-grey", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#161616", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-alternating-grey-reversed": { + "name": "background-color-alternating-grey-reversed", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#161616", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-black-static": { + "name": "background-color-black-static", + "color": { + "isValid": true, + "detailType": "static", + "universal": "#000", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-body": { + "name": "background-color-body", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#161616", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-body-accent": { + "name": "background-color-body-accent", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-body-accent-onhover": { + "name": "background-color-body-accent-onhover", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-body-medium": { + "name": "background-color-body-medium", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#161616", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-danger": { + "name": "background-color-danger", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-danger-dark": { + "name": "background-color-danger-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fdf3f4", + "dark": "#630001", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-danger-invert": { + "name": "background-color-danger-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#bc2f32", + "dark": "#e5a7a8", + "high-contrast": "#e5a7a8" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-danger-light": { + "name": "background-color-danger-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#b10e1c", + "dark": "#fde7e9", + "high-contrast": "#fde7e9" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-danger-tablet": { + "name": "background-color-danger-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-info": { + "name": "background-color-info", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-info-dark": { + "name": "background-color-info-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#efd9fd", + "dark": "#3b2e58", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-info-invert": { + "name": "background-color-info-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#8661c5", + "dark": "#9970d3", + "high-contrast": "#e0b7fe" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-info-light": { + "name": "background-color-info-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#3b2e58", + "dark": "#efd9fd", + "high-contrast": "#efd9fd" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-info-tablet": { + "name": "background-color-info-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-overlay": { + "name": "background-color-overlay", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-primary": { + "name": "background-color-primary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-primary-dark": { + "name": "background-color-primary-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#ebf3fc", + "dark": "#004173", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-primary-invert": { + "name": "background-color-primary-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#0f6cbd", + "dark": "#75b6e7", + "high-contrast": "#ff0" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-primary-light": { + "name": "background-color-primary-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#115ea3", + "dark": "#9ccbee", + "high-contrast": "#ff0" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-primary-tablet": { + "name": "background-color-primary-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-secondary": { + "name": "background-color-secondary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#000", + "dark": "#fff", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-secondary-dark": { + "name": "background-color-secondary-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#f5f5f5", + "dark": "#404040", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-secondary-invert": { + "name": "background-color-secondary-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#ebebeb", + "dark": "#757575", + "high-contrast": "#e6e6e6" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-secondary-light": { + "name": "background-color-secondary-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#424242", + "dark": "#e6e6e6", + "high-contrast": "#e6e6e6" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-secondary-tablet": { + "name": "background-color-secondary-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#000", + "dark": "#fff", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-success": { + "name": "background-color-success", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-success-dark": { + "name": "background-color-success-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#f1faf1", + "dark": "#054b16", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-success-invert": { + "name": "background-color-success-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#107c10", + "dark": "#7cbb7b", + "high-contrast": "#7cbb7b" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-success-light": { + "name": "background-color-success-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#0e700e", + "dark": "#dff6dd", + "high-contrast": "#acd7aa" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-success-tablet": { + "name": "background-color-success-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-tertiary": { + "name": "background-color-tertiary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#fff", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-tertiary-dark": { + "name": "background-color-tertiary-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#061329", + "dark": "#171717", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-tertiary-invert": { + "name": "background-color-tertiary-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#243a5e", + "dark": "#404040", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-tertiary-light": { + "name": "background-color-tertiary-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#a4b2c9", + "dark": "#e6e6e6", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-tertiary-tablet": { + "name": "background-color-tertiary-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#fff", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-transparent": { + "name": "background-color-transparent", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-warning": { + "name": "background-color-warning", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#000", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-warning-dark": { + "name": "background-color-warning-dark", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff9f5", + "dark": "#4a1e04", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-warning-invert": { + "name": "background-color-warning-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#f7630c", + "dark": "#f7630c", + "high-contrast": "#faa06b" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-warning-light": { + "name": "background-color-warning-light", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#8a3707", + "dark": "#fdcfb4", + "high-contrast": "#faa06b" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-warning-tablet": { + "name": "background-color-warning-tablet", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#000", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "background-color-white-static": { + "name": "background-color-white-static", + "color": { + "isValid": true, + "detailType": "static", + "universal": "#fff", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-image-pattern": { + "name": "background-image-pattern", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-size-100": { + "name": "background-size-100", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "background-size-200": { + "name": "background-size-200", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge": { + "name": "badge", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-clear": { + "name": "badge-clear", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-danger": { + "name": "badge-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-filled": { + "name": "badge-filled", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-info": { + "name": "badge-info", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-lg": { + "name": "badge-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-primary": { + "name": "badge-primary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-sm": { + "name": "badge-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-success": { + "name": "badge-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-tertiary": { + "name": "badge-tertiary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-warning": { + "name": "badge-warning", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "badge-xl": { + "name": "badge-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "banner": { + "name": "banner", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "banner-content": { + "name": "banner-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "banner-dismiss": { + "name": "banner-dismiss", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border": { + "name": "border", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom": { + "name": "border-bottom", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-lg": { + "name": "border-bottom-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-lg-tablet": { + "name": "border-bottom-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-md": { + "name": "border-bottom-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-md-tablet": { + "name": "border-bottom-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-none": { + "name": "border-bottom-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-none-tablet": { + "name": "border-bottom-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-bottom-tablet": { + "name": "border-bottom-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-accent": { + "name": "border-color-accent", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#e8e6df", + "dark": "#505050", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-danger": { + "name": "border-color-danger", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#bc2f32", + "dark": "#e5a7a8", + "high-contrast": "#e5a7a8" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-info": { + "name": "border-color-info", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#8661c5", + "dark": "#9970d3", + "high-contrast": "#e0b7fe" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-primary": { + "name": "border-color-primary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#0f6cbd", + "dark": "#75b6e7", + "high-contrast": "#ff0" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-secondary": { + "name": "border-color-secondary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#ebebeb", + "dark": "#757575", + "high-contrast": "#e6e6e6" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-success": { + "name": "border-color-success", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#107c10", + "dark": "#7cbb7b", + "high-contrast": "#7cbb7b" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-tertiary": { + "name": "border-color-tertiary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#243a5e", + "dark": "#404040", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "border-color-warning": { + "name": "border-color-warning", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#f7630c", + "dark": "#f7630c", + "high-contrast": "#faa06b" + }, + "size": { "isValid": false, "value": "" } + }, + "border-high-contrast": { + "name": "border-high-contrast", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-high-contrast-hover": { + "name": "border-high-contrast-hover", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left": { + "name": "border-left", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-lg": { + "name": "border-left-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-lg-tablet": { + "name": "border-left-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-md": { + "name": "border-left-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-md-tablet": { + "name": "border-left-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-none": { + "name": "border-left-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-none-tablet": { + "name": "border-left-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-left-tablet": { + "name": "border-left-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-lg": { + "name": "border-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-lg-tablet": { + "name": "border-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-md": { + "name": "border-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-md-tablet": { + "name": "border-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-none": { + "name": "border-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-none-tablet": { + "name": "border-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-radius": { + "name": "border-radius", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-radius-lg": { + "name": "border-radius-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-radius-none": { + "name": "border-radius-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-radius-rounded": { + "name": "border-radius-rounded", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-radius-sm": { + "name": "border-radius-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right": { + "name": "border-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-lg": { + "name": "border-right-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-lg-tablet": { + "name": "border-right-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-md": { + "name": "border-right-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-md-tablet": { + "name": "border-right-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-none": { + "name": "border-right-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-none-tablet": { + "name": "border-right-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-right-tablet": { + "name": "border-right-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-tablet": { + "name": "border-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top": { + "name": "border-top", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-lg": { + "name": "border-top-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-lg-tablet": { + "name": "border-top-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-md": { + "name": "border-top-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-md-tablet": { + "name": "border-top-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-none": { + "name": "border-top-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-none-tablet": { + "name": "border-top-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "border-top-tablet": { + "name": "border-top-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "bottom-0": { + "name": "bottom-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "box-shadow-extra-heavy": { + "name": "box-shadow-extra-heavy", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "box-shadow-heavy": { + "name": "box-shadow-heavy", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "box-shadow-light": { + "name": "box-shadow-light", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "box-shadow-medium": { + "name": "box-shadow-medium", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "box-shadow-none": { + "name": "box-shadow-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "breadcrumbs": { + "name": "breadcrumbs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "breadcrumbs-initial-slash": { + "name": "breadcrumbs-initial-slash", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "breadcrumbs-item": { + "name": "breadcrumbs-item", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "breadcrumbs-item-slashless": { + "name": "breadcrumbs-item-slashless", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button": { + "name": "button", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-block": { + "name": "button-block", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-clear": { + "name": "button-clear", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-danger": { + "name": "button-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-filled": { + "name": "button-filled", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-info": { + "name": "button-info", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-lg": { + "name": "button-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-primary": { + "name": "button-primary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-reset": { + "name": "button-reset", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-secondary": { + "name": "button-secondary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-sm": { + "name": "button-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-success": { + "name": "button-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-tertiary": { + "name": "button-tertiary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "button-warning": { + "name": "button-warning", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "buttons": { + "name": "buttons", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "buttons-addons": { + "name": "buttons-addons", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "buttons-centered": { + "name": "buttons-centered", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "buttons-right": { + "name": "buttons-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card": { + "name": "card", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-content": { + "name": "card-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-content-description": { + "name": "card-content-description", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-footer": { + "name": "card-footer", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-footer-item": { + "name": "card-footer-item", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-footer-left": { + "name": "card-footer-left", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-footer-right": { + "name": "card-footer-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-header": { + "name": "card-header", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-header-image": { + "name": "card-header-image", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-horizontal": { + "name": "card-horizontal", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-supertitle": { + "name": "card-supertitle", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-template": { + "name": "card-template", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-template-detail": { + "name": "card-template-detail", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-template-icon": { + "name": "card-template-icon", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "card-title": { + "name": "card-title", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "checkbox": { + "name": "checkbox", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "checkbox-check": { + "name": "checkbox-check", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "checkbox-lg": { + "name": "checkbox-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "checkbox-muted": { + "name": "checkbox-muted", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "checkbox-sm": { + "name": "checkbox-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "checkbox-text": { + "name": "checkbox-text", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "code-block": { + "name": "code-block", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "code-block-body": { + "name": "code-block-body", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "code-block-header": { + "name": "code-block-header", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "code-block-header-action-bar": { + "name": "code-block-header-action-bar", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "code-block-header-language": { + "name": "code-block-header-language", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "color-black-static": { + "name": "color-black-static", + "color": { + "isValid": true, + "detailType": "static", + "universal": "#000", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "color-current-color": { + "name": "color-current-color", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "color-danger": { + "name": "color-danger", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#bc2f32", + "dark": "#d4797a", + "high-contrast": "#fde7e9" + }, + "size": { "isValid": false, "value": "" } + }, + "color-danger-invert": { + "name": "color-danger-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-hyperlink": { + "name": "color-hyperlink", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#0065b3", + "dark": "#75b6e7", + "high-contrast": "#ff0" + }, + "size": { "isValid": false, "value": "" } + }, + "color-info": { + "name": "color-info", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#624991", + "dark": "#d59dff", + "high-contrast": "#efd9fd" + }, + "size": { "isValid": false, "value": "" } + }, + "color-info-invert": { + "name": "color-info-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-primary": { + "name": "color-primary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#0c3b5e", + "dark": "#2886de", + "high-contrast": "#ff3" + }, + "size": { "isValid": false, "value": "" } + }, + "color-primary-invert": { + "name": "color-primary-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-secondary": { + "name": "color-secondary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#b3b3b3", + "dark": "#a2a2a2", + "high-contrast": "#d2d2d2" + }, + "size": { "isValid": false, "value": "" } + }, + "color-secondary-invert": { + "name": "color-secondary-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#000", + "dark": "#fff", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-success": { + "name": "color-success", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#9fd89f", + "dark": "#7cbb7b", + "high-contrast": "#acd7aa" + }, + "size": { "isValid": false, "value": "" } + }, + "color-success-invert": { + "name": "color-success-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-tertiary": { + "name": "color-tertiary", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#70819f", + "dark": "#757575", + "high-contrast": "#e6e6e6" + }, + "size": { "isValid": false, "value": "" } + }, + "color-tertiary-invert": { + "name": "color-tertiary-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#fff", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-text": { + "name": "color-text", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#161616", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "color-text-invert": { + "name": "color-text-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#2f2f2f", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-text-overlay-invert": { + "name": "color-text-overlay-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#fff", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "color-text-subtle": { + "name": "color-text-subtle", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#505050", + "dark": "#d2d2d2", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "color-warning": { + "name": "color-warning", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#c43501", + "dark": "#fdcfb4", + "high-contrast": "#fff9f5" + }, + "size": { "isValid": false, "value": "" } + }, + "color-warning-invert": { + "name": "color-warning-invert", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#000", + "dark": "#000", + "high-contrast": "#000" + }, + "size": { "isValid": false, "value": "" } + }, + "color-white-static": { + "name": "color-white-static", + "color": { + "isValid": true, + "detailType": "static", + "universal": "#fff", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "default-focus": { + "name": "default-focus", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-block": { + "name": "display-block", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-block-desktop": { + "name": "display-block-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-block-tablet": { + "name": "display-block-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-block-widescreen": { + "name": "display-block-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-flex": { + "name": "display-flex", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-flex-desktop": { + "name": "display-flex-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-flex-tablet": { + "name": "display-flex-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-flex-widescreen": { + "name": "display-flex-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-grid": { + "name": "display-grid", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-grid-desktop": { + "name": "display-grid-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-grid-tablet": { + "name": "display-grid-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-grid-widescreen": { + "name": "display-grid-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline": { + "name": "display-inline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-block": { + "name": "display-inline-block", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-block-desktop": { + "name": "display-inline-block-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-block-tablet": { + "name": "display-inline-block-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-block-widescreen": { + "name": "display-inline-block-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-desktop": { + "name": "display-inline-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-flex": { + "name": "display-inline-flex", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-flex-desktop": { + "name": "display-inline-flex-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-flex-tablet": { + "name": "display-inline-flex-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-flex-widescreen": { + "name": "display-inline-flex-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-tablet": { + "name": "display-inline-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-inline-widescreen": { + "name": "display-inline-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-none": { + "name": "display-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-none-desktop": { + "name": "display-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-none-tablet": { + "name": "display-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "display-none-widescreen": { + "name": "display-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field": { + "name": "field", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-body": { + "name": "field-body", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-body-inline": { + "name": "field-body-inline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-description": { + "name": "field-description", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-error": { + "name": "field-error", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-label": { + "name": "field-label", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-label-inline": { + "name": "field-label-inline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-label-lg": { + "name": "field-label-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "field-label-sm": { + "name": "field-label-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "fill-current-color": { + "name": "fill-current-color", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-basis-0": { + "name": "flex-basis-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-basis-0-tablet": { + "name": "flex-basis-0-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-column": { + "name": "flex-direction-column", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-column-reverse": { + "name": "flex-direction-column-reverse", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-column-reverse-tablet": { + "name": "flex-direction-column-reverse-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-column-tablet": { + "name": "flex-direction-column-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-row": { + "name": "flex-direction-row", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-row-reverse": { + "name": "flex-direction-row-reverse", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-row-reverse-tablet": { + "name": "flex-direction-row-reverse-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-direction-row-tablet": { + "name": "flex-direction-row-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-grow-0": { + "name": "flex-grow-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-grow-0-tablet": { + "name": "flex-grow-0-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-grow-1": { + "name": "flex-grow-1", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-grow-1-tablet": { + "name": "flex-grow-1-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-shrink-0": { + "name": "flex-shrink-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-shrink-0-tablet": { + "name": "flex-shrink-0-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-shrink-1": { + "name": "flex-shrink-1", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-shrink-1-tablet": { + "name": "flex-shrink-1-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-wrap-nowrap": { + "name": "flex-wrap-nowrap", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-wrap-nowrap-tablet": { + "name": "flex-wrap-nowrap-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-wrap-wrap": { + "name": "flex-wrap-wrap", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-wrap-wrap-reverse": { + "name": "flex-wrap-wrap-reverse", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-wrap-wrap-reverse-tablet": { + "name": "flex-wrap-wrap-reverse-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "flex-wrap-wrap-tablet": { + "name": "flex-wrap-wrap-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "focus-visible": { + "name": "focus-visible", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-family-monospace": { + "name": "font-family-monospace", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-family-quote": { + "name": "font-family-quote", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-size-h0": { + "name": "font-size-h0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3.375rem (54px)" } + }, + "font-size-h0-tablet": { + "name": "font-size-h0-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3.375rem (54px)" } + }, + "font-size-h1": { + "name": "font-size-h1", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2.5rem (40px)" } + }, + "font-size-h1-tablet": { + "name": "font-size-h1-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2.5rem (40px)" } + }, + "font-size-h2": { + "name": "font-size-h2", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2.125rem (34px)" } + }, + "font-size-h2-tablet": { + "name": "font-size-h2-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2.125rem (34px)" } + }, + "font-size-h3": { + "name": "font-size-h3", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.75rem (28px)" } + }, + "font-size-h3-tablet": { + "name": "font-size-h3-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.75rem (28px)" } + }, + "font-size-h4": { + "name": "font-size-h4", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "font-size-h4-tablet": { + "name": "font-size-h4-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "font-size-h5": { + "name": "font-size-h5", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.25rem (20px)" } + }, + "font-size-h5-tablet": { + "name": "font-size-h5-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.25rem (20px)" } + }, + "font-size-h6": { + "name": "font-size-h6", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.125rem (18px)" } + }, + "font-size-h6-tablet": { + "name": "font-size-h6-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.125rem (18px)" } + }, + "font-size-lg": { + "name": "font-size-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.125rem (18px)" } + }, + "font-size-lg-tablet": { + "name": "font-size-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.125rem (18px)" } + }, + "font-size-md": { + "name": "font-size-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "font-size-md-tablet": { + "name": "font-size-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "font-size-sm": { + "name": "font-size-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".875rem (14px)" } + }, + "font-size-sm-tablet": { + "name": "font-size-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".875rem (14px)" } + }, + "font-size-xl": { + "name": "font-size-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.25rem (20px)" } + }, + "font-size-xl-tablet": { + "name": "font-size-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.25rem (20px)" } + }, + "font-size-xs": { + "name": "font-size-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".75rem (12px)" } + }, + "font-size-xs-tablet": { + "name": "font-size-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".75rem (12px)" } + }, + "font-size-xxl": { + "name": "font-size-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "font-style-italic": { + "name": "font-style-italic", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-weight-bold": { + "name": "font-weight-bold", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-weight-light": { + "name": "font-weight-light", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-weight-normal": { + "name": "font-weight-normal", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-weight-semibold": { + "name": "font-weight-semibold", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "font-weight-semilight": { + "name": "font-weight-semilight", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gap-lg": { + "name": "gap-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "gap-lg-desktop": { + "name": "gap-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "gap-lg-tablet": { + "name": "gap-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "gap-lg-widescreen": { + "name": "gap-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "gap-md": { + "name": "gap-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "gap-md-desktop": { + "name": "gap-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "gap-md-tablet": { + "name": "gap-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "gap-md-widescreen": { + "name": "gap-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "gap-none": { + "name": "gap-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gap-none-desktop": { + "name": "gap-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gap-none-tablet": { + "name": "gap-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gap-none-widescreen": { + "name": "gap-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gap-sm": { + "name": "gap-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "gap-sm-desktop": { + "name": "gap-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "gap-sm-tablet": { + "name": "gap-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "gap-sm-widescreen": { + "name": "gap-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "gap-xs": { + "name": "gap-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "gap-xs-desktop": { + "name": "gap-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "gap-xs-tablet": { + "name": "gap-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "gap-xs-widescreen": { + "name": "gap-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "gap-xxs": { + "name": "gap-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "gap-xxs-desktop": { + "name": "gap-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "gap-xxs-tablet": { + "name": "gap-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "gap-xxs-widescreen": { + "name": "gap-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "gradient-border-body": { + "name": "gradient-border-body", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-border-body-accent": { + "name": "gradient-border-body-accent", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-border-bottom": { + "name": "gradient-border-bottom", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-border-right": { + "name": "gradient-border-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-border-to-bottom-tablet": { + "name": "gradient-border-to-bottom-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-border-to-right-tablet": { + "name": "gradient-border-to-right-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-card": { + "name": "gradient-card", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-card-content": { + "name": "gradient-card-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-text-purple-blue": { + "name": "gradient-text-purple-blue", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "gradient-text-vivid": { + "name": "gradient-text-vivid", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "has-default-focus": { + "name": "has-default-focus", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "has-inner-focus": { + "name": "has-inner-focus", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "height-full": { + "name": "height-full", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "help": { + "name": "help", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "help-danger": { + "name": "help-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "help-success": { + "name": "help-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero": { + "name": "hero", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-background": { + "name": "hero-background", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-card": { + "name": "hero-card", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-content": { + "name": "hero-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-details": { + "name": "hero-details", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-details-card": { + "name": "hero-details-card", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-image": { + "name": "hero-image", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-lg": { + "name": "hero-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-sm": { + "name": "hero-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "hero-xs": { + "name": "hero-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "icon": { + "name": "icon", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "icon-rounded": { + "name": "icon-rounded", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image": { + "name": "image", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-112x112": { + "name": "image-112x112", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-112x112-desktop": { + "name": "image-112x112-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-112x112-tablet": { + "name": "image-112x112-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-128x128": { + "name": "image-128x128", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-128x128-desktop": { + "name": "image-128x128-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-128x128-tablet": { + "name": "image-128x128-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-16x16": { + "name": "image-16x16", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-16x16-desktop": { + "name": "image-16x16-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-16x16-tablet": { + "name": "image-16x16-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-24x24": { + "name": "image-24x24", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-24x24-desktop": { + "name": "image-24x24-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-24x24-tablet": { + "name": "image-24x24-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-32x32": { + "name": "image-32x32", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-32x32-desktop": { + "name": "image-32x32-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-32x32-tablet": { + "name": "image-32x32-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-36x36": { + "name": "image-36x36", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-36x36-desktop": { + "name": "image-36x36-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-36x36-tablet": { + "name": "image-36x36-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-48x48": { + "name": "image-48x48", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-48x48-desktop": { + "name": "image-48x48-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-48x48-tablet": { + "name": "image-48x48-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-64x64": { + "name": "image-64x64", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-64x64-desktop": { + "name": "image-64x64-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-64x64-tablet": { + "name": "image-64x64-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-76x76": { + "name": "image-76x76", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-76x76-desktop": { + "name": "image-76x76-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-76x76-tablet": { + "name": "image-76x76-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-88x88": { + "name": "image-88x88", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-88x88-desktop": { + "name": "image-88x88-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-88x88-tablet": { + "name": "image-88x88-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-96x96": { + "name": "image-96x96", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-96x96-desktop": { + "name": "image-96x96-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-96x96-tablet": { + "name": "image-96x96-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "image-fullwidth": { + "name": "image-fullwidth", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "inner-focus": { + "name": "inner-focus", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input": { + "name": "input", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input-danger": { + "name": "input-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input-icon": { + "name": "input-icon", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input-icon-right": { + "name": "input-icon-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input-lg": { + "name": "input-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input-sm": { + "name": "input-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "input-success": { + "name": "input-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-active": { + "name": "is-active", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-checked": { + "name": "is-checked", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-current": { + "name": "is-current", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-disabled": { + "name": "is-disabled", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-expanded": { + "name": "is-expanded", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-focused": { + "name": "is-focused", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-full-width": { + "name": "is-full-width", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-full-width-mobile": { + "name": "is-full-width-mobile", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-fullwidth": { + "name": "is-fullwidth", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-fullwidth-mobile": { + "name": "is-fullwidth-mobile", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-hovered": { + "name": "is-hovered", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-invalid": { + "name": "is-invalid", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-loading": { + "name": "is-loading", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "is-selected": { + "name": "is-selected", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-center": { + "name": "justify-content-center", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-center-tablet": { + "name": "justify-content-center-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-flex-end": { + "name": "justify-content-flex-end", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-flex-end-tablet": { + "name": "justify-content-flex-end-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-flex-start": { + "name": "justify-content-flex-start", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-flex-start-tablet": { + "name": "justify-content-flex-start-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-space-around": { + "name": "justify-content-space-around", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-space-around-tablet": { + "name": "justify-content-space-around-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-space-between": { + "name": "justify-content-space-between", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-space-between-tablet": { + "name": "justify-content-space-between-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-space-evenly": { + "name": "justify-content-space-evenly", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "justify-content-space-evenly-tablet": { + "name": "justify-content-space-evenly-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "label": { + "name": "label", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout": { + "name": "layout", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body": { + "name": "layout-body", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-aside": { + "name": "layout-body-aside", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-flyout": { + "name": "layout-body-flyout", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-footer": { + "name": "layout-body-footer", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-header": { + "name": "layout-body-header", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-hero": { + "name": "layout-body-hero", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-main": { + "name": "layout-body-main", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-body-menu": { + "name": "layout-body-menu", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-constrained": { + "name": "layout-constrained", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-flyout-active": { + "name": "layout-flyout-active", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-holy-grail": { + "name": "layout-holy-grail", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-margin": { + "name": "layout-margin", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-margin-tablet": { + "name": "layout-margin-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-padding": { + "name": "layout-padding", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-padding-tablet": { + "name": "layout-padding-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-sidecar-left": { + "name": "layout-sidecar-left", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-sidecar-right": { + "name": "layout-sidecar-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-single": { + "name": "layout-single", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "layout-twin": { + "name": "layout-twin", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "left-0": { + "name": "left-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "letter-spacing-wide": { + "name": "letter-spacing-wide", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "line-clamp-1": { + "name": "line-clamp-1", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "line-clamp-2": { + "name": "line-clamp-2", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "line-clamp-3": { + "name": "line-clamp-3", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "line-clamp-4": { + "name": "line-clamp-4", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "line-height-normal": { + "name": "line-height-normal", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "link-button": { + "name": "link-button", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "list-style-none": { + "name": "list-style-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-block-lg": { + "name": "margin-block-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-block-lg-desktop": { + "name": "margin-block-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-block-lg-tablet": { + "name": "margin-block-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-block-lg-widescreen": { + "name": "margin-block-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-block-md": { + "name": "margin-block-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-block-md-desktop": { + "name": "margin-block-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-block-md-tablet": { + "name": "margin-block-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-block-md-widescreen": { + "name": "margin-block-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-block-none": { + "name": "margin-block-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-block-none-desktop": { + "name": "margin-block-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-block-none-tablet": { + "name": "margin-block-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-block-none-widescreen": { + "name": "margin-block-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-block-sm": { + "name": "margin-block-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-block-sm-desktop": { + "name": "margin-block-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-block-sm-tablet": { + "name": "margin-block-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-block-sm-widescreen": { + "name": "margin-block-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-block-xl": { + "name": "margin-block-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-block-xl-desktop": { + "name": "margin-block-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-block-xl-tablet": { + "name": "margin-block-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-block-xl-widescreen": { + "name": "margin-block-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-block-xs": { + "name": "margin-block-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-block-xs-desktop": { + "name": "margin-block-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-block-xs-tablet": { + "name": "margin-block-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-block-xs-widescreen": { + "name": "margin-block-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-block-xxl": { + "name": "margin-block-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-block-xxl-desktop": { + "name": "margin-block-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-block-xxl-tablet": { + "name": "margin-block-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-block-xxl-widescreen": { + "name": "margin-block-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-block-xxs": { + "name": "margin-block-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-block-xxs-desktop": { + "name": "margin-block-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-block-xxs-tablet": { + "name": "margin-block-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-block-xxs-widescreen": { + "name": "margin-block-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-block-xxxl": { + "name": "margin-block-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-block-xxxl-desktop": { + "name": "margin-block-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-block-xxxl-tablet": { + "name": "margin-block-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-block-xxxl-widescreen": { + "name": "margin-block-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-bottom-lg": { + "name": "margin-bottom-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-lg-desktop": { + "name": "margin-bottom-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-lg-tablet": { + "name": "margin-bottom-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-lg-widescreen": { + "name": "margin-bottom-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-md": { + "name": "margin-bottom-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-md-desktop": { + "name": "margin-bottom-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-md-tablet": { + "name": "margin-bottom-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-md-widescreen": { + "name": "margin-bottom-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-none": { + "name": "margin-bottom-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-none-desktop": { + "name": "margin-bottom-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-none-tablet": { + "name": "margin-bottom-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-none-widescreen": { + "name": "margin-bottom-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-sm": { + "name": "margin-bottom-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-sm-desktop": { + "name": "margin-bottom-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-sm-tablet": { + "name": "margin-bottom-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-sm-widescreen": { + "name": "margin-bottom-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xl": { + "name": "margin-bottom-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xl-desktop": { + "name": "margin-bottom-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xl-tablet": { + "name": "margin-bottom-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xl-widescreen": { + "name": "margin-bottom-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xs": { + "name": "margin-bottom-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xs-desktop": { + "name": "margin-bottom-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xs-tablet": { + "name": "margin-bottom-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xs-widescreen": { + "name": "margin-bottom-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxl": { + "name": "margin-bottom-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxl-desktop": { + "name": "margin-bottom-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxl-tablet": { + "name": "margin-bottom-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxl-widescreen": { + "name": "margin-bottom-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxs": { + "name": "margin-bottom-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxs-desktop": { + "name": "margin-bottom-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxs-tablet": { + "name": "margin-bottom-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxs-widescreen": { + "name": "margin-bottom-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxxl": { + "name": "margin-bottom-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxxl-desktop": { + "name": "margin-bottom-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxxl-tablet": { + "name": "margin-bottom-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-bottom-xxxl-widescreen": { + "name": "margin-bottom-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-auto": { + "name": "margin-inline-auto", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-auto-desktop": { + "name": "margin-inline-auto-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-auto-tablet": { + "name": "margin-inline-auto-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-auto-widescreen": { + "name": "margin-inline-auto-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-lg": { + "name": "margin-inline-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-inline-lg-desktop": { + "name": "margin-inline-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-inline-lg-tablet": { + "name": "margin-inline-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-inline-lg-widescreen": { + "name": "margin-inline-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-inline-md": { + "name": "margin-inline-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-inline-md-desktop": { + "name": "margin-inline-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-inline-md-tablet": { + "name": "margin-inline-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-inline-md-widescreen": { + "name": "margin-inline-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-inline-none": { + "name": "margin-inline-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-none-desktop": { + "name": "margin-inline-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-none-tablet": { + "name": "margin-inline-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-none-widescreen": { + "name": "margin-inline-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-inline-sm": { + "name": "margin-inline-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-inline-sm-desktop": { + "name": "margin-inline-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-inline-sm-tablet": { + "name": "margin-inline-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-inline-sm-widescreen": { + "name": "margin-inline-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-inline-xl": { + "name": "margin-inline-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-inline-xl-desktop": { + "name": "margin-inline-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-inline-xl-tablet": { + "name": "margin-inline-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-inline-xl-widescreen": { + "name": "margin-inline-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-inline-xs": { + "name": "margin-inline-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-inline-xs-desktop": { + "name": "margin-inline-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-inline-xs-tablet": { + "name": "margin-inline-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-inline-xs-widescreen": { + "name": "margin-inline-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-inline-xxl": { + "name": "margin-inline-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-inline-xxl-desktop": { + "name": "margin-inline-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-inline-xxl-tablet": { + "name": "margin-inline-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-inline-xxl-widescreen": { + "name": "margin-inline-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-inline-xxs": { + "name": "margin-inline-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-inline-xxs-desktop": { + "name": "margin-inline-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-inline-xxs-tablet": { + "name": "margin-inline-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-inline-xxs-widescreen": { + "name": "margin-inline-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-inline-xxxl": { + "name": "margin-inline-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-inline-xxxl-desktop": { + "name": "margin-inline-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-inline-xxxl-tablet": { + "name": "margin-inline-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-inline-xxxl-widescreen": { + "name": "margin-inline-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-left-auto": { + "name": "margin-left-auto", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-auto-desktop": { + "name": "margin-left-auto-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-auto-tablet": { + "name": "margin-left-auto-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-auto-widescreen": { + "name": "margin-left-auto-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-lg": { + "name": "margin-left-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-lg-desktop": { + "name": "margin-left-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-lg-tablet": { + "name": "margin-left-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-lg-widescreen": { + "name": "margin-left-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-md": { + "name": "margin-left-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-md-desktop": { + "name": "margin-left-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-md-tablet": { + "name": "margin-left-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-md-widescreen": { + "name": "margin-left-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-none": { + "name": "margin-left-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-none-desktop": { + "name": "margin-left-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-none-tablet": { + "name": "margin-left-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-none-widescreen": { + "name": "margin-left-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-sm": { + "name": "margin-left-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-sm-desktop": { + "name": "margin-left-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-sm-tablet": { + "name": "margin-left-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-sm-widescreen": { + "name": "margin-left-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xl": { + "name": "margin-left-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xl-desktop": { + "name": "margin-left-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xl-tablet": { + "name": "margin-left-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xl-widescreen": { + "name": "margin-left-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xs": { + "name": "margin-left-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xs-desktop": { + "name": "margin-left-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xs-tablet": { + "name": "margin-left-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xs-widescreen": { + "name": "margin-left-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxl": { + "name": "margin-left-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxl-desktop": { + "name": "margin-left-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxl-tablet": { + "name": "margin-left-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxl-widescreen": { + "name": "margin-left-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxs": { + "name": "margin-left-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxs-desktop": { + "name": "margin-left-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxs-tablet": { + "name": "margin-left-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxs-widescreen": { + "name": "margin-left-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxxl": { + "name": "margin-left-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxxl-desktop": { + "name": "margin-left-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxxl-tablet": { + "name": "margin-left-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-left-xxxl-widescreen": { + "name": "margin-left-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-lg": { + "name": "margin-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-lg-desktop": { + "name": "margin-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-lg-tablet": { + "name": "margin-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-lg-widescreen": { + "name": "margin-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "margin-md": { + "name": "margin-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-md-desktop": { + "name": "margin-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-md-tablet": { + "name": "margin-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-md-widescreen": { + "name": "margin-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "margin-none": { + "name": "margin-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-none-desktop": { + "name": "margin-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-none-tablet": { + "name": "margin-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-none-widescreen": { + "name": "margin-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-auto": { + "name": "margin-right-auto", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-auto-desktop": { + "name": "margin-right-auto-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-auto-tablet": { + "name": "margin-right-auto-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-auto-widescreen": { + "name": "margin-right-auto-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-lg": { + "name": "margin-right-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-lg-desktop": { + "name": "margin-right-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-lg-tablet": { + "name": "margin-right-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-lg-widescreen": { + "name": "margin-right-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-md": { + "name": "margin-right-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-md-desktop": { + "name": "margin-right-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-md-tablet": { + "name": "margin-right-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-md-widescreen": { + "name": "margin-right-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-none": { + "name": "margin-right-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-none-desktop": { + "name": "margin-right-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-none-tablet": { + "name": "margin-right-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-none-widescreen": { + "name": "margin-right-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-sm": { + "name": "margin-right-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-sm-desktop": { + "name": "margin-right-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-sm-tablet": { + "name": "margin-right-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-sm-widescreen": { + "name": "margin-right-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xl": { + "name": "margin-right-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xl-desktop": { + "name": "margin-right-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xl-tablet": { + "name": "margin-right-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xl-widescreen": { + "name": "margin-right-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xs": { + "name": "margin-right-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xs-desktop": { + "name": "margin-right-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xs-tablet": { + "name": "margin-right-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xs-widescreen": { + "name": "margin-right-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxl": { + "name": "margin-right-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxl-desktop": { + "name": "margin-right-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxl-tablet": { + "name": "margin-right-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxl-widescreen": { + "name": "margin-right-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxs": { + "name": "margin-right-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxs-desktop": { + "name": "margin-right-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxs-tablet": { + "name": "margin-right-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxs-widescreen": { + "name": "margin-right-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxxl": { + "name": "margin-right-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxxl-desktop": { + "name": "margin-right-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxxl-tablet": { + "name": "margin-right-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-right-xxxl-widescreen": { + "name": "margin-right-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-sm": { + "name": "margin-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-sm-desktop": { + "name": "margin-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-sm-tablet": { + "name": "margin-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-sm-widescreen": { + "name": "margin-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "margin-top-auto": { + "name": "margin-top-auto", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-auto-desktop": { + "name": "margin-top-auto-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-auto-tablet": { + "name": "margin-top-auto-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-auto-widescreen": { + "name": "margin-top-auto-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-lg": { + "name": "margin-top-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-lg-desktop": { + "name": "margin-top-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-lg-tablet": { + "name": "margin-top-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-lg-widescreen": { + "name": "margin-top-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-md": { + "name": "margin-top-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-md-desktop": { + "name": "margin-top-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-md-tablet": { + "name": "margin-top-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-md-widescreen": { + "name": "margin-top-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-none": { + "name": "margin-top-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-none-desktop": { + "name": "margin-top-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-none-tablet": { + "name": "margin-top-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-none-widescreen": { + "name": "margin-top-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-sm": { + "name": "margin-top-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-sm-desktop": { + "name": "margin-top-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-sm-tablet": { + "name": "margin-top-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-sm-widescreen": { + "name": "margin-top-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xl": { + "name": "margin-top-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xl-desktop": { + "name": "margin-top-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xl-tablet": { + "name": "margin-top-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xl-widescreen": { + "name": "margin-top-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xs": { + "name": "margin-top-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xs-desktop": { + "name": "margin-top-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xs-tablet": { + "name": "margin-top-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xs-widescreen": { + "name": "margin-top-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxl": { + "name": "margin-top-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxl-desktop": { + "name": "margin-top-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxl-tablet": { + "name": "margin-top-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxl-widescreen": { + "name": "margin-top-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxs": { + "name": "margin-top-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxs-desktop": { + "name": "margin-top-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxs-tablet": { + "name": "margin-top-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxs-widescreen": { + "name": "margin-top-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxxl": { + "name": "margin-top-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxxl-desktop": { + "name": "margin-top-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxxl-tablet": { + "name": "margin-top-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-top-xxxl-widescreen": { + "name": "margin-top-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "margin-xl": { + "name": "margin-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-xl-desktop": { + "name": "margin-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-xl-tablet": { + "name": "margin-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-xl-widescreen": { + "name": "margin-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "margin-xs": { + "name": "margin-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-xs-desktop": { + "name": "margin-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-xs-tablet": { + "name": "margin-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-xs-widescreen": { + "name": "margin-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "margin-xxl": { + "name": "margin-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-xxl-desktop": { + "name": "margin-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-xxl-tablet": { + "name": "margin-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-xxl-widescreen": { + "name": "margin-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "margin-xxs": { + "name": "margin-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-xxs-desktop": { + "name": "margin-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-xxs-tablet": { + "name": "margin-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-xxs-widescreen": { + "name": "margin-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "margin-xxxl": { + "name": "margin-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-xxxl-desktop": { + "name": "margin-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-xxxl-tablet": { + "name": "margin-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "margin-xxxl-widescreen": { + "name": "margin-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "markdown": { + "name": "markdown", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "media": { + "name": "media", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "media-content": { + "name": "media-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "media-left": { + "name": "media-left", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message": { + "name": "message", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-content": { + "name": "message-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-content-header": { + "name": "message-content-header", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-content-options": { + "name": "message-content-options", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-persona": { + "name": "message-persona", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-sender": { + "name": "message-sender", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-sm": { + "name": "message-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "message-time": { + "name": "message-time", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification": { + "name": "notification", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-content": { + "name": "notification-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-danger": { + "name": "notification-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-dismiss": { + "name": "notification-dismiss", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-info": { + "name": "notification-info", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-primary": { + "name": "notification-primary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-secondary": { + "name": "notification-secondary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-success": { + "name": "notification-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-tertiary": { + "name": "notification-tertiary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-title": { + "name": "notification-title", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "notification-warning": { + "name": "notification-warning", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "object-fit-contain": { + "name": "object-fit-contain", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "object-fit-cover": { + "name": "object-fit-cover", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "object-fit-fill": { + "name": "object-fit-fill", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "object-position-top": { + "name": "object-position-top", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "outline-color-text": { + "name": "outline-color-text", + "color": { + "isValid": true, + "detailType": "themed", + "universal": "", + "light": "#161616", + "dark": "#fff", + "high-contrast": "#fff" + }, + "size": { "isValid": false, "value": "" } + }, + "overflow-hidden": { + "name": "overflow-hidden", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "overflow-hidden-tablet": { + "name": "overflow-hidden-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "overflow-x-hidden": { + "name": "overflow-x-hidden", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "overflow-x-hidden-tablet": { + "name": "overflow-x-hidden-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-block-lg": { + "name": "padding-block-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-block-lg-desktop": { + "name": "padding-block-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-block-lg-tablet": { + "name": "padding-block-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-block-lg-widescreen": { + "name": "padding-block-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-block-md": { + "name": "padding-block-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-block-md-desktop": { + "name": "padding-block-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-block-md-tablet": { + "name": "padding-block-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-block-md-widescreen": { + "name": "padding-block-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-block-none": { + "name": "padding-block-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-block-none-desktop": { + "name": "padding-block-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-block-none-tablet": { + "name": "padding-block-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-block-none-widescreen": { + "name": "padding-block-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-block-sm": { + "name": "padding-block-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-block-sm-desktop": { + "name": "padding-block-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-block-sm-tablet": { + "name": "padding-block-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-block-sm-widescreen": { + "name": "padding-block-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-block-xl": { + "name": "padding-block-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-block-xl-desktop": { + "name": "padding-block-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-block-xl-tablet": { + "name": "padding-block-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-block-xl-widescreen": { + "name": "padding-block-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-block-xs": { + "name": "padding-block-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-block-xs-desktop": { + "name": "padding-block-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-block-xs-tablet": { + "name": "padding-block-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-block-xs-widescreen": { + "name": "padding-block-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-block-xxl": { + "name": "padding-block-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-block-xxl-desktop": { + "name": "padding-block-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-block-xxl-tablet": { + "name": "padding-block-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-block-xxl-widescreen": { + "name": "padding-block-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-block-xxs": { + "name": "padding-block-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-block-xxs-desktop": { + "name": "padding-block-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-block-xxs-tablet": { + "name": "padding-block-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-block-xxs-widescreen": { + "name": "padding-block-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-block-xxxl": { + "name": "padding-block-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-block-xxxl-desktop": { + "name": "padding-block-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-block-xxxl-tablet": { + "name": "padding-block-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-block-xxxl-widescreen": { + "name": "padding-block-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-bottom-lg": { + "name": "padding-bottom-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-lg-desktop": { + "name": "padding-bottom-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-lg-tablet": { + "name": "padding-bottom-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-lg-widescreen": { + "name": "padding-bottom-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-md": { + "name": "padding-bottom-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-md-desktop": { + "name": "padding-bottom-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-md-tablet": { + "name": "padding-bottom-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-md-widescreen": { + "name": "padding-bottom-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-none": { + "name": "padding-bottom-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-none-desktop": { + "name": "padding-bottom-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-none-tablet": { + "name": "padding-bottom-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-none-widescreen": { + "name": "padding-bottom-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-sm": { + "name": "padding-bottom-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-sm-desktop": { + "name": "padding-bottom-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-sm-tablet": { + "name": "padding-bottom-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-sm-widescreen": { + "name": "padding-bottom-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xl": { + "name": "padding-bottom-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xl-desktop": { + "name": "padding-bottom-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xl-tablet": { + "name": "padding-bottom-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xl-widescreen": { + "name": "padding-bottom-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xs": { + "name": "padding-bottom-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xs-desktop": { + "name": "padding-bottom-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xs-tablet": { + "name": "padding-bottom-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xs-widescreen": { + "name": "padding-bottom-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxl": { + "name": "padding-bottom-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxl-desktop": { + "name": "padding-bottom-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxl-tablet": { + "name": "padding-bottom-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxl-widescreen": { + "name": "padding-bottom-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxs": { + "name": "padding-bottom-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxs-desktop": { + "name": "padding-bottom-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxs-tablet": { + "name": "padding-bottom-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxs-widescreen": { + "name": "padding-bottom-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxxl": { + "name": "padding-bottom-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxxl-desktop": { + "name": "padding-bottom-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxxl-tablet": { + "name": "padding-bottom-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-bottom-xxxl-widescreen": { + "name": "padding-bottom-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-inline-lg": { + "name": "padding-inline-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-inline-lg-desktop": { + "name": "padding-inline-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-inline-lg-tablet": { + "name": "padding-inline-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-inline-lg-widescreen": { + "name": "padding-inline-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-inline-md": { + "name": "padding-inline-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-inline-md-desktop": { + "name": "padding-inline-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-inline-md-tablet": { + "name": "padding-inline-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-inline-md-widescreen": { + "name": "padding-inline-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-inline-none": { + "name": "padding-inline-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-inline-none-desktop": { + "name": "padding-inline-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-inline-none-tablet": { + "name": "padding-inline-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-inline-none-widescreen": { + "name": "padding-inline-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-inline-sm": { + "name": "padding-inline-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-inline-sm-desktop": { + "name": "padding-inline-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-inline-sm-tablet": { + "name": "padding-inline-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-inline-sm-widescreen": { + "name": "padding-inline-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-inline-xl": { + "name": "padding-inline-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-inline-xl-desktop": { + "name": "padding-inline-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-inline-xl-tablet": { + "name": "padding-inline-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-inline-xl-widescreen": { + "name": "padding-inline-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-inline-xs": { + "name": "padding-inline-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-inline-xs-desktop": { + "name": "padding-inline-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-inline-xs-tablet": { + "name": "padding-inline-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-inline-xs-widescreen": { + "name": "padding-inline-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-inline-xxl": { + "name": "padding-inline-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-inline-xxl-desktop": { + "name": "padding-inline-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-inline-xxl-tablet": { + "name": "padding-inline-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-inline-xxl-widescreen": { + "name": "padding-inline-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-inline-xxs": { + "name": "padding-inline-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-inline-xxs-desktop": { + "name": "padding-inline-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-inline-xxs-tablet": { + "name": "padding-inline-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-inline-xxs-widescreen": { + "name": "padding-inline-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-inline-xxxl": { + "name": "padding-inline-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-inline-xxxl-desktop": { + "name": "padding-inline-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-inline-xxxl-tablet": { + "name": "padding-inline-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-inline-xxxl-widescreen": { + "name": "padding-inline-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-left-lg": { + "name": "padding-left-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-lg-desktop": { + "name": "padding-left-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-lg-tablet": { + "name": "padding-left-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-lg-widescreen": { + "name": "padding-left-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-md": { + "name": "padding-left-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-md-desktop": { + "name": "padding-left-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-md-tablet": { + "name": "padding-left-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-md-widescreen": { + "name": "padding-left-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-none": { + "name": "padding-left-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-none-desktop": { + "name": "padding-left-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-none-tablet": { + "name": "padding-left-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-none-widescreen": { + "name": "padding-left-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-sm": { + "name": "padding-left-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-sm-desktop": { + "name": "padding-left-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-sm-tablet": { + "name": "padding-left-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-sm-widescreen": { + "name": "padding-left-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xl": { + "name": "padding-left-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xl-desktop": { + "name": "padding-left-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xl-tablet": { + "name": "padding-left-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xl-widescreen": { + "name": "padding-left-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xs": { + "name": "padding-left-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xs-desktop": { + "name": "padding-left-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xs-tablet": { + "name": "padding-left-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xs-widescreen": { + "name": "padding-left-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxl": { + "name": "padding-left-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxl-desktop": { + "name": "padding-left-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxl-tablet": { + "name": "padding-left-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxl-widescreen": { + "name": "padding-left-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxs": { + "name": "padding-left-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxs-desktop": { + "name": "padding-left-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxs-tablet": { + "name": "padding-left-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxs-widescreen": { + "name": "padding-left-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxxl": { + "name": "padding-left-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxxl-desktop": { + "name": "padding-left-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxxl-tablet": { + "name": "padding-left-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-left-xxxl-widescreen": { + "name": "padding-left-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-lg": { + "name": "padding-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-lg-desktop": { + "name": "padding-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-lg-tablet": { + "name": "padding-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-lg-widescreen": { + "name": "padding-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "3rem (48px)" } + }, + "padding-md": { + "name": "padding-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-md-desktop": { + "name": "padding-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-md-tablet": { + "name": "padding-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-md-widescreen": { + "name": "padding-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "2rem (32px)" } + }, + "padding-none": { + "name": "padding-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-none-desktop": { + "name": "padding-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-none-tablet": { + "name": "padding-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-none-widescreen": { + "name": "padding-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-lg": { + "name": "padding-right-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-lg-desktop": { + "name": "padding-right-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-lg-tablet": { + "name": "padding-right-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-lg-widescreen": { + "name": "padding-right-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-md": { + "name": "padding-right-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-md-desktop": { + "name": "padding-right-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-md-tablet": { + "name": "padding-right-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-md-widescreen": { + "name": "padding-right-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-none": { + "name": "padding-right-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-none-desktop": { + "name": "padding-right-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-none-tablet": { + "name": "padding-right-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-none-widescreen": { + "name": "padding-right-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-sm": { + "name": "padding-right-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-sm-desktop": { + "name": "padding-right-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-sm-tablet": { + "name": "padding-right-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-sm-widescreen": { + "name": "padding-right-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xl": { + "name": "padding-right-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xl-desktop": { + "name": "padding-right-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xl-tablet": { + "name": "padding-right-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xl-widescreen": { + "name": "padding-right-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xs": { + "name": "padding-right-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xs-desktop": { + "name": "padding-right-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xs-tablet": { + "name": "padding-right-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xs-widescreen": { + "name": "padding-right-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxl": { + "name": "padding-right-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxl-desktop": { + "name": "padding-right-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxl-tablet": { + "name": "padding-right-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxl-widescreen": { + "name": "padding-right-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxs": { + "name": "padding-right-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxs-desktop": { + "name": "padding-right-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxs-tablet": { + "name": "padding-right-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxs-widescreen": { + "name": "padding-right-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxxl": { + "name": "padding-right-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxxl-desktop": { + "name": "padding-right-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxxl-tablet": { + "name": "padding-right-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-right-xxxl-widescreen": { + "name": "padding-right-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-sm": { + "name": "padding-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-sm-desktop": { + "name": "padding-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-sm-tablet": { + "name": "padding-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-sm-widescreen": { + "name": "padding-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1.5rem (24px)" } + }, + "padding-top-lg": { + "name": "padding-top-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-lg-desktop": { + "name": "padding-top-lg-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-lg-tablet": { + "name": "padding-top-lg-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-lg-widescreen": { + "name": "padding-top-lg-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-md": { + "name": "padding-top-md", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-md-desktop": { + "name": "padding-top-md-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-md-tablet": { + "name": "padding-top-md-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-md-widescreen": { + "name": "padding-top-md-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-none": { + "name": "padding-top-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-none-desktop": { + "name": "padding-top-none-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-none-tablet": { + "name": "padding-top-none-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-none-widescreen": { + "name": "padding-top-none-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-sm": { + "name": "padding-top-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-sm-desktop": { + "name": "padding-top-sm-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-sm-tablet": { + "name": "padding-top-sm-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-sm-widescreen": { + "name": "padding-top-sm-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xl": { + "name": "padding-top-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xl-desktop": { + "name": "padding-top-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xl-tablet": { + "name": "padding-top-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xl-widescreen": { + "name": "padding-top-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xs": { + "name": "padding-top-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xs-desktop": { + "name": "padding-top-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xs-tablet": { + "name": "padding-top-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xs-widescreen": { + "name": "padding-top-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxl": { + "name": "padding-top-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxl-desktop": { + "name": "padding-top-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxl-tablet": { + "name": "padding-top-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxl-widescreen": { + "name": "padding-top-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxs": { + "name": "padding-top-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxs-desktop": { + "name": "padding-top-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxs-tablet": { + "name": "padding-top-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxs-widescreen": { + "name": "padding-top-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxxl": { + "name": "padding-top-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxxl-desktop": { + "name": "padding-top-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxxl-tablet": { + "name": "padding-top-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-top-xxxl-widescreen": { + "name": "padding-top-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "padding-xl": { + "name": "padding-xl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-xl-desktop": { + "name": "padding-xl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-xl-tablet": { + "name": "padding-xl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-xl-widescreen": { + "name": "padding-xl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "4rem (64px)" } + }, + "padding-xs": { + "name": "padding-xs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-xs-desktop": { + "name": "padding-xs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-xs-tablet": { + "name": "padding-xs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-xs-widescreen": { + "name": "padding-xs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "1rem (16px)" } + }, + "padding-xxl": { + "name": "padding-xxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-xxl-desktop": { + "name": "padding-xxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-xxl-tablet": { + "name": "padding-xxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-xxl-widescreen": { + "name": "padding-xxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "6rem (96px)" } + }, + "padding-xxs": { + "name": "padding-xxs", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-xxs-desktop": { + "name": "padding-xxs-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-xxs-tablet": { + "name": "padding-xxs-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-xxs-widescreen": { + "name": "padding-xxs-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": ".5rem (8px)" } + }, + "padding-xxxl": { + "name": "padding-xxxl", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-xxxl-desktop": { + "name": "padding-xxxl-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-xxxl-tablet": { + "name": "padding-xxxl-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "padding-xxxl-widescreen": { + "name": "padding-xxxl-widescreen", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": true, "value": "8rem (128px)" } + }, + "pagination": { + "name": "pagination", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "pagination-center": { + "name": "pagination-center", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "pagination-ellipsis": { + "name": "pagination-ellipsis", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "pagination-link": { + "name": "pagination-link", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "pagination-list": { + "name": "pagination-list", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "pagination-next": { + "name": "pagination-next", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "pagination-previous": { + "name": "pagination-previous", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "persona": { + "name": "persona", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "persona-avatar": { + "name": "persona-avatar", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "persona-details": { + "name": "persona-details", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "persona-lg": { + "name": "persona-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "persona-name": { + "name": "persona-name", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "persona-sm": { + "name": "persona-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "popover": { + "name": "popover", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "popover-caret": { + "name": "popover-caret", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "popover-caret-bottom": { + "name": "popover-caret-bottom", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "popover-content": { + "name": "popover-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "popover-top": { + "name": "popover-top", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-absolute": { + "name": "position-absolute", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-absolute-tablet": { + "name": "position-absolute-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-fixed": { + "name": "position-fixed", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-fixed-tablet": { + "name": "position-fixed-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-relative": { + "name": "position-relative", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-relative-tablet": { + "name": "position-relative-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-sticky": { + "name": "position-sticky", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "position-sticky-tablet": { + "name": "position-sticky-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "progress-bar": { + "name": "progress-bar", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "progress-bar-danger": { + "name": "progress-bar-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "progress-bar-sm": { + "name": "progress-bar-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "progress-bar-success": { + "name": "progress-bar-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "progress-bar-warning": { + "name": "progress-bar-warning", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "radio": { + "name": "radio", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "radio-dot": { + "name": "radio-dot", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "radio-label-text": { + "name": "radio-label-text", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "required-indicator": { + "name": "required-indicator", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "right-0": { + "name": "right-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "scroll-horizontal": { + "name": "scroll-horizontal", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "scroll-snap-container": { + "name": "scroll-snap-container", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "scroll-snap-item": { + "name": "scroll-snap-item", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "scroll-vertical": { + "name": "scroll-vertical", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "scrollbar-gutter-stable": { + "name": "scrollbar-gutter-stable", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "scrollbar-gutter-stable-both-edges": { + "name": "scrollbar-gutter-stable-both-edges", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-control": { + "name": "segmented-control", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-control-list": { + "name": "segmented-control-list", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-control-next": { + "name": "segmented-control-next", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-control-previous": { + "name": "segmented-control-previous", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-controls": { + "name": "segmented-controls", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-next": { + "name": "segmented-next", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "segmented-previous": { + "name": "segmented-previous", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select": { + "name": "select", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select-danger": { + "name": "select-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select-disabled": { + "name": "select-disabled", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select-lg": { + "name": "select-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select-multiple": { + "name": "select-multiple", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select-sm": { + "name": "select-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "select-success": { + "name": "select-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header": { + "name": "site-header", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-brand": { + "name": "site-header-brand", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-button": { + "name": "site-header-button", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-divider": { + "name": "site-header-divider", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-logo": { + "name": "site-header-logo", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-logo-centered": { + "name": "site-header-logo-centered", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-nav": { + "name": "site-header-nav", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-panel": { + "name": "site-header-panel", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-panel-cards": { + "name": "site-header-panel-cards", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-panel-content": { + "name": "site-header-panel-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-panel-featured-content": { + "name": "site-header-panel-featured-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "site-header-panel-links": { + "name": "site-header-panel-links", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "step": { + "name": "step", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "step-selected": { + "name": "step-selected", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "steps": { + "name": "steps", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "stretched-link": { + "name": "stretched-link", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "stroke-current-color": { + "name": "stroke-current-color", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table": { + "name": "table", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-borderless": { + "name": "table-borderless", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-complex": { + "name": "table-complex", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-lg": { + "name": "table-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-simple": { + "name": "table-simple", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-sm": { + "name": "table-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-stacked-mobile": { + "name": "table-stacked-mobile", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-striped": { + "name": "table-striped", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "table-wrapper": { + "name": "table-wrapper", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag": { + "name": "tag", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-close": { + "name": "tag-close", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-filled": { + "name": "tag-filled", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-interactive": { + "name": "tag-interactive", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-lg": { + "name": "tag-lg", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-popover": { + "name": "tag-popover", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-primary": { + "name": "tag-primary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-sm": { + "name": "tag-sm", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-suggestion": { + "name": "tag-suggestion", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "tag-summary": { + "name": "tag-summary", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-align-center": { + "name": "text-align-center", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-align-center-tablet": { + "name": "text-align-center-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-align-left": { + "name": "text-align-left", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-align-left-tablet": { + "name": "text-align-left-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-align-right": { + "name": "text-align-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-align-right-tablet": { + "name": "text-align-right-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-decoration-none": { + "name": "text-decoration-none", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-decoration-underline": { + "name": "text-decoration-underline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-transform-uppercase": { + "name": "text-transform-uppercase", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-wrap-balance": { + "name": "text-wrap-balance", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "text-wrap-pretty": { + "name": "text-wrap-pretty", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea": { + "name": "textarea", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-danger": { + "name": "textarea-danger", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-fixed-height": { + "name": "textarea-fixed-height", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-form": { + "name": "textarea-form", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-form-footer": { + "name": "textarea-form-footer", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-form-footer-divider": { + "name": "textarea-form-footer-divider", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-form-footer-left": { + "name": "textarea-form-footer-left", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-form-footer-right": { + "name": "textarea-form-footer-right", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-form-help": { + "name": "textarea-form-help", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "textarea-success": { + "name": "textarea-success", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "theme-dark": { + "name": "theme-dark", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "theme-high-contrast": { + "name": "theme-high-contrast", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "theme-light": { + "name": "theme-light", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline": { + "name": "timeline", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline-item": { + "name": "timeline-item", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline-item-badge": { + "name": "timeline-item-badge", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline-item-template": { + "name": "timeline-item-template", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline-item-template-description": { + "name": "timeline-item-template-description", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline-item-template-time": { + "name": "timeline-item-template-time", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "timeline-item-template-title": { + "name": "timeline-item-template-title", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "toggle": { + "name": "toggle", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "top-0": { + "name": "top-0", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "visually-hidden": { + "name": "visually-hidden", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "white-space-normal": { + "name": "white-space-normal", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "white-space-nowrap": { + "name": "white-space-nowrap", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "white-space-pre": { + "name": "white-space-pre", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "white-space-pre-wrap": { + "name": "white-space-pre-wrap", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-100": { + "name": "width-100", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-100-desktop": { + "name": "width-100-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-100-tablet": { + "name": "width-100-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-150": { + "name": "width-150", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-150-desktop": { + "name": "width-150-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-150-tablet": { + "name": "width-150-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-200": { + "name": "width-200", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-200-desktop": { + "name": "width-200-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-200-tablet": { + "name": "width-200-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-250": { + "name": "width-250", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-250-desktop": { + "name": "width-250-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-250-tablet": { + "name": "width-250-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-300": { + "name": "width-300", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-300-desktop": { + "name": "width-300-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-300-tablet": { + "name": "width-300-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-350": { + "name": "width-350", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-350-desktop": { + "name": "width-350-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-350-tablet": { + "name": "width-350-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-400-desktop": { + "name": "width-400-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-400-tablet": { + "name": "width-400-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-450-desktop": { + "name": "width-450-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-450-tablet": { + "name": "width-450-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-500-desktop": { + "name": "width-500-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-500-tablet": { + "name": "width-500-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-auto": { + "name": "width-auto", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-auto-desktop": { + "name": "width-auto-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-auto-tablet": { + "name": "width-auto-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-fit-content": { + "name": "width-fit-content", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-fit-content-desktop": { + "name": "width-fit-content-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-fit-content-tablet": { + "name": "width-fit-content-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-full": { + "name": "width-full", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-full-desktop": { + "name": "width-full-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-full-tablet": { + "name": "width-full-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-unset-desktop": { + "name": "width-unset-desktop", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + }, + "width-unset-tablet": { + "name": "width-unset-tablet", + "color": { + "isValid": false, + "detailType": "", + "universal": "", + "light": "", + "dark": "", + "high-contrast": "" + }, + "size": { "isValid": false, "value": "" } + } + }, + "tokens": { + "animation": { + "name": "animation", + "location": "/css/src/tokens/animation.scss", + "tokens": { + "$input-timing-function": "cubic-bezier(0.4, 0, 0.23, 1)", + "$input-transition-duration": "200ms", + "$nav-bar-transition-duration": "86ms" + } + }, + "border": { + "name": "border", + "location": "/css/src/tokens/border.scss", + "tokens": { + "$border-width": "1px", + "$border-width-md": "0.125rem", + "$border-width-lg": "0.25rem", + "$border-radius-sm": "0.125rem", + "$border-radius": "0.25rem", + "$border-radius-lg": "0.375rem", + "$border-radius-rounded": "290486px" + } + }, + "breakpoints": { + "name": "breakpoints", + "location": "/css/src/tokens/breakpoints.scss", + "tokens": { + "$container-gap": "64px", + "$breakpoint-tablet": "768px", + "$breakpoint-desktop": "1088px", + "$breakpoint-widescreen": "1800px" + } + }, + "colors": { + "name": "colors", + "location": "/css/src/tokens/colors.scss", + "tokens": { + "$white-static": "#fff", + "$black-static": "#000", + "$text": "var(--theme-text)", + "$text-subtle": "var(--theme-text-subtle)", + "$text-invert": "var(--theme-text-invert)", + "$hyperlink": "var(--theme-hyperlink)", + "$hyperlink-hover": "var(--theme-hyperlink-hover)", + "$text-glow-high-contrast": "var(--theme-text-glow-high-contrast)", + "$box-shadow-color-light": "var(--theme-box-shadow-light)", + "$box-shadow-color-medium": "var(--theme-box-shadow-medium)", + "$box-shadow-color-heavy": "var(--theme-box-shadow-heavy)", + "$box-shadow-color-extra-heavy": "var(--theme-box-shadow-extra-heavy)", + "$body-background": "var(--theme-body-background)", + "$body-background-medium": "var(--theme-body-background-medium)", + "$body-background-accent": "var(--theme-body-background-accent)", + "$alternate-background": "var(--theme-alternate-background)", + "$alternate-background-medium": "var(--theme-alternate-background-medium)", + "$overlay": "var(--theme-overlay)", + "$overlay-invert": "var(--theme-overlay-invert)", + "$overlay-static": "hsla(0, 0%, 0%, 0.5)", + "$border": "var(--theme-border)", + "$border-accent": "var(--theme-border-accent)", + "$card-background": "var(--theme-card-background)", + "$code-header": "var(--theme-code-header)", + "$code-block": "var(--theme-code-block)", + "$code-block-border": "var(--theme-code-block-border)", + "$inline-code": "var(--theme-inline-code)", + "$control-border": "var(--theme-control-border)", + "$control-border-bottom": "var(--theme-control-border-bottom)", + "$table-header": "var(--theme-table-header)", + "$table-row": "var(--theme-table-row)", + "$table-row-header": "var(--theme-table-row-header)", + "$table-border-dark": "var(--theme-table-border-dark)", + "$facepile-red": "var(--theme-facepile-red)", + "$facepile-teal": "var(--theme-facepile-teal)", + "$facepile-blue": "var(--theme-facepile-blue)", + "$gradient-text-purple": "var(--theme-gradient-text-purple)", + "$gradient-text-blue": "var(--theme-gradient-text-blue)", + "$gradient-vivid-start": "var(--theme-gradient-vivid-start)", + "$gradient-vivid-end": "var(--theme-gradient-vivid-end)", + "$default-hover": "var(--theme-hover-base)", + "$default-hover-invert": "var(--theme-hover-invert)", + "$border-white-high-contrast": "var(--theme-border-white-high-contrast)", + "$border-yellow-high-contrast": "var(--theme-border-yellow-high-contrast)", + "$code-highlight-background": "var(--theme-code-highlight-background)", + "$visited": "var(--theme-visited)", + "$selected-background": "var(--theme-background-selected)", + "$selected-background-subtle": "var(--theme-background-subtle-selected)", + "$selected-stroke": "var(--theme-stroke-selected)", + "$selected-foreground": "var(--theme-foreground-selected)", + "$score-low-off": "var(--theme-score-low-off)", + "$score-low": "var(--theme-score-low)", + "$score-medium-off": "var(--theme-score-medium-off)", + "$score-medium": "var(--theme-score-medium)", + "$score-high-off": "var(--theme-score-high-off)", + "$score-high": "var(--theme-score-high)", + "$primary": "var(--theme-primary-base)", + "$primary-background": "var(--theme-primary-background)", + "$primary-background-hover": "var(--theme-primary-background-hover)", + "$primary-background-glow-high-contrast": "var(--theme-primary-background-glow-high-contrast)", + "$primary-dark": "var(--theme-primary-dark)", + "$primary-dark-hover": "var(--theme-primary-dark-hover)", + "$primary-hover": "var(--theme-primary-hover)", + "$primary-active": "var(--theme-primary-active)", + "$primary-invert": "var(--theme-primary-invert)", + "$primary-box-shadow": "var(--theme-primary-box-shadow)", + "$primary-selected": "var(--theme-primary-selected)", + "$primary-background-selected": "var(--theme-primary-background-selected)", + "$primary-foreground-selected": "var(--theme-primary-foreground-selected)", + "$primary-foreground-selected-invert": "var(--theme-primary-foreground-selected-invert)", + "$primary-stroke-selected": "var(--theme-primary-stroke-selected)", + "$secondary": "var(--theme-secondary-base)", + "$secondary-background": "var(--theme-secondary-background)", + "$secondary-background-hover": "var(--theme-secondary-background-hover)", + "$secondary-background-glow-high-contrast": "var(--theme-secondary-background-glow-high-contrast)", + "$secondary-dark": "var(--theme-secondary-dark)", + "$secondary-dark-hover": "var(--theme-secondary-dark-hover)", + "$secondary-hover": "var(--theme-secondary-hover)", + "$secondary-active": "var(--theme-secondary-active)", + "$secondary-invert": "var(--theme-secondary-invert)", + "$secondary-box-shadow": "var(--theme-secondary-box-shadow)", + "$secondary-background-selected": "var(--theme-secondary-background-selected)", + "$secondary-selected": "var(--theme-secondary-selected)", + "$secondary-foreground-selected": "var(--theme-secondary-foreground-selected)", + "$secondary-foreground-selected-invert": "var(--theme-secondary-foreground-selected-invert)", + "$secondary-stroke-selected": "var(--theme-secondary-stroke-selected)", + "$tertiary": "var(--theme-tertiary-base)", + "$tertiary-background": "var(--theme-tertiary-background)", + "$tertiary-background-hover": "var(--theme-tertiary-background-hover)", + "$tertiary-background-glow-high-contrast": "var(--theme-tertiary-background-glow-high-contrast)", + "$tertiary-dark": "var(--theme-tertiary-dark)", + "$tertiary-dark-hover": "var(--theme-tertiary-dark-hover)", + "$tertiary-hover": "var(--theme-tertiary-hover)", + "$tertiary-active": "var(--theme-tertiary-active)", + "$tertiary-invert": "var(--theme-tertiary-invert)", + "$tertiary-box-shadow": "var(--theme-tertiary-box-shadow)", + "$tertiary-background-selected": "var(--theme-tertiary-background-selected)", + "$tertiary-selected": "var(--theme-tertiary-selected)", + "$tertiary-foreground-selected": "var(--theme-tertiary-foreground-selected)", + "$tertiary-foreground-selected-invert": "var(--theme-tertiary-foreground-selected-invert)", + "$tertiary-stroke-selected": "var(--theme-tertiary-stroke-selected)", + "$success": "var(--theme-success-base)", + "$success-background": "var(--theme-success-background)", + "$success-background-hover": "var(--theme-success-background-hover)", + "$success-background-glow-high-contrast": "var(--theme-success-background-glow-high-contrast)", + "$success-dark": "var(--theme-success-dark)", + "$success-dark-hover": "var(--theme-success-dark-hover)", + "$success-hover": "var(--theme-success-hover)", + "$success-active": "var(--theme-success-active)", + "$success-invert": "var(--theme-success-invert)", + "$success-box-shadow": "var(--theme-success-box-shadow)", + "$success-background-selected": "var(--theme-success-background-selected)", + "$success-selected": "var(--theme-success-selected)", + "$success-foreground-selected": "var(--theme-success-foreground-selected)", + "$success-foreground-selected-invert": "var(--theme-success-foreground-selected-invert)", + "$success-stroke-selected": "var(--theme-success-stroke-selected)", + "$info": "var(--theme-info-base)", + "$info-background": "var(--theme-info-background)", + "$info-background-hover": "var(--theme-info-background-hover)", + "$info-background-glow-high-contrast": "var(--theme-info-background-glow-high-contrast)", + "$info-dark": "var(--theme-info-dark)", + "$info-dark-hover": "var(--theme-info-dark-hover)", + "$info-hover": "var(--theme-info-hover)", + "$info-active": "var(--theme-info-active)", + "$info-invert": "var(--theme-info-invert)", + "$info-box-shadow": "var(--theme-info-box-shadow)", + "$info-background-selected": "var(--theme-info-background-selected)", + "$info-selected": "var(--theme-info-selected)", + "$info-foreground-selected": "var(--theme-info-foreground-selected)", + "$info-foreground-selected-invert": "var(--theme-info-foreground-selected-invert)", + "$info-stroke-selected": "var(--theme-info-stroke-selected)", + "$warning": "var(--theme-warning-base)", + "$warning-background": "var(--theme-warning-background)", + "$warning-background-hover": "var(--theme-warning-background-hover)", + "$warning-background-glow-high-contrast": "var(--theme-warning-background-glow-high-contrast)", + "$warning-dark": "var(--theme-warning-dark)", + "$warning-dark-hover": "var(--theme-warning-dark-hover)", + "$warning-hover": "var(--theme-warning-hover)", + "$warning-active": "var(--theme-warning-active)", + "$warning-invert": "var(--theme-warning-invert)", + "$warning-box-shadow": "var(--theme-warning-box-shadow)", + "$warning-background-selected": "var(--theme-warning-background-selected)", + "$warning-selected": "var(--theme-warning-selected)", + "$warning-foreground-selected": "var(--theme-warning-foreground-selected)", + "$warning-foreground-selected-invert": "var(--theme-warning-foreground-selected-invert)", + "$warning-stroke-selected": "var(--theme-warning-stroke-selected)", + "$danger": "var(--theme-danger-base)", + "$danger-background": "var(--theme-danger-background)", + "$danger-background-hover": "var(--theme-danger-background-hover)", + "$danger-background-glow-high-contrast": "var(--theme-danger-background-glow-high-contrast)", + "$danger-dark": "var(--theme-danger-dark)", + "$danger-dark-hover": "var(--theme-danger-dark-hover)", + "$danger-hover": "var(--theme-danger-hover)", + "$danger-active": "var(--theme-danger-active)", + "$danger-invert": "var(--theme-danger-invert)", + "$danger-box-shadow": "var(--theme-danger-box-shadow)", + "$danger-background-selected": "var(--theme-danger-background-selected)", + "$danger-selected": "var(--theme-danger-selected)", + "$danger-foreground-selected": "var(--theme-danger-foreground-selected)", + "$danger-foreground-selected-invert": "var(--theme-danger-foreground-selected-invert)", + "$danger-stroke-selected": "var(--theme-danger-stroke-selected)", + "$colors": { + "primary": "var(--theme-primary-base),var(--theme-primary-background),var(--theme-primary-dark),var(--theme-primary-hover),var(--theme-primary-active),var(--theme-primary-invert),var(--theme-primary-box-shadow),var(--theme-primary-background-glow-high-contrast),var(--theme-primary-background-hover),var(--theme-primary-dark-hover),var(--theme-primary-selected),var(--theme-primary-background-selected),var(--theme-primary-stroke-selected),var(--theme-primary-foreground-selected),var(--theme-primary-foreground-selected-invert)", + "secondary": "var(--theme-secondary-base),var(--theme-secondary-background),var(--theme-secondary-dark),var(--theme-secondary-hover),var(--theme-secondary-active),var(--theme-secondary-invert),var(--theme-secondary-box-shadow),var(--theme-secondary-background-glow-high-contrast),var(--theme-secondary-background-hover),var(--theme-secondary-dark-hover),var(--theme-secondary-selected),var(--theme-secondary-background-selected),var(--theme-secondary-stroke-selected),var(--theme-secondary-foreground-selected),var(--theme-secondary-foreground-selected-invert)", + "tertiary": "var(--theme-tertiary-base),var(--theme-tertiary-background),var(--theme-tertiary-dark),var(--theme-tertiary-hover),var(--theme-tertiary-active),var(--theme-tertiary-invert),var(--theme-tertiary-box-shadow),var(--theme-tertiary-background-glow-high-contrast),var(--theme-tertiary-background-hover),var(--theme-tertiary-dark-hover),var(--theme-tertiary-selected),var(--theme-tertiary-background-selected),var(--theme-tertiary-stroke-selected),var(--theme-tertiary-foreground-selected),var(--theme-tertiary-foreground-selected-invert)", + "success": "var(--theme-success-base),var(--theme-success-background),var(--theme-success-dark),var(--theme-success-hover),var(--theme-success-active),var(--theme-success-invert),var(--theme-success-box-shadow),var(--theme-success-background-glow-high-contrast),var(--theme-success-background-hover),var(--theme-success-dark-hover),var(--theme-success-selected),var(--theme-success-background-selected),var(--theme-success-stroke-selected),var(--theme-success-foreground-selected),var(--theme-success-foreground-selected-invert)", + "info": "var(--theme-info-base),var(--theme-info-background),var(--theme-info-dark),var(--theme-info-hover),var(--theme-info-active),var(--theme-info-invert),var(--theme-info-box-shadow),var(--theme-info-background-glow-high-contrast),var(--theme-info-background-hover),var(--theme-info-dark-hover),var(--theme-info-selected),var(--theme-info-background-selected),var(--theme-info-stroke-selected),var(--theme-info-foreground-selected),var(--theme-info-foreground-selected-invert)", + "warning": "var(--theme-warning-base),var(--theme-warning-background),var(--theme-warning-dark),var(--theme-warning-hover),var(--theme-warning-active),var(--theme-warning-invert),var(--theme-warning-box-shadow),var(--theme-warning-background-glow-high-contrast),var(--theme-warning-background-hover),var(--theme-warning-dark-hover),var(--theme-warning-selected),var(--theme-warning-background-selected),var(--theme-warning-stroke-selected),var(--theme-warning-foreground-selected),var(--theme-warning-foreground-selected-invert)", + "danger": "var(--theme-danger-base),var(--theme-danger-background),var(--theme-danger-dark),var(--theme-danger-hover),var(--theme-danger-active),var(--theme-danger-invert),var(--theme-danger-box-shadow),var(--theme-danger-background-glow-high-contrast),var(--theme-danger-background-hover),var(--theme-danger-dark-hover),var(--theme-danger-selected),var(--theme-danger-background-selected),var(--theme-danger-stroke-selected),var(--theme-danger-foreground-selected),var(--theme-danger-foreground-selected-invert)" + }, + "$color-index-base": "1", + "$color-index-background": "2", + "$color-index-dark": "3", + "$color-index-hover": "4", + "$color-index-active": "5", + "$color-index-invert": "6", + "$color-index-box-shadow": "7", + "$color-index-background-glow-high-contrast": "8", + "$color-index-background-hover": "9", + "$color-index-dark-hover": "10", + "$color-index-selected": "11", + "$color-index-background-selected": "12", + "$color-index-stroke-selected": "13", + "$color-index-foreground-selected": "14", + "$color-index-foreground-selected-invert": "15", + "$gradients": { + "vivid": "var(--theme-gradient-vivid-start),var(--theme-gradient-vivid-end)", + "purple-blue": "var(--theme-gradient-text-purple),var(--theme-gradient-text-blue)" + }, + "$gradient-color-start-index": "1", + "$gradient-color-end-index": "2" + } + }, + "container": { + "name": "container", + "location": "/css/src/tokens/container.scss", + "tokens": { "$container-query-md": "480px" } + }, + "direction": { + "name": "direction", + "location": "/css/src/tokens/direction.scss", + "tokens": { + "$user-text-direction": "ltr", + "$user-left": "left", + "$user-right": "right", + "$user-translate-x-direction": "1", + "$directions": { "top": "top", "right": "right", "bottom": "bottom", "left": "left" }, + "$logical-directions": { + "top": "block-start", + "right": "inline-end", + "bottom": "block-end", + "left": "inline-start" + } + } + }, + "display": { + "name": "display", + "location": "/css/src/tokens/display.scss", + "tokens": { "$displays": "block, flex, inline, inline-block, inline-flex, grid, none" } + }, + "focus": { + "name": "focus", + "location": "/css/src/tokens/focus.scss", + "tokens": { + "$focus-width": "0.125rem", + "$focus-style": "dashed", + "$focus-outline-offset": "0.25rem", + "$focus-visible-use-polyfill": false + } + }, + "font-stack": { + "name": "font-stack", + "location": "/css/src/tokens/font-stack.scss", + "tokens": { + "$monospace-font-stack": "SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace", + "$normal-font-stack": "-apple-system, BlinkMacSystemFont, Segoe UI Variable Text, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji", + "$quote-font-stack": "Arial, Helvetica Neue, Helvetica, sans-serif" + } + }, + "layout": { + "name": "layout", + "location": "/css/src/tokens/layout.scss", + "tokens": { + "$column-gap": "0.75rem", + "$large-column-gap": "1.5rem", + "$reading-max-width": "50rem", + "$layout-gap": "24px", + "$layout-widescreen-width": "1752px", + "$layout-widescreen-gap": "max(24px, 50% - 1752px / 2)", + "$layout-gap-custom-property-name": "--layout-gap", + "$layout-gap-scalable-custom-property-name": "--layout-gap-scalable", + "$layout-flyout-width-name": "--layout-flyout-width", + "$layout-flyout-width-desktop-custom-property-name": "--layout-flyout-width-desktop", + "$layout-flyout-width-widescreen-custom-property-name": "--layout-flyout-width-widescreen" + } + }, + "palette": { + "name": "palette", + "location": "/css/src/tokens/palette.scss", + "tokens": { + "$palette-grey-10-deprecated": "#fafafa", + "$palette-grey-20-deprecated": "#f2f2f2", + "$palette-grey-30-deprecated": "#e6e6e6", + "$palette-grey-40-deprecated": "#d2d2d2", + "$palette-grey-50-deprecated": "#bcbcbc", + "$palette-grey-60-deprecated": "#a2a2a2", + "$palette-grey-70-deprecated": "#8e8e8e", + "$palette-grey-80-deprecated": "#757575", + "$palette-grey-90-deprecated": "#505050", + "$palette-grey-100-deprecated": "#404040", + "$palette-grey-110-deprecated": "#2f2f2f", + "$palette-grey-120-deprecated": "#171717", + "$palette-grey-130-deprecated": "#161616", + "$palette-grey-10": "#f5f5f5", + "$palette-grey-20": "#f0f0f0", + "$palette-grey-30": "#ebebeb", + "$palette-grey-40": "#e6e6e6", + "$palette-grey-50": "#e0e0e0", + "$palette-grey-60": "#d6d6d6", + "$palette-grey-70": "#d1d1d1", + "$palette-grey-80": "#c7c7c7", + "$palette-grey-90": "#bdbdbd", + "$palette-grey-100": "#b3b3b3", + "$palette-grey-110": "#adadad", + "$palette-grey-120": "#999", + "$palette-grey-130": "#757575", + "$palette-grey-140": "#707070", + "$palette-grey-150": "#6b6b6b", + "$palette-grey-160": "#666", + "$palette-grey-170": "#616161", + "$palette-grey-180": "#575757", + "$palette-grey-190": "#525252", + "$palette-grey-200": "#4d4d4d", + "$palette-grey-210": "#424242", + "$palette-grey-220": "#3d3d3d", + "$palette-grey-230": "#383838", + "$palette-grey-240": "#333", + "$palette-grey-250": "#292929", + "$palette-grey-260": "#242424", + "$palette-grey-270": "#1a1a1a", + "$palette-grey-280": "#1f1f1f", + "$palette-grey-290": "#141414", + "$palette-grey-300": "#0a0a0a", + "$palette-black": "#000", + "$palette-black-opacity-90": "hsla(0, 0%, 0%, 0.9)", + "$palette-black-opacity-80": "hsla(0, 0%, 0%, 0.8)", + "$palette-black-opacity-70": "hsla(0, 0%, 0%, 0.7)", + "$palette-black-opacity-60": "hsla(0, 0%, 0%, 0.6)", + "$palette-black-opacity-50": "hsla(0, 0%, 0%, 0.5)", + "$palette-black-opacity-40": "hsla(0, 0%, 0%, 0.4)", + "$palette-black-opacity-30": "hsla(0, 0%, 0%, 0.3)", + "$palette-black-opacity-20": "hsla(0, 0%, 0%, 0.2)", + "$palette-black-opacity-10": "hsla(0, 0%, 0%, 0.1)", + "$palette-black-opacity-0": "hsla(0, 0%, 0%, 0)", + "$palette-white": "#fff", + "$palette-white-opacity-0": "hsla(0, 0%, 100%, 0)", + "$palette-white-opacity-10": "hsla(0, 0%, 100%, 0.1)", + "$palette-white-opacity-20": "hsla(0, 0%, 100%, 0.2)", + "$palette-white-opacity-30": "hsla(0, 0%, 100%, 0.3)", + "$palette-white-opacity-40": "hsla(0, 0%, 100%, 0.4)", + "$palette-white-opacity-50": "hsla(0, 0%, 100%, 0.5)", + "$palette-white-opacity-60": "hsla(0, 0%, 100%, 0.6)", + "$palette-white-opacity-70": "hsla(0, 0%, 100%, 0.7)", + "$palette-white-opacity-80": "hsla(0, 0%, 100%, 0.8)", + "$palette-white-opacity-90": "hsla(0, 0%, 100%, 0.9)", + "$palette-black-opacity-108": "hsla(0, 0%, 0%, 0.11)", + "$palette-black-opacity-132": "hsla(0, 0%, 0%, 0.13)", + "$palette-black-opacity-22": "hsla(0, 0%, 0%, 0.22)", + "$palette-black-opacity-18": "hsla(0, 0%, 0%, 0.18)", + "$palette-white-opacity-108": "hsla(0, 0%, 100%, 0.11)", + "$palette-white-opacity-132": "hsla(0, 0%, 100%, 0.13)", + "$palette-white-opacity-22": "hsla(0, 0%, 100%, 0.22)", + "$palette-white-opacity-18": "hsla(0, 0%, 100%, 0.18)", + "$palette-blue-10-deprecated": "#d7eaf8", + "$palette-blue-20-deprecated": "#9ccbee", + "$palette-blue-30-deprecated": "#75b6e7", + "$palette-blue-40-deprecated": "#278cda", + "$palette-blue-50-deprecated": "#0078d4", + "$palette-blue-60-deprecated": "#0065b3", + "$palette-blue-70-deprecated": "#00579a", + "$palette-blue-80-deprecated": "#004173", + "$palette-blue-90-deprecated": "#002b4d", + "$palette-blue-100-deprecated": "#000a13", + "$palette-blue-10": "#ebf3fc", + "$palette-blue-20": "#cfe4fa", + "$palette-blue-30": "#a9d3f2", + "$palette-blue-40": "#b4d6fa", + "$palette-blue-50": "#9abfdc", + "$palette-blue-60": "#77b7f7", + "$palette-blue-70": "#62abf5", + "$palette-blue-80": "#479ef5", + "$palette-blue-90": "#2886de", + "$palette-blue-100": "#0078d4", + "$palette-blue-110": "#0f6cbd", + "$palette-blue-120": "#115ea3", + "$palette-blue-130": "#0f548c", + "$palette-blue-140": "#004e8c", + "$palette-blue-150": "#0e4775", + "$palette-blue-160": "#004377", + "$palette-blue-170": "#0c3b5e", + "$palette-blue-180": "#0a2e4a", + "$palette-blue-190": "#002c4e", + "$palette-blue-200": "#082338", + "$palette-blue-a": "#9ccbee", + "$palette-blue-opacity-30": "hsla(206, 100%, 35%, 0.3)", + "$palette-blue-opacity-70": "hsla(206, 100%, 35%, 0.7)", + "$palette-blue-black": "#091f2c", + "$palette-navy-10": "#dfe5ee", + "$palette-navy-20": "#c1cbdc", + "$palette-navy-30": "#a4b2c9", + "$palette-navy-40": "#899ab5", + "$palette-navy-50": "#70819f", + "$palette-navy-60": "#4a5d7e", + "$palette-navy-70": "#243a5e", + "$palette-navy-80": "#14294c", + "$palette-navy-90": "#061329", + "$palette-navy-100": "#000910", + "$palette-navy-opacity-30": "hsla(262, 46%, 17%, 0.3)", + "$palette-navy-opacity-70": "hsla(262, 46%, 17%, 0.7)", + "$palette-turqoise-10-deprecated": "#e9fbff", + "$palette-turqoise-20-deprecated": "#bdf5ff", + "$palette-turqoise-30-deprecated": "#7becff", + "$palette-turqoise-40-deprecated": "#50e6ff", + "$palette-turqoise-50-deprecated": "#41b9cf", + "$palette-turqoise-60-deprecated": "#328e9f", + "$palette-turqoise-70-deprecated": "#28727f", + "$palette-turqoise-80-deprecated": "#19474f", + "$palette-turqoise-90-deprecated": "#0f2a2f", + "$palette-turqoise-100-deprecated": "#050e0f", + "$palette-turqoise-10": "#1aebff", + "$palette-turqoise-20": "#00666d", + "$palette-turqoise-opacity-30-deprecated": "hsla(189, 52%, 12%, 0.3)", + "$palette-turqoise-opacity-70-deprecated": "hsla(189, 52%, 12%, 0.7)", + "$palette-green-10-deprecated": "#dff6dd", + "$palette-green-20-deprecated": "#acd7aa", + "$palette-green-30-deprecated": "#7cbb7b", + "$palette-green-40-deprecated": "#489d48", + "$palette-green-50-deprecated": "#2a8b2a", + "$palette-green-60-deprecated": "#107c10", + "$palette-green-70-deprecated": "#0b6413", + "$palette-green-80-deprecated": "#054b16", + "$palette-green-90-deprecated": "#05350c", + "$palette-green-100-deprecated": "#061a00", + "$palette-green-10": "#f1faf1", + "$palette-green-20": "#bdd99b", + "$palette-green-30": "#a8f0cd", + "$palette-green-40": "#a7e3a5", + "$palette-green-50": "#9fd89f", + "$palette-green-60": "#9ad29a", + "$palette-green-70": "#5ae0a0", + "$palette-green-80": "#5ec75a", + "$palette-green-90": "#54b054", + "$palette-green-100": "#3db838", + "$palette-green-110": "#00cc6a", + "$palette-green-120": "#4da64d", + "$palette-green-130": "#13a10e", + "$palette-green-140": "#359b35", + "$palette-green-150": "#498205", + "$palette-green-160": "#11910d", + "$palette-green-170": "#2a8b2a", + "$palette-green-180": "#107c10", + "$palette-green-190": "#00723b", + "$palette-green-200": "#0e700e", + "$palette-green-210": "#0b5a08", + "$palette-green-220": "#294903", + "$palette-green-230": "#094509", + "$palette-green-240": "#063b06", + "$palette-green-250": "#052505", + "$palette-green-opacity-30": "hsla(120, 37%, 45%, 0.3)", + "$palette-green-opacity-70": "hsla(120, 37%, 45%, 0.7)", + "$palette-purple-10": "#efd9fd", + "$palette-purple-20": "#e0b7fe", + "$palette-purple-30": "#d59dff", + "$palette-purple-40": "#ac7ee1", + "$palette-purple-50": "#9970d3", + "$palette-purple-60": "#8661c5", + "$palette-purple-70": "#624991", + "$palette-purple-80": "#3b2e58", + "$palette-purple-90": "#201843", + "$palette-purple-100": "#03002c", + "$palette-purple-a": "#cd9bcf", + "$palette-purple-b": "#702573", + "$palette-purple-c": "#b84dc6", + "$palette-purple-opacity-30": "hsla(251, 47%, 18%, 0.3)", + "$palette-purple-opacity-70": "hsla(251, 47%, 18%, 0.7)", + "$palette-yellow-10-deprecated": "#fff4ce", + "$palette-yellow-20-deprecated": "#ffe79f", + "$palette-yellow-30-deprecated": "#ffdf84", + "$palette-yellow-40-deprecated": "#ffcb3f", + "$palette-yellow-50-deprecated": "#ffb900", + "$palette-yellow-60-deprecated": "#d19501", + "$palette-yellow-70-deprecated": "#966802", + "$palette-yellow-80-deprecated": "#6a4b16", + "$palette-yellow-90-deprecated": "#4f340e", + "$palette-yellow-100-deprecated": "#2d1703", + "$palette-yellow-10": "#fffef5", + "$palette-yellow-20": "#ecdfa5", + "$palette-yellow-30": "#e0cea2", + "$palette-yellow-40": "#ddc3b0", + "$palette-yellow-50": "#fef7b2", + "$palette-yellow-60": "#ffe79f", + "$palette-yellow-70": "#feee66", + "$palette-yellow-80": "#fdea3d", + "$palette-yellow-90": "#dac157", + "$palette-yellow-100": "#fde300", + "$palette-yellow-110": "#ffcb3f", + "$palette-yellow-120": "#c1a256", + "$palette-yellow-130": "#c19c00", + "$palette-yellow-140": "#bb8f6f", + "$palette-yellow-150": "#986f0b", + "$palette-yellow-160": "#817400", + "$palette-yellow-170": "#6c5700", + "$palette-yellow-180": "#4c4400", + "$palette-yellow-190": "#553e06", + "$palette-yellow-200": "#50301a", + "$palette-yellow-opacity-30": "hsla(44, 100%, 50%, 0.3)", + "$palette-yellow-opacity-70": "hsla(44, 100%, 50%, 0.7)", + "$palette-yellow-sand": "#e8e6df", + "$palette-orange-10": "#fff9f5", + "$palette-orange-20": "#fdf6f3", + "$palette-orange-30": "#ffddb3", + "$palette-orange-40": "#fdcfb4", + "$palette-orange-50": "#efc4ad", + "$palette-orange-60": "#f4bfab", + "$palette-orange-70": "#faa06b", + "$palette-orange-80": "#df8e64", + "$palette-orange-90": "#ff8c00", + "$palette-orange-100": "#f98845", + "$palette-orange-110": "#e9835e", + "$palette-orange-120": "#f7630c", + "$palette-orange-130": "#ca5010", + "$palette-orange-140": "#bc4b09", + "$palette-orange-150": "#da3b01", + "$palette-orange-160": "#c43501", + "$palette-orange-170": "#8f4e00", + "$palette-orange-180": "#8a3707", + "$palette-orange-190": "#712d09", + "$palette-orange-200": "#7a2101", + "$palette-orange-210": "#4a1e04", + "$palette-orange-220": "#411200", + "$palette-orange-opacity-30": "hsla(24, 100%, 50%, 0.3)", + "$palette-orange-opacity-70": "hsla(24, 100%, 50%, 0.7)", + "$palette-red-10-deprecated": "#fde7e9", + "$palette-red-20-deprecated": "#e5a7a8", + "$palette-red-30-deprecated": "#d4797a", + "$palette-red-40-deprecated": "#c54f4f", + "$palette-red-50-deprecated": "#b62626", + "$palette-red-60-deprecated": "#a80000", + "$palette-red-70-deprecated": "#870000", + "$palette-red-80-deprecated": "#630001", + "$palette-red-90-deprecated": "#470001", + "$palette-red-100-deprecated": "#290001", + "$palette-red-10": "#fdf3f4", + "$palette-red-20": "#fdf6f6", + "$palette-red-30": "#f1bbbc", + "$palette-red-40": "#eeacb2", + "$palette-red-50": "#d69ca5", + "$palette-red-60": "#e37d80", + "$palette-red-70": "#dc626d", + "$palette-red-80": "#dc5e62", + "$palette-red-90": "#ac4f5e", + "$palette-red-100": "#d13438", + "$palette-red-110": "#bc2f32", + "$palette-red-120": "#b62626", + "$palette-red-130": "#c50f1f", + "$palette-red-140": "#b10e1c", + "$palette-red-150": "#751d1f", + "$palette-red-160": "#750b1c", + "$palette-red-170": "#6e0811", + "$palette-red-180": "#590815", + "$palette-red-190": "#420610", + "$palette-red-200": "#3b0509", + "$palette-red-210": "#3f1011", + "$palette-red-opacity-30": "hsla(0, 100%, 33%, 0.3)", + "$palette-red-opacity-70": "hsla(0, 100%, 33%, 0.7)", + "$palette-yellow-high-contrast": "#ff0", + "$palette-yellow-high-contrast-hover": "#ff3", + "$palette-yellow-high-contrast-selected": "#fd0", + "$palette-visited-high-contrast": "#3cff00" + } + }, + "position": { + "name": "position", + "location": "/css/src/tokens/position.scss", + "tokens": { "$positions": "fixed, absolute, relative, sticky" } + }, + "schemes": { + "name": "schemes", + "location": "/css/src/tokens/schemes.scss", + "tokens": { "$color-schemes": { "light": "light", "dark": "dark", "high-contrast": "dark" } } + }, + "shadow": { + "name": "shadow", + "location": "/css/src/tokens/shadow.scss", + "tokens": { + "$box-shadow-light": "0 1.6px 3.6px 0 var(--theme-box-shadow-medium), 0 0.3px 0.9px 0 var(--theme-box-shadow-light)", + "$box-shadow-medium": "0 3.2px 7.2px 0 var(--theme-box-shadow-medium), 0 0.6px 1.8px 0 var(--theme-box-shadow-light)", + "$box-shadow-heavy": "0 6.4px 14.4px 0 var(--theme-box-shadow-medium), 0 1.2px 3.6px 0 var(--theme-box-shadow-light)", + "$box-shadow-extra-heavy": "0 25.6px 57.6px 0 var(--theme-box-shadow-extra-heavy), 0 4.8px 14.4px 0 var(--theme-box-shadow-heavy)" + } + }, + "spacing": { + "name": "spacing", + "location": "/css/src/tokens/spacing.scss", + "tokens": { + "$layout-0": "0", + "$layout-1": "0.5rem", + "$layout-2": "1rem", + "$layout-3": "1.5rem", + "$layout-4": "2rem", + "$layout-5": "3rem", + "$layout-6": "4rem", + "$layout-7": "6rem", + "$layout-8": "8rem", + "$spacer-0": "0", + "$spacer-1": "0.125rem", + "$spacer-2": "0.25rem", + "$spacer-3": "0.5rem", + "$spacer-4": "0.75rem", + "$spacer-5": "1rem", + "$spacer-6": "1.25rem", + "$spacer-7": "1.5rem", + "$spacer-8": "2rem", + "$spacer-9": "2.5rem", + "$spacer-10": "3rem" + } + }, + "themes": { + "name": "themes", + "location": "/css/src/tokens/themes.scss", + "tokens": { + "$themes": { + "light": { + "text": "#161616", + "text-subtle": "#505050", + "text-invert": "#fff", + "text-glow-high-contrast": "#171717", + "box-shadow-light": "hsla0,0%,0%,0.11)", + "box-shadow-medium": "hsla(0,0%,0%,0.13)", + "box-shadow-heavy": "hsla(0,0%,0%,0.18)", + "box-shadow-extra-heavy": "hsla(0,0%,0%,0.22)", + "overlay": "hsla(0,0%,0%,0.7)", + "overlay-invert": "#fff", + "body-background": "#fff", + "body-background-accent": "#e8e6df", + "body-background-medium": "#f2f2f2", + "alternate-background": "#171717", + "alternate-background-medium": "#2f2f2f", + "card-background": "#fff", + "border": "#e6e6e6", + "border-accent": "#e8e6df", + "border-white-high-contrast": "hsla(0,0%,100%,0)", + "border-yellow-high-contrast": "hsla(0,0%,0%,0)", + "table-header": "#e6e6e6", + "table-row": "#f0f0f0", + "table-row-header": "#f5f5f5", + "table-border-dark": "#d1d1d1", + "hover-base": "#c7c7c7", + "hover-invert": "#f5f5f5", + "background-selected": "#ebebeb", + "background-subtle-selected": "#ebebeb", + "foreground-selected": "#242424", + "stroke-selected": "#bdbdbd", + "code-header": "#f0f0f0", + "code-block": "#fafafa", + "code-block-border": "#d1d1d1", + "control-border": "#d1d1d1", + "control-border-bottom": "#616161", + "inline-code": "#e6e6e6", + "code-highlight-background": "#fef7b2", + "visited": "#624991", + "score-low-off": "hsla(0,100%,33%,0.3)", + "score-low": "#b62626", + "score-medium-off": "hsla(44,100%,50%,0.3)", + "score-medium": "#ffb900", + "score-high-off": "hsla(120,37%,45%,0.3)", + "score-high": "#2a8b2a", + "hyperlink": "#0065b3", + "primary-base": "#0f6cbd", + "primary-background": "#ebf3fc", + "primary-background-hover": "#cfe4fa", + "primary-background-glow-high-contrast": "#ebf3fc", + "primary-background-selected": "#cfe4fa", + "primary-foreground-selected": "#0f548c", + "primary-foreground-selected-invert": "#fff", + "primary-selected": "#0f548c", + "primary-stroke-selected": "#0f548c", + "primary-dark": "#115ea3", + "primary-dark-hover": "#115ea3", + "primary-hover": "#115ea3", + "primary-active": "#0c3b5e", + "primary-box-shadow": "hsla(206,100%,35%,0.3)", + "primary-invert": "#fff", + "secondary-base": "#ebebeb", + "secondary-background": "#f5f5f5", + "secondary-background-hover": "#ebebeb", + "secondary-background-glow-high-contrast": "#f0f0f0", + "secondary-background-selected": "#ebebeb", + "secondary-foreground-selected": "#242424", + "secondary-foreground-selected-invert": "#ebebeb", + "secondary-selected": "#242424", + "secondary-stroke-selected": "#bdbdbd", + "secondary-dark": "#424242", + "secondary-dark-hover": "#d6d6d6", + "secondary-hover": "#c7c7c7", + "secondary-active": "#b3b3b3", + "secondary-box-shadow": "hsla(0,0%,0%,0.3)", + "secondary-invert": "#000", + "tertiary-base": "#243a5e", + "tertiary-background": "#061329", + "tertiary-background-hover": "#4a5d7e", + "tertiary-background-selected": "#70819f", + "tertiary-foreground-selected": "#061329", + "tertiary-foreground-selected-invert": "#fff", + "tertiary-selected": "#061329", + "tertiary-stroke-selected": "#061329", + "tertiary-background-glow-high-contrast": "#061329", + "tertiary-dark": "#a4b2c9", + "tertiary-dark-hover": "#70819f", + "tertiary-hover": "#14294c", + "tertiary-active": "#70819f", + "tertiary-box-shadow": "hsla(262,46%,17%,0.3)", + "tertiary-invert": "#fff", + "success-base": "#107c10", + "success-background": "#f1faf1", + "success-background-hover": "#9fd89f", + "success-background-selected": "#a7e3a5", + "success-foreground-selected": "#094509", + "success-foreground-selected-invert": "#fff", + "success-selected": "#094509", + "success-stroke-selected": "#094509", + "success-background-glow-high-contrast": "#f1faf1", + "success-dark": "#0e700e", + "success-dark-hover": "#13a10e", + "success-hover": "#0b5a08", + "success-active": "#9fd89f", + "success-box-shadow": "hsla(120,37%,45%,0.3)", + "success-invert": "#fff", + "info-base": "#8661c5", + "info-background": "#efd9fd", + "info-background-hover": "#d59dff", + "info-background-selected": "#e0b7fe", + "info-foreground-selected": "#3b2e58", + "info-foreground-selected-invert": "#fff", + "info-selected": "#624991", + "info-stroke-selected": "#3b2e58", + "info-background-glow-high-contrast": "#efd9fd", + "info-dark": "#3b2e58", + "info-dark-hover": "#8661c5", + "info-hover": "#8661c5", + "info-active": "#624991", + "info-box-shadow": "hsla(251,47%,18%,0.3)", + "info-invert": "#fff", + "warning-base": "#f7630c", + "warning-background": "#fff9f5", + "warning-background-hover": "#fdcfb4", + "warning-background-selected": "#ffddb3", + "warning-foreground-selected": "#8a3707", + "warning-foreground-selected-invert": "#fff", + "warning-selected": "#bc4b09", + "warning-stroke-selected": "#8a3707", + "warning-background-glow-high-contrast": "#fff9f5", + "warning-dark": "#8a3707", + "warning-dark-hover": "#da3b01", + "warning-hover": "#ca5010", + "warning-active": "#c43501", + "warning-box-shadow": "hsla(24,100%,50%,0.3)", + "warning-invert": "#000", + "danger-base": "#bc2f32", + "danger-background": "#fdf3f4", + "danger-background-hover": "#eeacb2", + "danger-background-selected": "#f1bbbc", + "danger-foreground-selected": "#751d1f", + "danger-foreground-selected-invert": "#fff", + "danger-selected": "#751d1f", + "danger-stroke-selected": "#751d1f", + "danger-background-glow-high-contrast": "#fdf3f4", + "danger-dark": "#b10e1c", + "danger-dark-hover": "#751d1f", + "danger-hover": "#b10e1c", + "danger-active": "#bc2f32", + "danger-box-shadow": "hsla(0,100%,33%,0.3)", + "danger-invert": "#fff", + "facepile-red": "#b10e1c", + "facepile-teal": "#00666d", + "facepile-blue": "#0078d4", + "gradient-text-purple": "#702573", + "gradient-text-blue": "#0f548c", + "gradient-vivid-start": "#b84dc6", + "gradient-vivid-end": "#0078d4" + }, + "dark": { + "text": "#fff", + "text-subtle": "#d2d2d2", + "text-invert": "#2f2f2f", + "text-glow-high-contrast": "#e6e6e6", + "box-shadow-light": "hsla0,0%,0%,0.11)", + "box-shadow-medium": "hsla(0,0%,0%,0.13)", + "box-shadow-heavy": "hsla(0,0%,0%,0.18)", + "box-shadow-extra-heavy": "hsla(0,0%,0%,0.22)", + "overlay": "hsla(0,0%,0%,0.7)", + "overlay-invert": "#fff", + "body-background": "#1f1f1f", + "body-background-accent": "#091f2c", + "body-background-medium": "#292929", + "alternate-background": "#f2f2f2", + "alternate-background-medium": "#fafafa", + "border": "#404040", + "border-accent": "#505050", + "border-white-high-contrast": "hsla(0,0%,100%,0)", + "border-yellow-high-contrast": "hsla(0,0%,0%,0)", + "card-background": "#091f2c", + "table-header": "#404040", + "table-row": "#2f2f2f", + "table-row-header": "#2f2f2f", + "table-border-dark": "#505050", + "hover-base": "#d2d2d2", + "hover-invert": "#2f2f2f", + "background-selected": "#383838", + "background-subtle-selected": "#333", + "foreground-selected": "#e6e6e6", + "stroke-selected": "#e6e6e6", + "code-header": "#333", + "code-block": "#1f1f1f", + "code-block-border": "#bdbdbd", + "control-border": "#d2d2d2", + "control-border-bottom": "#e6e6e6", + "inline-code": "#404040", + "code-highlight-background": "#294903", + "visited": "#ac7ee1", + "score-low-off": "hsla(0,100%,33%,0.7)", + "score-low": "#b62626", + "score-medium-off": "hsla(44,100%,50%,0.3)", + "score-medium": "#ffcb3f", + "score-high-off": "hsla(120,37%,45%,0.7)", + "score-high": "#489d48", + "hyperlink": "#75b6e7", + "primary-base": "#75b6e7", + "primary-background": "#004173", + "primary-background-hover": "#082338", + "primary-background-selected": "#002c4e", + "primary-foreground-selected": "#77b7f7", + "primary-foreground-selected-invert": "#fff", + "primary-selected": "#0f548c", + "primary-stroke-selected": "#77b7f7", + "primary-background-glow-high-contrast": "#004173", + "primary-dark": "#9ccbee", + "primary-dark-hover": "#9ccbee", + "primary-hover": "#278cda", + "primary-active": "#2886de", + "primary-box-shadow": "hsla(206,100%,35%,0.3)", + "primary-invert": "#000", + "secondary-base": "#757575", + "secondary-background": "#404040", + "secondary-background-hover": "#292929", + "secondary-background-selected": "#383838", + "secondary-foreground-selected": "#e6e6e6", + "secondary-foreground-selected-invert": "#e6e6e6", + "secondary-selected": "#e0e0e0", + "secondary-stroke-selected": "#e6e6e6", + "secondary-background-glow-high-contrast": "#404040", + "secondary-dark": "#e6e6e6", + "secondary-dark-hover": "#8e8e8e", + "secondary-hover": "#8e8e8e", + "secondary-active": "#a2a2a2", + "secondary-box-shadow": "hsla(0,0%,0%,0.7)", + "secondary-invert": "#fff", + "tertiary-base": "#404040", + "tertiary-background": "#171717", + "tertiary-background-hover": "#505050", + "tertiary-background-selected": "#70819f", + "tertiary-foreground-selected": "#061329", + "tertiary-foreground-selected-invert": "#fff", + "tertiary-selected": "#70819f", + "tertiary-stroke-selected": "#061329", + "tertiary-background-glow-high-contrast": "#171717", + "tertiary-dark": "#e6e6e6", + "tertiary-dark-hover": "#8e8e8e", + "tertiary-hover": "#505050", + "tertiary-active": "#757575", + "tertiary-box-shadow": "hsla(206,100%,35%,0.3)", + "tertiary-invert": "#fff", + "success-base": "#7cbb7b", + "success-background": "#054b16", + "success-background-hover": "#107c10", + "success-background-selected": "#094509", + "success-foreground-selected": "#a7e3a5", + "success-foreground-selected-invert": "#fff", + "success-selected": "#00723b", + "success-stroke-selected": "#a7e3a5", + "success-background-glow-high-contrast": "#054b16", + "success-dark": "#dff6dd", + "success-dark-hover": "#7cbb7b", + "success-hover": "#489d48", + "success-active": "#7cbb7b", + "success-box-shadow": "hsla(120,37%,45%,0.7)", + "success-invert": "#000", + "info-base": "#9970d3", + "info-background": "#3b2e58", + "info-background-hover": "#8661c5", + "info-background-selected": "#201843", + "info-foreground-selected": "#efd9fd", + "info-foreground-selected-invert": "#201843", + "info-selected": "#d59dff", + "info-stroke-selected": "#efd9fd", + "info-background-glow-high-contrast": "#3b2e58", + "info-dark": "#efd9fd", + "info-dark-hover": "#d59dff", + "info-hover": "#ac7ee1", + "info-active": "#d59dff", + "info-box-shadow": "hsla(251,47%,18%,0.7)", + "info-invert": "#000", + "warning-base": "#f7630c", + "warning-background": "#4a1e04", + "warning-background-hover": "#7a2101", + "warning-background-selected": "#411200", + "warning-foreground-selected": "#fdcfb4", + "warning-foreground-selected-invert": "#000", + "warning-selected": "#ca5010", + "warning-stroke-selected": "#fdcfb4", + "warning-background-glow-high-contrast": "#7a2101", + "warning-dark": "#fdcfb4", + "warning-dark-hover": "#e9835e", + "warning-hover": "#ff8c00", + "warning-active": "#fdcfb4", + "warning-box-shadow": "hsla(24,100%,50%,0.7)", + "warning-invert": "#000", + "danger-base": "#e5a7a8", + "danger-background": "#630001", + "danger-background-hover": "#b62626", + "danger-background-selected": "#590815", + "danger-foreground-selected": "#eeacb2", + "danger-foreground-selected-invert": "#fff", + "danger-selected": "#bc2f32", + "danger-stroke-selected": "#eeacb2", + "danger-background-glow-high-contrast": "#630001", + "danger-dark": "#fde7e9", + "danger-dark-hover": "#d4797a", + "danger-hover": "#c54f4f", + "danger-active": "#d4797a", + "danger-box-shadow": "hsla(0,100%,33%,0.7)", + "danger-invert": "#000", + "facepile-red": "#c54f4f", + "facepile-teal": "#50e6ff", + "facepile-blue": "#278cda", + "gradient-text-purple": "#cd9bcf", + "gradient-text-blue": "#9ccbee", + "gradient-vivid-start": "#b84dc6", + "gradient-vivid-end": "#75b6e7" + }, + "high-contrast": { + "text": "#fff", + "text-subtle": "#fff", + "text-invert": "#000", + "text-glow-high-contrast": "#ff0", + "box-shadow-light": "hsla0,0%,0%,0.11)", + "box-shadow-medium": "hsla(0,0%,0%,0.13)", + "box-shadow-heavy": "hsla(0,0%,0%,0.18)", + "box-shadow-extra-heavy": "hsla(0,0%,0%,0.22)", + "overlay": "#404040", + "overlay-invert": "#fff", + "body-background": "#000", + "body-background-accent": "#000", + "body-background-medium": "#000", + "alternate-background": "#fff", + "alternate-background-medium": "#fff", + "border": "#fff", + "border-accent": "#fff", + "border-white-high-contrast": "#fff", + "border-yellow-high-contrast": "#ff0", + "card-background": "#000", + "table-header": "#505050", + "table-row": "#000", + "table-row-header": "#171717", + "table-border-dark": "#fff", + "hover-base": "#ff0", + "hover-invert": "#000", + "background-selected": "#000", + "background-subtle-selected": "#000", + "foreground-selected": "#c7c7c7", + "stroke-selected": "#fd0", + "code-header": "#000", + "code-block": "#000", + "code-block-border": "#fff", + "control-border": "#fff", + "control-border-bottom": "#fff", + "inline-code": "#2f2f2f", + "code-highlight-background": "#0b6413", + "visited": "#3cff00", + "score-low-off": "#a80000", + "score-low": "#fde7e9", + "score-medium-off": "hsla(44,100%,50%,0.7)", + "score-medium": "#ffe79f", + "score-high-off": "#107c10", + "score-high": "#dff6dd", + "hyperlink": "#ff0", + "primary-base": "#ff0", + "primary-background": "#000", + "primary-background-hover": "#ff3", + "primary-background-glow-high-contrast": "#ff0", + "primary-background-selected": "#000", + "primary-foreground-selected": "#fd0", + "primary-foreground-selected-invert": "#000", + "primary-selected": "#fd0", + "primary-stroke-selected": "#fd0", + "primary-dark": "#ff0", + "primary-dark-hover": "#000", + "primary-hover": "#ff3", + "primary-active": "#ff3", + "primary-box-shadow": "#fff", + "primary-invert": "#000", + "secondary-base": "#e6e6e6", + "secondary-background": "#000", + "secondary-background-hover": "#ff3", + "secondary-background-glow-high-contrast": "#505050", + "secondary-background-selected": "#000", + "secondary-foreground-selected": "#c7c7c7", + "secondary-foreground-selected-invert": "#c7c7c7", + "secondary-selected": "#c7c7c7", + "secondary-stroke-selected": "#fd0", + "secondary-dark": "#e6e6e6", + "secondary-dark-hover": "#000", + "secondary-hover": "#d2d2d2", + "secondary-active": "#d2d2d2", + "secondary-box-shadow": "#e6e6e6", + "secondary-invert": "#000", + "tertiary-base": "#fff", + "tertiary-background": "#000", + "tertiary-background-hover": "#bdbdbd", + "tertiary-background-selected": "#70819f", + "tertiary-foreground-selected": "#061329", + "tertiary-foreground-selected-invert": "#fff", + "tertiary-selected": "#70819f", + "tertiary-stroke-selected": "#061329", + "tertiary-background-glow-high-contrast": "#fff", + "tertiary-dark": "#fff", + "tertiary-dark-hover": "#e6e6e6", + "tertiary-hover": "#e6e6e6", + "tertiary-active": "#e6e6e6", + "tertiary-box-shadow": "#fff", + "tertiary-invert": "#000", + "success-base": "#7cbb7b", + "success-background": "#000", + "success-background-hover": "#acd7aa", + "success-background-selected": "#000", + "success-foreground-selected": "#4da64d", + "success-foreground-selected-invert": "#000", + "success-selected": "#4da64d", + "success-stroke-selected": "#4da64d", + "success-background-glow-high-contrast": "#7cbb7b", + "success-dark": "#acd7aa", + "success-dark-hover": "#7cbb7b", + "success-hover": "#acd7aa", + "success-active": "#acd7aa", + "success-box-shadow": "#fff", + "success-invert": "#000", + "info-base": "#e0b7fe", + "info-background": "#000", + "info-background-hover": "#e0b7fe", + "info-background-selected": "#000", + "info-foreground-selected": "#efd9fd", + "info-foreground-selected-invert": "#000", + "info-selected": "#d59dff", + "info-stroke-selected": "#efd9fd", + "info-background-glow-high-contrast": "#e0b7fe", + "info-dark": "#efd9fd", + "info-dark-hover": "#d59dff", + "info-hover": "#efd9fd", + "info-active": "#efd9fd", + "info-box-shadow": "#fff", + "info-invert": "#000", + "warning-base": "#faa06b", + "warning-background": "#000", + "warning-background-hover": "#fdf6f3", + "warning-background-selected": "#000", + "warning-foreground-selected": "#f4bfab", + "warning-foreground-selected-invert": "#000", + "warning-selected": "#f4bfab", + "warning-stroke-selected": "#f4bfab", + "warning-background-glow-high-contrast": "#ffddb3", + "warning-dark": "#faa06b", + "warning-dark-hover": "#fdcfb4", + "warning-hover": "#efc4ad", + "warning-active": "#fff9f5", + "warning-box-shadow": "#fff", + "warning-invert": "#000", + "danger-base": "#e5a7a8", + "danger-background": "#000", + "danger-background-hover": "#e5a7a8", + "danger-background-selected": "#000", + "danger-foreground-selected": "#e37d80", + "danger-foreground-selected-invert": "#000", + "danger-selected": "#e37d80", + "danger-stroke-selected": "#e37d80", + "danger-background-glow-high-contrast": "#e5a7a8", + "danger-dark": "#fde7e9", + "danger-dark-hover": "#d4797a", + "danger-hover": "#fde7e9", + "danger-active": "#fde7e9", + "danger-box-shadow": "#fff", + "danger-invert": "#000", + "facepile-red": "#d4797a", + "facepile-teal": "#7becff", + "facepile-blue": "#75b6e7", + "gradient-text-purple": "#fff", + "gradient-text-blue": "#fff", + "gradient-vivid-start": "#fff", + "gradient-vivid-end": "#fff" + } + } + } + }, + "typography": { + "name": "typography", + "location": "/css/src/tokens/typography.scss", + "tokens": { + "$document-font-size": "16px", + "$font-size-9": "0.75rem", + "$font-size-8": "0.875rem", + "$font-size-7": "1rem", + "$font-size-6": "1.125rem", + "$font-size-5": "1.25rem", + "$font-size-4": "1.5rem", + "$font-size-3": "1.75rem", + "$font-size-2": "2.125rem", + "$font-size-1": "2.5rem", + "$font-size-0": "3.375rem", + "$weight-light": "100", + "$weight-semilight": "200", + "$weight-normal": "400", + "$weight-semibold": "600", + "$weight-bold": "700", + "$letter-spacing-medium": "0.125rem", + "$letter-spacing-wide": "0.225rem", + "$line-height-normal": "1.3" + } + }, + "z-index": { + "name": "z-index", + "location": "/css/src/tokens/z-index.scss", + "tokens": { + "$zindex-active": "1", + "$zindex-hover": "2", + "$zindex-focus": "3", + "$zindex-multi": "4", + "$zindex-dropdown": "1000", + "$zindex-sticky": "1020", + "$zindex-fixed": "1030", + "$zindex-modal-backdrop": "1040", + "$zindex-modal": "1050", + "$zindex-popover": "1060", + "$zindex-tooltip": "1070", + "$zindex-stretched-link": "1" + } + } + }, + "components": [ + { + "name": "accordion", + "title": "Accordion", + "description": "The accordion component in the Atlas Design System", + "classPrefixes": ["accordion"], + "examples": [] + }, + { + "name": "badge", + "title": "Badge", + "description": "The Badge component in the Atlas Design System", + "classPrefixes": ["badge"], + "examples": [] + }, + { + "name": "banner", + "title": "Banner", + "description": "The Banner component in the Atlas Design System", + "classPrefixes": ["banner"], + "examples": [] + }, + { + "name": "breadcrumbs", + "title": "Breadcrumbs", + "description": "The Breadcrumb component in the Atlas Design System", + "classPrefixes": ["breadcrumbs"], + "examples": [] + }, + { + "name": "button", + "title": "Button", + "description": "Buttons the Atlas Design System", + "classPrefixes": ["button"], + "examples": [] + }, + { + "name": "card", + "title": "Card", + "description": "The card component in the Atlas Design System", + "classPrefixes": ["card"], + "examples": [] + }, + { + "name": "checkbox", + "title": "Checkbox", + "description": "The checkbox component in the Atlas Design System", + "classPrefixes": ["checkbox"], + "examples": [] + }, + { + "name": "code-block", + "title": "Code block", + "description": "Displays code within a block.", + "classPrefixes": ["code-block"], + "examples": [] + }, + { + "name": "dismiss", + "title": "Dismiss", + "description": "The dismiss component in the Atlas Design System", + "classPrefixes": ["dismiss"], + "examples": [] + }, + { + "name": "form", + "title": "Form", + "description": "The form related components in the Atlas Design System", + "classPrefixes": ["field", "required-indicator"], + "examples": [] + }, + { + "name": "gradient-card", + "title": "Gradient card", + "description": "The gradient card component in the Atlas Design System", + "classPrefixes": ["gradient-card"], + "examples": [] + }, + { + "name": "gradients", + "title": "Gradients", + "description": "Gradient related components in the Atlas Design System", + "classPrefixes": ["gradient-border", "gradient-text"], + "examples": [] + }, + { + "name": "help", + "title": "Help", + "description": "Help component in the Atlas Design System", + "classPrefixes": ["help"], + "examples": [] + }, + { + "name": "hero", + "title": "Hero", + "description": "Hero component in the Atlas Design System", + "classPrefixes": ["hero"], + "examples": [] + }, + { + "name": "icon", + "title": "Icon", + "description": "The Icon component in the Atlas Design System", + "classPrefixes": ["icon"], + "examples": [] + }, + { + "name": "image", + "title": "Image", + "description": "Image component in the Atlas Design System", + "classPrefixes": ["image"], + "examples": [] + }, + { + "name": "input", + "title": "Input", + "description": "The input component in the Atlas Design System", + "classPrefixes": ["input"], + "examples": [] + }, + { + "name": "label", + "title": "Label", + "description": "Label component in the Atlas Design System", + "classPrefixes": ["label"], + "examples": [] + }, + { + "name": "layout", + "title": "Layout", + "description": "The layout component in the Atlas Design System", + "classPrefixes": ["layout"], + "examples": [] + }, + { + "name": "link-button", + "title": "Link button", + "description": ".link-button the Atlas Design System", + "classPrefixes": ["link-button"], + "examples": [] + }, + { + "name": "markdown", + "title": "Markdown", + "description": "An element to render html generated from markdown.", + "classPrefixes": ["markdown"], + "examples": [] + }, + { + "name": "media", + "title": "Media", + "description": "The Media component in the Atlas Design System", + "classPrefixes": ["media"], + "examples": [] + }, + { + "name": "message", + "title": "Message", + "description": "The message component in the Atlas Design System", + "classPrefixes": ["message"], + "examples": [] + }, + { + "name": "notification", + "title": "Notification", + "description": "The Notification component in the Atlas Design System", + "classPrefixes": ["notification"], + "examples": [] + }, + { + "name": "pagination", + "title": "Pagination", + "description": "Pagination related components in the Atlas Design System", + "classPrefixes": ["pagination", "is-current"], + "examples": [] + }, + { + "name": "persona", + "title": "Persona", + "description": "Persona component in the Atlas Design System", + "classPrefixes": ["persona"], + "examples": [] + }, + { + "name": "popover", + "title": "Popover", + "description": "The Popover component in the Atlas Design System", + "classPrefixes": ["popover"], + "examples": [] + }, + { + "name": "progress-bar", + "title": "Progress Bar", + "description": "The Progress Bar component in the Atlas Design System", + "classPrefixes": ["progress-bar"], + "examples": [] + }, + { + "name": "radio", + "title": "Radio", + "description": "The radio component in the Atlas Design System", + "classPrefixes": ["radio"], + "examples": [] + }, + { + "name": "scroll", + "title": "Scroll", + "description": "Scroll related components in the Atlas Design System", + "classPrefixes": ["scroll"], + "examples": [] + }, + { + "name": "segmented-controls", + "title": "Segmented Controls", + "description": "Segmented controls component in the Atlas Design System", + "classPrefixes": ["segmented-control", "segmented-controls"], + "examples": [] + }, + { + "name": "select", + "title": "Select", + "description": "The select component in the Atlas Design System", + "classPrefixes": ["select"], + "examples": [] + }, + { + "name": "site-header", + "title": "Site header", + "description": "The Site header component in the Atlas Design System", + "classPrefixes": ["site-header"], + "examples": [] + }, + { + "name": "steps", + "title": "Steps", + "description": "The steps component in the Atlas Design System", + "classPrefixes": ["steps", "step"], + "examples": [] + }, + { + "name": "stretched-link", + "title": "Stretched link", + "description": "The stretched link component in the Atlas Design System", + "classPrefixes": ["stretched-link"], + "examples": [] + }, + { + "name": "table", + "title": "Table", + "description": "Table element and its modifiers.", + "classPrefixes": ["table"], + "examples": [] + }, + { + "name": "tag", + "title": "Tag", + "description": "The Tag component in the Atlas Design System", + "classPrefixes": ["tag"], + "examples": [] + }, + { + "name": "textarea", + "title": "Textarea", + "description": "The textarea component in the Atlas Design System", + "classPrefixes": ["textarea"], + "examples": [] + }, + { + "name": "timeline", + "title": "Timeline", + "description": "Common timeline component in the Atlas Design System", + "classPrefixes": ["timeline"], + "examples": [] + }, + { + "name": "toggle", + "title": "Toggle", + "description": "The Toggle component in the Atlas Design System", + "classPrefixes": ["toggle"], + "examples": [] + } + ], + "atomics": [ + { + "name": "aspect-ratio", + "title": "Aspect ratio", + "description": "Aspect ratio related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "background", + "title": "Backgrounds", + "description": "Background pattern component in the Atlas Design System", + "examples": [] + }, + { + "name": "border", + "title": "Border Atomics", + "description": "Border related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "colors", + "title": "Color", + "description": "Color and background-color related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "display", + "title": "Display Atomics", + "description": "Display related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "flex", + "title": "Flex Atomics", + "description": "Flex related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "gap", + "title": "Gap Atomics", + "description": "Gap related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "height", + "title": "Height Atomics", + "description": "Height related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "image", + "title": "Image", + "description": "Image related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "line-clamp", + "title": "Line Clamp", + "description": "Line clamp, the text truncated component in the Atlas Design System", + "examples": [] + }, + { + "name": "lists", + "title": "Lists", + "description": "List atomics in the Atlas Design system", + "examples": [] + }, + { + "name": "overflow", + "title": "Overflow", + "description": "Overflow related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "position", + "title": "Position Atomics", + "description": "Position related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "shadow", + "title": "Shadow Atomics", + "description": "Shadow related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "spacing", + "title": "Spacing Atomics", + "description": "Spacing related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "typography", + "title": "Typography Atomics", + "description": "Typography related atomic css classes for the Atlas Design System", + "examples": [] + }, + { + "name": "width", + "title": "Width Atomics", + "description": "Width related atomic css classes for the Atlas Design System", + "examples": [] + } + ], + "generatedAt": "2026-02-09T22:55:08.882Z" +} diff --git a/mcp/package.json b/mcp/package.json new file mode 100644 index 000000000..78f9116ca --- /dev/null +++ b/mcp/package.json @@ -0,0 +1,52 @@ +{ + "name": "@microsoft/atlas-mcp", + "version": "0.1.0", + "description": "MCP server exposing Atlas Design System resources to AI agents", + "type": "module", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "bin": { + "atlas-mcp": "./dist/index.js" + }, + "engines": { + "node": "24.15.0", + "npm": "11.12.1" + }, + "scripts": { + "build": "npm run build:data && tsc", + "build:data": "node scripts/build-data.js", + "start": "node dist/index.js", + "dev": "tsc --watch", + "lint": "eslint src --ext .ts", + "prepublishOnly": "npm run build" + }, + "dependencies": { + "@modelcontextprotocol/sdk": "^1.12.0", + "zod": "^3.25.0" + }, + "devDependencies": { + "@types/node": "^24.0.0", + "front-matter": "^4.0.2", + "typescript": "^5.1.5" + }, + "files": [ + "dist", + "data" + ], + "keywords": [ + "mcp", + "model-context-protocol", + "atlas", + "design-system", + "css" + ], + "author": "Microsoft Corporation", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/atlas-design" + }, + "publishConfig": { + "registry": "https://registry.npmjs.org" + } +} diff --git a/mcp/scripts/build-data.js b/mcp/scripts/build-data.js new file mode 100644 index 000000000..8fdcacbab --- /dev/null +++ b/mcp/scripts/build-data.js @@ -0,0 +1,138 @@ +/** + * Build script to bundle Atlas data into the MCP package + * This runs before TypeScript compilation to generate data/atlas-data.json + */ + +import { readFileSync, writeFileSync, readdirSync, existsSync, mkdirSync } from 'fs'; +import { join, dirname } from 'path'; +import { fileURLToPath } from 'url'; +import fm from 'front-matter'; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +const CSS_DIST = join(__dirname, '../../css/dist'); +const SITE_SRC = join(__dirname, '../../site/src'); +const OUTPUT_DIR = join(__dirname, '../data'); + +function extractCodeExamples(content) { + const examples = []; + const codeBlockRegex = /```(\w+)?\n([\s\S]*?)```/g; + let match; + + while ((match = codeBlockRegex.exec(content)) !== null) { + const language = match[1] || 'html'; + const code = match[2].trim(); + if (['html', 'css', 'scss', 'abut-html'].includes(language) && code.length > 10) { + examples.push({ + language: language === 'abut-html' ? 'html' : language, + code + }); + } + } + + return examples; +} + +function parseMarkdownDoc(filePath) { + const content = readFileSync(filePath, 'utf-8'); + const parsed = fm(content); + return { + frontmatter: parsed.attributes, + content: parsed.body + }; +} + +function loadComponents() { + const componentsDir = join(SITE_SRC, 'components'); + if (!existsSync(componentsDir)) { + console.warn('Components directory not found'); + return []; + } + + const files = readdirSync(componentsDir).filter(f => f.endsWith('.md') && f !== 'overview.md'); + return files.map(file => { + const filePath = join(componentsDir, file); + const { frontmatter, content } = parseMarkdownDoc(filePath); + const name = file.replace('.md', ''); + + return { + name, + title: frontmatter.title || name, + description: frontmatter.description || '', + classPrefixes: frontmatter.classPrefixes || [name], + examples: extractCodeExamples(content) + }; + }); +} + +function loadAtomics() { + const atomicsDir = join(SITE_SRC, 'atomics'); + if (!existsSync(atomicsDir)) { + console.warn('Atomics directory not found'); + return []; + } + + const files = readdirSync(atomicsDir).filter(f => f.endsWith('.md') && f !== 'overview.md'); + return files.map(file => { + const filePath = join(atomicsDir, file); + const { frontmatter, content } = parseMarkdownDoc(filePath); + const name = file.replace('.md', ''); + + return { + name, + title: frontmatter.title || name, + description: frontmatter.description || '', + examples: extractCodeExamples(content) + }; + }); +} + +function main() { + console.log('Building Atlas MCP data...'); + + // Load class names + const classNamesPath = join(CSS_DIST, 'class-names.json'); + if (!existsSync(classNamesPath)) { + throw new Error(`class-names.json not found. Run 'npm run build:class-names' first.`); + } + const classNames = JSON.parse(readFileSync(classNamesPath, 'utf-8')); + console.log(` Loaded ${Object.keys(classNames).length} class names`); + + // Load tokens + const tokensPath = join(CSS_DIST, 'tokens.json'); + if (!existsSync(tokensPath)) { + throw new Error(`tokens.json not found. Run 'npm run build:tokens' first.`); + } + const tokens = JSON.parse(readFileSync(tokensPath, 'utf-8')); + console.log(` Loaded tokens`); + + // Load components + const components = loadComponents(); + console.log(` Loaded ${components.length} components`); + + // Load atomics + const atomics = loadAtomics(); + console.log(` Loaded ${atomics.length} atomic categories`); + + // Bundle all data + const atlasData = { + classNames, + tokens, + components, + atomics, + generatedAt: new Date().toISOString() + }; + + // Write output + if (!existsSync(OUTPUT_DIR)) { + mkdirSync(OUTPUT_DIR, { recursive: true }); + } + + const outputPath = join(OUTPUT_DIR, 'atlas-data.json'); + writeFileSync(outputPath, JSON.stringify(atlasData)); + console.log(` Written to ${outputPath}`); + console.log('Done!'); +} + +main(); diff --git a/mcp/src/data/loader.ts b/mcp/src/data/loader.ts new file mode 100644 index 000000000..737fe0a91 --- /dev/null +++ b/mcp/src/data/loader.ts @@ -0,0 +1,230 @@ +/** + * Data loader for Atlas MCP server + * Loads pre-bundled Atlas data from the data/ directory + */ + +import { readFileSync } from 'fs'; +import { join, dirname } from 'path'; +import { fileURLToPath } from 'url'; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +// Data is bundled at build time into the data/ directory +const DATA_PATH = join(__dirname, '../../data/atlas-data.json'); + +export interface ClassInfo { + name: string; + color: { + isValid: boolean; + detailType: string; + universal: string; + light: string; + dark: string; + 'high-contrast': string; + }; + size: { + isValid: boolean; + value: string; + }; +} + +export interface ComponentDoc { + name: string; + title: string; + description: string; + classPrefixes: string[]; + examples: CodeExample[]; +} + +export interface CodeExample { + language: string; + code: string; +} + +export interface AtomicDoc { + name: string; + title: string; + description: string; + examples: CodeExample[]; +} + +interface AtlasData { + classNames: Record; + tokens: Record; + components: ComponentDoc[]; + atomics: AtomicDoc[]; + generatedAt: string; +} + +// Cache loaded data +let dataCache: AtlasData | null = null; + +/** + * Load the bundled Atlas data + */ +function loadData(): AtlasData { + if (dataCache) return dataCache; + + try { + const content = readFileSync(DATA_PATH, 'utf-8'); + dataCache = JSON.parse(content) as AtlasData; + return dataCache; + } catch { + throw new Error( + `Failed to load Atlas data from ${DATA_PATH}. Ensure the package was built correctly.` + ); + } +} + +/** + * Load all CSS class names + */ +export function loadClassNames(): Record { + return loadData().classNames; +} + +/** + * Load design tokens + */ +export function loadTokens(): Record { + return loadData().tokens; +} + +/** + * Load all component documentation + */ +export function loadComponents(): ComponentDoc[] { + return loadData().components; +} + +/** + * Load all atomic class documentation + */ +export function loadAtomics(): AtomicDoc[] { + return loadData().atomics; +} + +/** + * Search class names by pattern + */ +export function searchClasses( + query: string, + options?: { category?: 'component' | 'atomic'; limit?: number } +): ClassInfo[] { + const classNames = loadClassNames(); + const components = loadComponents(); + const limit = options?.limit || 50; + + // Get component prefixes for categorization + const componentPrefixes = new Set(components.flatMap(c => c.classPrefixes)); + + const queryLower = query.toLowerCase(); + const results: ClassInfo[] = []; + + for (const [name, info] of Object.entries(classNames)) { + if (results.length >= limit) break; + + const nameLower = name.toLowerCase(); + if (!nameLower.includes(queryLower)) continue; + + // Filter by category if specified + if (options?.category) { + const isComponent = Array.from(componentPrefixes).some(prefix => name.startsWith(prefix)); + if (options.category === 'component' && !isComponent) continue; + if (options.category === 'atomic' && isComponent) continue; + } + + results.push(info); + } + + return results; +} + +/** + * Get a specific component by name + */ +export function getComponent(name: string): ComponentDoc | undefined { + const components = loadComponents(); + return components.find(c => c.name.toLowerCase() === name.toLowerCase()); +} + +/** + * Get classes that belong to a component + */ +export function getComponentClasses(componentName: string): ClassInfo[] { + const component = getComponent(componentName); + if (!component) return []; + + const classNames = loadClassNames(); + const prefixes = component.classPrefixes; + + return Object.values(classNames).filter(info => + prefixes.some(prefix => info.name.startsWith(prefix)) + ); +} + +/** + * Get all class names organized by category + */ +export function getClassesByCategory(): Record { + const classNames = loadClassNames(); + const categories: Record = { + spacing: [], + color: [], + display: [], + flex: [], + typography: [], + border: [], + background: [], + position: [], + size: [], + other: [] + }; + + for (const name of Object.keys(classNames)) { + if (name.startsWith('margin-') || name.startsWith('padding-') || name.startsWith('gap-')) { + categories.spacing.push(name); + } else if (name.startsWith('color-') || name.startsWith('fill-')) { + categories.color.push(name); + } else if (name.startsWith('display-')) { + categories.display.push(name); + } else if ( + name.startsWith('flex-') || + name.startsWith('justify-') || + name.startsWith('align-') + ) { + categories.flex.push(name); + } else if (name.startsWith('font-') || name.startsWith('text-') || name.startsWith('line-')) { + categories.typography.push(name); + } else if (name.startsWith('border')) { + categories.border.push(name); + } else if (name.startsWith('background-')) { + categories.background.push(name); + } else if ( + name.startsWith('position-') || + name.startsWith('top-') || + name.startsWith('left-') + ) { + categories.position.push(name); + } else if ( + name.startsWith('width-') || + name.startsWith('height-') || + name.startsWith('max-') || + name.startsWith('min-') + ) { + categories.size.push(name); + } else { + categories.other.push(name); + } + } + + return categories; +} + +/** + * Clear the data cache (useful for testing) + */ +export function clearCaches(): void { + dataCache = null; +} diff --git a/mcp/src/index.ts b/mcp/src/index.ts new file mode 100644 index 000000000..8e1d33722 --- /dev/null +++ b/mcp/src/index.ts @@ -0,0 +1,31 @@ +#!/usr/bin/env node +/** + * Atlas MCP Server Entry Point + * Runs the server with stdio transport for use with AI agents + */ + +import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; +import { createServer } from './server.js'; + +async function main() { + const server = createServer(); + const transport = new StdioServerTransport(); + + await server.connect(transport); + + // Handle graceful shutdown + process.on('SIGINT', async () => { + await server.close(); + process.exit(0); + }); + + process.on('SIGTERM', async () => { + await server.close(); + process.exit(0); + }); +} + +main().catch(error => { + console.error('Fatal error:', error); + process.exit(1); +}); diff --git a/mcp/src/server.ts b/mcp/src/server.ts new file mode 100644 index 000000000..9ead81ed7 --- /dev/null +++ b/mcp/src/server.ts @@ -0,0 +1,407 @@ +/** + * Atlas MCP Server + * Exposes Atlas Design System resources to AI agents via Model Context Protocol + */ + +import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; +import { z } from 'zod'; +import { + loadClassNames, + loadTokens, + loadComponents, + loadAtomics, + searchClasses, + getComponent, + getComponentClasses, + getClassesByCategory, + type ClassInfo, + type ComponentDoc, + type AtomicDoc +} from './data/loader.js'; + +export function createServer(): McpServer { + const server = new McpServer({ + name: 'atlas-mcp', + version: '0.1.0' + }); + + // ============================================ + // RESOURCES + // ============================================ + + server.resource('atlas://components', 'Atlas component catalog', async () => { + const components = loadComponents(); + const summary = components.map(c => ({ + name: c.name, + title: c.title, + description: c.description, + classPrefixes: c.classPrefixes, + exampleCount: c.examples.length + })); + return { + contents: [ + { + uri: 'atlas://components', + mimeType: 'application/json', + text: JSON.stringify(summary, null, 2) + } + ] + }; + }); + + server.resource( + 'atlas://atomics', + 'Atlas atomic utility classes organized by category', + async () => { + const categories = getClassesByCategory(); + return { + contents: [ + { + uri: 'atlas://atomics', + mimeType: 'application/json', + text: JSON.stringify(categories, null, 2) + } + ] + }; + } + ); + + server.resource( + 'atlas://tokens', + 'Atlas design tokens (colors, spacing, typography, etc.)', + async () => { + const tokens = loadTokens(); + return { + contents: [ + { + uri: 'atlas://tokens', + mimeType: 'application/json', + text: JSON.stringify(tokens, null, 2) + } + ] + }; + } + ); + + // ============================================ + // TOOLS + // ============================================ + + server.tool( + 'search_classes', + 'Search Atlas CSS classes by name or pattern. Returns matching class names with color and size metadata.', + { + query: z.string().describe('Search query to match against class names'), + category: z + .enum(['component', 'atomic']) + .optional() + .describe( + 'Filter by class category: "component" for component classes, "atomic" for utility classes' + ), + limit: z + .number() + .min(1) + .max(100) + .optional() + .describe('Maximum number of results to return (default: 50)') + }, + async ({ query, category, limit }) => { + const results = searchClasses(query, { category, limit }); + return { + content: [ + { + type: 'text', + text: JSON.stringify( + { + query, + count: results.length, + classes: results.map(c => ({ + name: c.name, + hasColorInfo: c.color.isValid, + hasSizeInfo: c.size.isValid, + ...(c.color.isValid && { colorType: c.color.detailType }), + ...(c.size.isValid && { sizeValue: c.size.value }) + })) + }, + null, + 2 + ) + } + ] + }; + } + ); + + server.tool( + 'get_component', + 'Get detailed information about a specific Atlas component including description, available classes, and code examples.', + { + name: z.string().describe('Component name (e.g., "button", "card", "badge")') + }, + async ({ name }) => { + const component = getComponent(name); + if (!component) { + return { + content: [ + { + type: 'text', + text: `Component "${name}" not found. Use list_components to see available components.` + } + ], + isError: true + }; + } + + const classes = getComponentClasses(name); + return { + content: [ + { + type: 'text', + text: JSON.stringify( + { + name: component.name, + title: component.title, + description: component.description, + classPrefixes: component.classPrefixes, + availableClasses: classes.map(c => c.name), + examples: component.examples + }, + null, + 2 + ) + } + ] + }; + } + ); + + server.tool( + 'get_code_examples', + 'Get HTML/CSS code examples for a specific Atlas component or atomic category.', + { + name: z + .string() + .describe('Component or atomic category name (e.g., "button", "spacing", "colors")'), + type: z + .enum(['component', 'atomic']) + .optional() + .describe('Type of documentation to search (default: searches both)') + }, + async ({ name, type }) => { + const nameLower = name.toLowerCase(); + let examples: { source: string; examples: { language: string; code: string }[] }[] = []; + + if (!type || type === 'component') { + const component = getComponent(nameLower); + if (component && component.examples.length > 0) { + examples.push({ + source: `component/${component.name}`, + examples: component.examples + }); + } + } + + if (!type || type === 'atomic') { + const atomics = loadAtomics(); + const atomic = atomics.find(a => a.name.toLowerCase() === nameLower); + if (atomic && atomic.examples.length > 0) { + examples.push({ + source: `atomic/${atomic.name}`, + examples: atomic.examples + }); + } + } + + if (examples.length === 0) { + return { + content: [ + { + type: 'text', + text: `No code examples found for "${name}". Try list_components or list_atomics to see available options.` + } + ] + }; + } + + return { + content: [ + { + type: 'text', + text: JSON.stringify({ name, examples }, null, 2) + } + ] + }; + } + ); + + server.tool( + 'list_components', + 'List all available Atlas components with their descriptions.', + {}, + async () => { + const components = loadComponents(); + return { + content: [ + { + type: 'text', + text: JSON.stringify( + { + count: components.length, + components: components.map(c => ({ + name: c.name, + title: c.title, + description: c.description, + classPrefixes: c.classPrefixes + })) + }, + null, + 2 + ) + } + ] + }; + } + ); + + server.tool( + 'list_atomics', + 'List Atlas atomic utility classes, optionally filtered by category.', + { + category: z + .enum([ + 'spacing', + 'color', + 'display', + 'flex', + 'typography', + 'border', + 'background', + 'position', + 'size', + 'other' + ]) + .optional() + .describe('Filter by category. Omit to get counts for all categories.') + }, + async ({ category }) => { + const categories = getClassesByCategory(); + + if (category) { + const classes = categories[category] || []; + return { + content: [ + { + type: 'text', + text: JSON.stringify( + { + category, + count: classes.length, + classes + }, + null, + 2 + ) + } + ] + }; + } + + // Return summary of all categories + const summary = Object.entries(categories).map(([name, classes]) => ({ + category: name, + count: classes.length, + sample: classes.slice(0, 5) + })); + + return { + content: [ + { + type: 'text', + text: JSON.stringify( + { + totalClasses: Object.values(categories).flat().length, + categories: summary + }, + null, + 2 + ) + } + ] + }; + } + ); + + server.tool( + 'get_class_details', + 'Get detailed information about a specific CSS class including color values across themes and size values.', + { + className: z + .string() + .describe('The CSS class name (e.g., "button", "margin-lg", "color-primary")') + }, + async ({ className }) => { + const classNames = loadClassNames(); + const info = classNames[className]; + + if (!info) { + // Try to find partial matches + const matches = Object.keys(classNames) + .filter(name => name.includes(className)) + .slice(0, 10); + + return { + content: [ + { + type: 'text', + text: JSON.stringify( + { + error: `Class "${className}" not found`, + similarClasses: matches.length > 0 ? matches : undefined, + suggestion: + matches.length > 0 + ? 'Did you mean one of these?' + : 'Use search_classes to find available classes' + }, + null, + 2 + ) + } + ] + }; + } + + const result: Record = { + name: info.name + }; + + if (info.color.isValid) { + result.color = { + type: info.color.detailType, + ...(info.color.detailType === 'themed' && { + light: info.color.light, + dark: info.color.dark, + highContrast: info.color['high-contrast'] + }), + ...(info.color.detailType === 'static' && { + value: info.color.universal + }) + }; + } + + if (info.size.isValid) { + result.size = info.size.value; + } + + return { + content: [ + { + type: 'text', + text: JSON.stringify(result, null, 2) + } + ] + }; + } + ); + + return server; +} diff --git a/mcp/tsconfig.json b/mcp/tsconfig.json new file mode 100644 index 000000000..e612d977b --- /dev/null +++ b/mcp/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "lib": ["ES2022"], + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "resolveJsonModule": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} diff --git a/package-lock.json b/package-lock.json index a7206235e..5ab16d424 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,13 +27,14 @@ "site", "js", "integration", - "extension" + "extension", + "mcp" ] } }, "css": { "name": "@microsoft/atlas-css", - "version": "6.5.0", + "version": "6.6.0", "license": "MIT", "devDependencies": { "@microsoft/stylelint-config-atlas": "5.0.0", @@ -384,6 +385,37 @@ "url": "https://github.com/sponsors/isaacs" } }, + "mcp": { + "name": "@microsoft/atlas-mcp", + "version": "0.1.0", + "license": "MIT", + "dependencies": { + "@modelcontextprotocol/sdk": "^1.12.0", + "zod": "^3.25.0" + }, + "bin": { + "atlas-mcp": "dist/index.js" + }, + "devDependencies": { + "@types/node": "^24.0.0", + "front-matter": "^4.0.2", + "typescript": "^5.1.5" + }, + "engines": { + "node": "24.15.0", + "npm": "11.12.1" + } + }, + "mcp/node_modules/@types/node": { + "version": "24.12.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.2.tgz", + "integrity": "sha512-A1sre26ke7HDIuY/M23nd9gfB+nrmhtYyMINbjI1zHJxYteKR6qSMX56FsmjMcDb3SMcjJg5BiRRgOCC/yBD0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, "node_modules/@axe-core/playwright": { "version": "4.11.0", "resolved": "https://registry.npmjs.org/@axe-core/playwright/-/playwright-4.11.0.tgz", @@ -1119,6 +1151,18 @@ "dev": true, "license": "MIT" }, + "node_modules/@hono/node-server": { + "version": "1.19.14", + "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz", + "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==", + "license": "MIT", + "engines": { + "node": ">=18.14.1" + }, + "peerDependencies": { + "hono": "^4" + } + }, "node_modules/@humanwhocodes/config-array": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", @@ -1385,6 +1429,10 @@ "resolved": "js", "link": true }, + "node_modules/@microsoft/atlas-mcp": { + "resolved": "mcp", + "link": true + }, "node_modules/@microsoft/atlas-site": { "resolved": "site", "link": true @@ -1411,6 +1459,68 @@ "node": ">=12.0.0" } }, + "node_modules/@modelcontextprotocol/sdk": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz", + "integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==", + "license": "MIT", + "dependencies": { + "@hono/node-server": "^1.19.9", + "ajv": "^8.17.1", + "ajv-formats": "^3.0.1", + "content-type": "^1.0.5", + "cors": "^2.8.5", + "cross-spawn": "^7.0.5", + "eventsource": "^3.0.2", + "eventsource-parser": "^3.0.0", + "express": "^5.2.1", + "express-rate-limit": "^8.2.1", + "hono": "^4.11.4", + "jose": "^6.1.3", + "json-schema-typed": "^8.0.2", + "pkce-challenge": "^5.0.0", + "raw-body": "^3.0.0", + "zod": "^3.25 || ^4.0", + "zod-to-json-schema": "^3.25.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@cfworker/json-schema": "^4.1.1", + "zod": "^3.25 || ^4.0" + }, + "peerDependenciesMeta": { + "@cfworker/json-schema": { + "optional": true + }, + "zod": { + "optional": false + } + } + }, + "node_modules/@modelcontextprotocol/sdk/node_modules/ajv": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@modelcontextprotocol/sdk/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", @@ -8062,6 +8172,44 @@ "node": ">=6.5" } }, + "node_modules/accepts": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", + "license": "MIT", + "dependencies": { + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/acorn": { "version": "8.15.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", @@ -8112,6 +8260,45 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ajv-formats": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, "node_modules/ansi-colors": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", @@ -8488,6 +8675,30 @@ "node": ">= 6" } }, + "node_modules/body-parser": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz", + "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==", + "license": "MIT", + "dependencies": { + "bytes": "^3.1.2", + "content-type": "^1.0.5", + "debug": "^4.4.3", + "http-errors": "^2.0.0", + "iconv-lite": "^0.7.0", + "on-finished": "^2.4.1", + "qs": "^6.14.1", + "raw-body": "^3.0.1", + "type-is": "^2.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", @@ -8637,6 +8848,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/cacheable": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-2.3.2.tgz", @@ -8684,7 +8904,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", - "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", @@ -8698,7 +8917,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", - "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", @@ -9056,6 +9274,46 @@ "dev": true, "license": "MIT" }, + "node_modules/content-disposition": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz", + "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", + "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", + "license": "MIT", + "engines": { + "node": ">=6.6.0" + } + }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", @@ -9063,6 +9321,23 @@ "dev": true, "license": "MIT" }, + "node_modules/cors": { + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/cosmiconfig": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", @@ -9113,7 +9388,6 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -9384,6 +9658,15 @@ "node": ">=0.4.0" } }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/detect-indent": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", @@ -9531,7 +9814,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", - "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", @@ -9559,6 +9841,12 @@ "safe-buffer": "^5.0.1" } }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, "node_modules/electron-to-chromium": { "version": "1.5.279", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.279.tgz", @@ -9572,6 +9860,15 @@ "dev": true, "license": "MIT" }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/encoding-sniffer": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz", @@ -9727,7 +10024,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -9737,7 +10033,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -9747,7 +10042,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", - "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0" @@ -9854,6 +10148,12 @@ "node": ">=6" } }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", @@ -10315,6 +10615,15 @@ "node": ">=0.10.0" } }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/event-target-shim": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", @@ -10335,6 +10644,27 @@ "node": ">=0.8.x" } }, + "node_modules/eventsource": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz", + "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==", + "license": "MIT", + "dependencies": { + "eventsource-parser": "^3.0.1" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/eventsource-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.8.tgz", + "integrity": "sha512-70QWGkr4snxr0OXLRWsFLeRBIRPuQOvt4s8QYjmUlmlkyTZkRqS7EDVRZtzU3TiyDbXSzaOeF0XUKy8PchzukQ==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/execa": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", @@ -10370,6 +10700,92 @@ "node": ">=6" } }, + "node_modules/express": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", + "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", + "license": "MIT", + "dependencies": { + "accepts": "^2.0.0", + "body-parser": "^2.2.1", + "content-disposition": "^1.0.0", + "content-type": "^1.0.5", + "cookie": "^0.7.1", + "cookie-signature": "^1.2.1", + "debug": "^4.4.0", + "depd": "^2.0.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "finalhandler": "^2.1.0", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "merge-descriptors": "^2.0.0", + "mime-types": "^3.0.0", + "on-finished": "^2.4.1", + "once": "^1.4.0", + "parseurl": "^1.3.3", + "proxy-addr": "^2.0.7", + "qs": "^6.14.0", + "range-parser": "^1.2.1", + "router": "^2.2.0", + "send": "^1.1.0", + "serve-static": "^2.2.0", + "statuses": "^2.0.1", + "type-is": "^2.0.1", + "vary": "^1.1.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express-rate-limit": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.5.0.tgz", + "integrity": "sha512-XKhFohWaSBdVJNTi5TaHziqnPkv04I9UQV6q1Wy7Ui6GGQZVW12ojDFwqer14EvCXxjvPG0CyWXx7cAXpALB4Q==", + "license": "MIT", + "dependencies": { + "ip-address": "10.1.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/express-rate-limit" + }, + "peerDependencies": { + "express": ">= 4.11" + } + }, + "node_modules/express/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/extendable-error": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz", @@ -10501,11 +10917,32 @@ "node": ">=8" } }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, + "node_modules/finalhandler": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", + "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "on-finished": "^2.4.1", + "parseurl": "^1.3.3", + "statuses": "^2.0.1" + }, + "engines": { + "node": ">= 18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "license": "MIT", "dependencies": { "locate-path": "^5.0.0", @@ -10625,6 +11062,24 @@ "node": ">= 6" } }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/front-matter": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", @@ -10725,7 +11180,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -10799,7 +11253,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", - "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", @@ -10833,7 +11286,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", - "dev": true, "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", @@ -11042,7 +11494,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -11130,7 +11581,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -11172,7 +11622,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.2" @@ -11200,6 +11649,15 @@ "node": ">=12.0.0" } }, + "node_modules/hono": { + "version": "4.12.17", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.17.tgz", + "integrity": "sha512-FbJJNb/XgX7YW0hX/V8w5oYLztKEsRLykCMZWt1WdLtsfjzMvmoqWBA4H4t5norinq8/rh20oiZYr+WSl4UzAQ==", + "license": "MIT", + "engines": { + "node": ">=16.9.0" + } + }, "node_modules/hookified": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.15.0.tgz", @@ -11265,6 +11723,26 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/http-proxy-agent": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", @@ -11355,7 +11833,6 @@ "version": "0.7.2", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", - "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -11462,7 +11939,6 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, "license": "ISC" }, "node_modules/ini": { @@ -11486,6 +11962,24 @@ "node": ">= 0.4" } }, + "node_modules/ip-address": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz", + "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, "node_modules/is-array-buffer": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", @@ -11841,6 +12335,12 @@ "node": ">=0.10.0" } }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "license": "MIT" + }, "node_modules/is-regex": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", @@ -12087,6 +12587,15 @@ "@pkgjs/parseargs": "^0.11.0" } }, + "node_modules/jose": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz", + "integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, "node_modules/js-base64": { "version": "3.7.8", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.8.tgz", @@ -12141,6 +12650,12 @@ "dev": true, "license": "MIT" }, + "node_modules/json-schema-typed": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz", + "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==", + "license": "BSD-2-Clause" + }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", @@ -12585,7 +13100,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -12615,6 +13129,15 @@ "dev": true, "license": "MIT" }, + "node_modules/media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/meow": { "version": "13.2.0", "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", @@ -12627,6 +13150,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/merge-descriptors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -13074,6 +13609,15 @@ "dev": true, "license": "MIT" }, + "node_modules/negotiator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/node-abi": { "version": "3.87.0", "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.87.0.tgz", @@ -13201,11 +13745,19 @@ "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", "license": "MIT" }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/object-inspect": { "version": "1.13.4", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -13298,11 +13850,22 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" @@ -13822,6 +14385,15 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -13846,7 +14418,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -13883,6 +14454,16 @@ "dev": true, "license": "ISC" }, + "node_modules/path-to-regexp": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz", + "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -13950,6 +14531,15 @@ "node": ">=12.13.0" } }, + "node_modules/pkce-challenge": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz", + "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==", + "license": "MIT", + "engines": { + "node": ">=16.20.0" + } + }, "node_modules/pkg-dir": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", @@ -14477,6 +15067,19 @@ "signal-exit": "^3.0.2" } }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/pump": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", @@ -14515,7 +15118,6 @@ "version": "6.14.1", "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.1.0" @@ -14665,6 +15267,30 @@ "safe-buffer": "^5.1.0" } }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -15018,6 +15644,22 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/router": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", + "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "depd": "^2.0.0", + "is-promise": "^4.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "^8.0.0" + }, + "engines": { + "node": ">= 18" + } + }, "node_modules/run-applescript": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz", @@ -15157,7 +15799,6 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, "license": "MIT" }, "node_modules/sass": { @@ -15293,6 +15934,57 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", + "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^2.0.0", + "http-errors": "^2.0.1", + "mime-types": "^3.0.2", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/send/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send/node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/serialize-javascript": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", @@ -15303,6 +15995,25 @@ "randombytes": "^2.1.0" } }, + "node_modules/serve-static": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", + "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.2.0" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", @@ -15359,11 +16070,16 @@ "dev": true, "license": "MIT" }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -15376,7 +16092,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -15386,7 +16101,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", - "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", @@ -15406,7 +16120,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", - "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", @@ -15423,7 +16136,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", - "dev": true, "license": "MIT", "dependencies": { "call-bound": "^1.0.2", @@ -15442,7 +16154,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", - "dev": true, "license": "MIT", "dependencies": { "call-bound": "^1.0.2", @@ -15604,6 +16315,15 @@ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "license": "BSD-3-Clause" }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/stdin-discarder": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz", @@ -16458,6 +17178,15 @@ "node": ">=8.0" } }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -16569,6 +17298,45 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/type-is": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", + "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", + "license": "MIT", + "dependencies": { + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-is/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-is/node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/typed-array-buffer": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", @@ -16762,6 +17530,15 @@ "node": ">= 10.0.0" } }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/update-browserslist-db": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", @@ -16841,6 +17618,15 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/weak-lru-cache": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", @@ -16906,7 +17692,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -17200,7 +17985,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true, "license": "ISC" }, "node_modules/write-file-atomic": { @@ -17432,6 +18216,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-to-json-schema": { + "version": "3.25.2", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz", + "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.25.28 || ^4" + } + }, "plugins/parcel-transformer-markdown-html": { "name": "@microsoft/parcel-transformer-markdown-html", "version": "2.7.2", @@ -17668,10 +18470,10 @@ }, "site": { "name": "@microsoft/atlas-site", - "version": "1.3.0", + "version": "1.4.0", "license": "MIT", "devDependencies": { - "@microsoft/atlas-css": "6.5.0", + "@microsoft/atlas-css": "6.6.0", "@microsoft/atlas-js": "^1.15.0", "@microsoft/parcel-transformer-markdown-html": "2.7.2", "@parcel/transformer-sass": "2.16.3", diff --git a/package.json b/package.json index 7013305a7..7bb603ac4 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,8 @@ "site", "js", "integration", - "extension" + "extension", + "mcp" ] }, "installConfig": {