feat: implement monochrome design system across entire frontend
Migrate all 84 frontend files from the old themed/colored design to a monochrome glass-morphism design system. Pure black backgrounds, white text with opacity levels, glass-card components with backdrop-blur, and functional color reserved for status indicators only. Foundation: remap CSS variables to monochrome, simplify Tailwind config, remove theme toggle, convert brand logo/wordmark to white. Pages: all 14 pages updated. Components: all common, library, session, step-library, tree-editor, tree-preview, admin, and subscription components converted. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -154,8 +154,8 @@ export function TreePreviewNode({
|
||||
<div className="relative">
|
||||
{/* From option label */}
|
||||
{fromOption && (
|
||||
<div className="mb-1 text-xs font-medium text-muted-foreground">
|
||||
<span className="rounded bg-muted px-1.5 py-0.5">{fromOption}</span>
|
||||
<div className="mb-1 text-xs font-medium text-white/40">
|
||||
<span className="rounded bg-white/10 px-1.5 py-0.5">{fromOption}</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
@@ -194,7 +194,7 @@ export function TreePreviewNode({
|
||||
<div className="rounded-full bg-blue-500/30 p-1.5">
|
||||
<Play className="h-4 w-4 text-blue-500" />
|
||||
</div>
|
||||
<span className="text-xs font-bold uppercase tracking-wide text-blue-600 dark:text-blue-400">
|
||||
<span className="text-xs font-bold uppercase tracking-wide text-blue-400">
|
||||
Starting Question
|
||||
</span>
|
||||
</div>
|
||||
@@ -206,12 +206,12 @@ export function TreePreviewNode({
|
||||
<button
|
||||
type="button"
|
||||
onClick={toggleCollapse}
|
||||
className="mt-0.5 rounded p-0.5 hover:bg-muted"
|
||||
className="mt-0.5 rounded p-0.5 hover:bg-white/10"
|
||||
>
|
||||
{isCollapsed ? (
|
||||
<ChevronRight className="h-4 w-4 text-muted-foreground" />
|
||||
<ChevronRight className="h-4 w-4 text-white/50" />
|
||||
) : (
|
||||
<ChevronDown className="h-4 w-4 text-muted-foreground" />
|
||||
<ChevronDown className="h-4 w-4 text-white/50" />
|
||||
)}
|
||||
</button>
|
||||
) : (
|
||||
@@ -222,14 +222,14 @@ export function TreePreviewNode({
|
||||
{isRootNode && <HelpCircle className="h-4 w-4 text-blue-500" />}
|
||||
|
||||
<div className="flex-1 min-w-0">
|
||||
<p className="text-sm font-medium text-foreground leading-tight">
|
||||
<p className="text-sm font-medium text-white leading-tight">
|
||||
{getNodeLabel()}
|
||||
</p>
|
||||
|
||||
{/* Node ID with copy button */}
|
||||
<div className="flex items-center gap-1 mt-1">
|
||||
<span
|
||||
className="text-xs text-muted-foreground cursor-help"
|
||||
className="text-xs text-white/40 cursor-help"
|
||||
title={`Full ID: ${node.id}`}
|
||||
>
|
||||
{node.id === 'root' ? 'root' : node.id.slice(0, 8) + '...'}
|
||||
@@ -237,7 +237,7 @@ export function TreePreviewNode({
|
||||
<button
|
||||
type="button"
|
||||
onClick={handleCopyId}
|
||||
className="rounded p-0.5 text-muted-foreground hover:bg-muted hover:text-foreground"
|
||||
className="rounded p-0.5 text-white/40 hover:bg-white/10 hover:text-white"
|
||||
title="Copy full ID"
|
||||
>
|
||||
{copiedId ? (
|
||||
@@ -252,8 +252,8 @@ export function TreePreviewNode({
|
||||
|
||||
{/* Show options for decision nodes */}
|
||||
{node.type === 'decision' && node.options && node.options.length > 0 && (
|
||||
<div className="mt-2 space-y-1 border-t border-border/50 pt-2">
|
||||
<p className="text-[10px] uppercase tracking-wide text-muted-foreground">Options:</p>
|
||||
<div className="mt-2 space-y-1 border-t border-white/[0.06] pt-2">
|
||||
<p className="text-[10px] uppercase tracking-wide text-white/40">Options:</p>
|
||||
{node.options.map((opt, i) => {
|
||||
const leadsToSolution = nodeLeadsToSolution(opt.next_node_id)
|
||||
return (
|
||||
@@ -261,15 +261,15 @@ export function TreePreviewNode({
|
||||
key={opt.id}
|
||||
className={cn(
|
||||
'flex items-center gap-1 text-xs rounded px-1 py-0.5 -mx-1',
|
||||
opt.next_node_id && 'hover:bg-muted cursor-pointer'
|
||||
opt.next_node_id && 'hover:bg-white/[0.06] cursor-pointer'
|
||||
)}
|
||||
onMouseEnter={() => opt.next_node_id && onHoverNodeId?.(opt.next_node_id)}
|
||||
onMouseLeave={() => onHoverNodeId?.(null)}
|
||||
>
|
||||
<span className="inline-flex h-4 w-4 items-center justify-center rounded bg-muted text-[10px] font-medium">
|
||||
<span className="inline-flex h-4 w-4 items-center justify-center rounded bg-white/10 text-[10px] font-medium text-white/50">
|
||||
{i + 1}
|
||||
</span>
|
||||
<span className="truncate text-foreground">{opt.label || 'Untitled'}</span>
|
||||
<span className="truncate text-white/70">{opt.label || 'Untitled'}</span>
|
||||
<span className="ml-auto flex items-center gap-1">
|
||||
{leadsToSolution && (
|
||||
<span title="Leads to solution">
|
||||
@@ -279,7 +279,7 @@ export function TreePreviewNode({
|
||||
{opt.next_node_id ? (
|
||||
<span className="text-blue-500">→</span>
|
||||
) : (
|
||||
<span className="text-muted-foreground/50 text-[10px]">(no link)</span>
|
||||
<span className="text-white/30 text-[10px]">(no link)</span>
|
||||
)}
|
||||
</span>
|
||||
</div>
|
||||
@@ -308,12 +308,12 @@ export function TreePreviewNode({
|
||||
|
||||
return (
|
||||
<div
|
||||
className="mt-2 text-xs border-t border-border/50 pt-2 hover:bg-muted/50 cursor-pointer rounded px-1 -mx-1"
|
||||
className="mt-2 text-xs border-t border-white/[0.06] pt-2 hover:bg-white/[0.04] cursor-pointer rounded px-1 -mx-1"
|
||||
onMouseEnter={() => onHoverNodeId?.(node.next_node_id!)}
|
||||
onMouseLeave={() => onHoverNodeId?.(null)}
|
||||
>
|
||||
<div className="flex items-center gap-1.5">
|
||||
<span className="text-muted-foreground">Next:</span>
|
||||
<span className="text-white/40">Next:</span>
|
||||
{isSharedTarget && (
|
||||
<span title={sharedTooltip} className="flex items-center">
|
||||
<Users className="h-3 w-3 text-purple-500" />
|
||||
@@ -321,7 +321,7 @@ export function TreePreviewNode({
|
||||
)}
|
||||
<span className={cn(
|
||||
'truncate',
|
||||
nextNode?.type === 'solution' ? 'text-green-500 font-medium' : 'text-foreground'
|
||||
nextNode?.type === 'solution' ? 'text-green-500 font-medium' : 'text-white/70'
|
||||
)}>
|
||||
{nextNodeLabel.slice(0, 30)}{nextNodeLabel.length > 30 ? '...' : ''}
|
||||
</span>
|
||||
@@ -347,7 +347,7 @@ export function TreePreviewNode({
|
||||
|
||||
{/* Children - show as branches */}
|
||||
{hasChildren && !isCollapsed && (
|
||||
<div className="relative mt-3 ml-6 pl-6 border-l-2 border-border">
|
||||
<div className="relative mt-3 ml-6 pl-6 border-l-2 border-white/[0.06]">
|
||||
<div className="space-y-4">
|
||||
{node.children!.map((child) => {
|
||||
const optionLabel = getOptionLabelForChild(child.id)
|
||||
@@ -355,7 +355,7 @@ export function TreePreviewNode({
|
||||
return (
|
||||
<div key={child.id} className="relative">
|
||||
{/* Horizontal connector line */}
|
||||
<div className="absolute -left-6 top-6 h-0.5 w-6 bg-border" />
|
||||
<div className="absolute -left-6 top-6 h-0.5 w-6 bg-white/[0.06]" />
|
||||
|
||||
<TreePreviewNode
|
||||
node={child}
|
||||
@@ -377,8 +377,8 @@ export function TreePreviewNode({
|
||||
|
||||
{/* Show collapsed indicator */}
|
||||
{hasChildren && isCollapsed && (
|
||||
<div className="mt-2 ml-6 text-xs text-muted-foreground">
|
||||
<span className="rounded bg-muted px-2 py-1">
|
||||
<div className="mt-2 ml-6 text-xs text-white/40">
|
||||
<span className="rounded bg-white/10 px-2 py-1">
|
||||
{node.children!.length} child node{node.children!.length !== 1 ? 's' : ''} hidden
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@@ -56,7 +56,7 @@ export function TreePreviewPanel() {
|
||||
|
||||
if (!treeStructure) {
|
||||
return (
|
||||
<div className="flex h-full items-center justify-center p-4 text-sm text-muted-foreground">
|
||||
<div className="flex h-full items-center justify-center p-4 text-sm text-white/40">
|
||||
No tree structure to preview
|
||||
</div>
|
||||
)
|
||||
@@ -65,11 +65,11 @@ export function TreePreviewPanel() {
|
||||
return (
|
||||
<div className="flex h-full flex-col">
|
||||
{/* Header */}
|
||||
<div className="border-b border-border bg-background px-4 py-2">
|
||||
<h3 className="text-sm font-semibold text-foreground">
|
||||
<div className="border-b border-white/[0.06] px-4 py-2">
|
||||
<h3 className="text-sm font-semibold text-white">
|
||||
Preview: {name || 'Untitled Tree'}
|
||||
</h3>
|
||||
<p className="text-xs text-muted-foreground">
|
||||
<p className="text-xs text-white/40">
|
||||
Click a node to select • Hover options to highlight targets
|
||||
</p>
|
||||
</div>
|
||||
@@ -91,8 +91,8 @@ export function TreePreviewPanel() {
|
||||
</div>
|
||||
|
||||
{/* Legend */}
|
||||
<div className="border-t border-border bg-background px-4 py-2">
|
||||
<div className="flex flex-wrap gap-4 text-xs text-muted-foreground">
|
||||
<div className="border-t border-white/[0.06] px-4 py-2">
|
||||
<div className="flex flex-wrap gap-4 text-xs text-white/40">
|
||||
<div className="flex items-center gap-1">
|
||||
<div className="h-3 w-3 rounded bg-blue-500/50" />
|
||||
<span>Decision</span>
|
||||
|
||||
Reference in New Issue
Block a user