Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions examples/customer-segmentation-server/src/mcp-app.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,19 @@
--color-border-primary: light-dark(#e5e7eb, #374151);
--color-border-secondary: light-dark(#d1d5db, #4b5563);

/* Accent colors */
--color-accent-info: light-dark(#2563eb, #3b82f6);
/* Ring colors */
--color-ring-info: light-dark(#2563eb, #3b82f6);

/* Border radius */
--border-radius-sm: 6px;
--border-radius-md: 8px;
--border-radius-full: 9999px;

/* Border width */
--border-width-regular: 1px;

/* Shadows */
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);

/* App-specific colors (not from host) */
--color-enterprise: light-dark(#1e40af, #3b82f6);
Expand Down Expand Up @@ -94,15 +101,15 @@ html, body {
.select {
padding: 4px 8px;
font-size: 0.8125rem;
border: 1px solid var(--color-border-primary);
border: var(--border-width-regular) solid var(--color-border-primary);
border-radius: var(--border-radius-sm);
background: var(--color-background-secondary);
color: var(--color-text-primary);
cursor: pointer;
}

.select:focus {
outline: 2px solid var(--color-accent-info);
outline: 2px solid var(--color-ring-info);
outline-offset: 1px;
}

Expand All @@ -113,7 +120,7 @@ html, body {
background: var(--color-background-secondary);
border-radius: var(--border-radius-md);
padding: 8px;
border: 1px solid var(--color-border-primary);
border: var(--border-width-regular) solid var(--color-border-primary);
}

.chart-container {
Expand Down Expand Up @@ -143,15 +150,15 @@ html, body {
font-size: 0.75rem;
cursor: pointer;
padding: 4px 10px;
border-radius: 16px;
border: 1px solid var(--color-border-primary);
border-radius: var(--border-radius-full);
border: var(--border-width-regular) solid var(--color-border-primary);
background: var(--color-background-secondary);
transition: all 0.15s ease;
}

.legend-item:hover {
border-color: var(--color-text-secondary);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: var(--shadow-sm);
}

.legend-item.hidden {
Expand Down Expand Up @@ -192,7 +199,7 @@ html, body {
background: var(--color-background-secondary);
border-radius: var(--border-radius-sm);
padding: 0 12px;
border: 1px solid var(--color-border-primary);
border: var(--border-width-regular) solid var(--color-border-primary);
font-size: 0.8125rem;
}

Expand Down
1 change: 1 addition & 0 deletions specification/draft/apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,7 @@ type McpUiStyleVariableKey =
| "--color-text-success"
| "--color-text-warning"
| "--color-text-disabled"
| "--color-text-ghost"
// Border colors
| "--color-border-primary"
| "--color-border-secondary"
Expand Down
24 changes: 24 additions & 0 deletions src/generated/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/generated/schema.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/spec.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export type McpUiStyleVariableKey =
| "--color-text-success"
| "--color-text-warning"
| "--color-text-disabled"
| "--color-text-ghost"
// Border colors
| "--color-border-primary"
| "--color-border-secondary"
Expand Down
Loading