Files
ragflow/web/src/components/canvas/background.tsx
balibabu acca3640f7 Feat: Modify the background color of the canvas #9869 (#10507)
### What problem does this PR solve?

Feat: Modify the background color of the canvas #9869

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-10-13 11:10:54 +08:00

12 lines
223 B
TypeScript

import { Background } from '@xyflow/react';
export function AgentBackground() {
return (
<Background
color="var(--text-primary)"
bgColor="rgb(var(--bg-canvas))"
className="rounded-lg"
/>
);
}