### What problem does this PR solve? Feat: Replace color variables according to design draft #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)tags/v0.20.1
| @@ -40,7 +40,7 @@ export function BulkOperateBar({ | |||
| {list.map((x) => ( | |||
| <li | |||
| key={x.id} | |||
| className={cn({ ['text-text-delete-red']: isDeleteItem(x.id) })} | |||
| className={cn({ ['text-state-error']: isDeleteItem(x.id) })} | |||
| > | |||
| <ConfirmDeleteDialog | |||
| hidden={!isDeleteItem(x.id)} | |||
| @@ -52,7 +52,7 @@ export function ConfirmDeleteDialog({ | |||
| {t('common.cancel')} | |||
| </AlertDialogCancel> | |||
| <AlertDialogAction | |||
| className="bg-text-delete-red text-text-title" | |||
| className="bg-state-error text-text-primary" | |||
| onClick={onOk} | |||
| > | |||
| {t('common.ok')} | |||
| @@ -95,7 +95,7 @@ function CheckboxFormMultiple({ | |||
| name={x.field} | |||
| render={({ field }) => { | |||
| return ( | |||
| <div className="flex items-center justify-between text-text-title text-xs"> | |||
| <div className="flex items-center justify-between text-text-primary text-xs"> | |||
| <FormItem | |||
| key={item.id} | |||
| className="flex flex-row space-x-3 space-y-0 items-center " | |||
| @@ -27,7 +27,7 @@ export const FilterButton = React.forwardRef< | |||
| <Button variant="secondary" {...props} ref={ref}> | |||
| <span | |||
| className={cn({ | |||
| 'text-text-title': count > 0, | |||
| 'text-text-primary': count > 0, | |||
| 'text-text-sub-title-invert': count === 0, | |||
| })} | |||
| > | |||
| @@ -25,7 +25,7 @@ export function InnerUploadedMessageFiles({ files = [] }: IProps) { | |||
| )} | |||
| <div className="text-xs max-w-20"> | |||
| <div className="truncate">{file.name}</div> | |||
| <p className="text-text-sub-title pt-1">{formatBytes(file.size)}</p> | |||
| <p className="text-text-secondary pt-1">{formatBytes(file.size)}</p> | |||
| </div> | |||
| </div> | |||
| ))} | |||
| @@ -142,7 +142,7 @@ export function PromptEditor({ | |||
| } | |||
| placeholder={ | |||
| <div | |||
| className="absolute top-10 left-2 text-text-sub-title" | |||
| className="absolute top-10 left-2 text-text-secondary" | |||
| data-xxx | |||
| > | |||
| {placeholder || t('common.pleaseInput')} | |||
| @@ -34,7 +34,7 @@ const BreadcrumbItem = React.forwardRef< | |||
| <li | |||
| ref={ref} | |||
| className={cn( | |||
| 'inline-flex items-center gap-1.5 text-text-sub-title', | |||
| 'inline-flex items-center gap-1.5 text-text-secondary', | |||
| className, | |||
| )} | |||
| {...props} | |||
| @@ -29,11 +29,11 @@ const DualRangeSlider = React.forwardRef< | |||
| {...props} | |||
| > | |||
| <SliderPrimitive.Track className="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary"> | |||
| <SliderPrimitive.Range className="absolute h-full bg-background-checked" /> | |||
| <SliderPrimitive.Range className="absolute h-full bg-accent-primary" /> | |||
| </SliderPrimitive.Track> | |||
| {initialValue.map((value, index) => ( | |||
| <React.Fragment key={index}> | |||
| <SliderPrimitive.Thumb className="relative block h-4 w-4 rounded-full border-2 border-background-checked bg-white ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 cursor-pointer"> | |||
| <SliderPrimitive.Thumb className="relative block h-4 w-4 rounded-full border-2 border-accent-primary bg-white ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 cursor-pointer"> | |||
| {label && ( | |||
| <span | |||
| className={cn( | |||
| @@ -150,7 +150,7 @@ export function RAGFlowPagination({ | |||
| <PaginationItem | |||
| key={page} | |||
| className={cn({ | |||
| ['bg-background-header-bar rounded-md text-text-title']: | |||
| ['bg-bg-card rounded-md text-text-primary']: | |||
| currentPage === page, | |||
| })} | |||
| > | |||
| @@ -174,7 +174,7 @@ export function RAGFlowPagination({ | |||
| options={sizeChangerOptions} | |||
| value={currentPageSize} | |||
| onChange={handlePageSizeChange} | |||
| triggerClassName="bg-background-header-bar" | |||
| triggerClassName="bg-bg-card" | |||
| ></RAGFlowSelect> | |||
| )} | |||
| </section> | |||
| @@ -43,7 +43,7 @@ export function Segmented({ | |||
| return ( | |||
| <div | |||
| className={cn( | |||
| 'flex items-center rounded-3xl p-1 gap-2 bg-background-header-bar px-5 py-2.5', | |||
| 'flex items-center rounded-3xl p-1 gap-2 bg-bg-card px-5 py-2.5', | |||
| className, | |||
| )} | |||
| > | |||
| @@ -55,10 +55,10 @@ export function Segmented({ | |||
| <div | |||
| key={actualValue} | |||
| className={cn( | |||
| 'inline-flex items-center px-6 py-2 text-base font-normal rounded-3xl cursor-pointer text-text-badge', | |||
| 'inline-flex items-center px-6 py-2 text-base font-normal rounded-3xl cursor-pointer', | |||
| { | |||
| 'bg-text-title': selectedValue === actualValue, | |||
| 'text-text-title-invert': selectedValue === actualValue, | |||
| 'bg-text-primary': selectedValue === actualValue, | |||
| 'text-bg-base': selectedValue === actualValue, | |||
| }, | |||
| )} | |||
| onClick={() => handleOnChange(actualValue)} | |||
| @@ -316,6 +316,7 @@ const SidebarRail = React.forwardRef< | |||
| '[[data-side=right][data-collapsible=offcanvas]_&]:-left-2', | |||
| className, | |||
| )} | |||
| type="button" | |||
| {...props} | |||
| /> | |||
| ); | |||
| @@ -11,7 +11,7 @@ const Switch = React.forwardRef< | |||
| >(({ className, ...props }, ref) => ( | |||
| <SwitchPrimitives.Root | |||
| className={cn( | |||
| 'peer inline-flex h-3.5 w-6 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-background-checked data-[state=unchecked]:bg-text-sub-title', | |||
| 'peer inline-flex h-3.5 w-6 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-accent-primary data-[state=unchecked]:bg-text-sub-title', | |||
| className, | |||
| )} | |||
| {...props} | |||
| @@ -82,7 +82,7 @@ const TableHead = React.forwardRef< | |||
| <th | |||
| ref={ref} | |||
| className={cn( | |||
| 'h-12 px-4 text-left align-middle font-normal text-text-sub-title [&:has([role=checkbox])]:pr-0', | |||
| 'h-12 px-4 text-left align-middle font-normal text-text-secondary [&:has([role=checkbox])]:pr-0', | |||
| className, | |||
| )} | |||
| {...props} | |||
| @@ -97,7 +97,7 @@ const TableCell = React.forwardRef< | |||
| <td | |||
| ref={ref} | |||
| className={cn( | |||
| 'p-4 align-middle [&:has([role=checkbox])]:pr-0 text-text-title font-normal', | |||
| 'p-4 align-middle [&:has([role=checkbox])]:pr-0 text-text-primary font-normal', | |||
| className, | |||
| )} | |||
| {...props} | |||
| @@ -29,7 +29,7 @@ const TabsTrigger = React.forwardRef< | |||
| <TabsPrimitive.Trigger | |||
| ref={ref} | |||
| className={cn( | |||
| 'inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-text-title-invert data-[state=active]:text-text-title data-[state=active]:shadow-sm', | |||
| 'inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-text-title-invert data-[state=active]:text-text-primary data-[state=active]:shadow-sm', | |||
| className, | |||
| )} | |||
| {...props} | |||
| @@ -125,7 +125,7 @@ export function Header() { | |||
| className="size-10 mr-[12]" | |||
| onClick={handleLogoClick} | |||
| /> | |||
| <div className="flex items-center gap-1.5 text-text-sub-title"> | |||
| <div className="flex items-center gap-1.5 text-text-secondary"> | |||
| <Github className="size-3.5" /> | |||
| <span className=" text-base">21.5k stars</span> | |||
| </div> | |||
| @@ -164,7 +164,7 @@ export function Header() { | |||
| className="size-8 cursor-pointer" | |||
| onClick={navigateToProfile} | |||
| ></RAGFlowAvatar> | |||
| <Badge className="h-5 w-8 absolute font-normal p-0 justify-center -right-8 -top-2 text-text-title-invert bg-gradient-to-l from-[#42D7E7] to-[#478AF5]"> | |||
| <Badge className="h-5 w-8 absolute font-normal p-0 justify-center -right-8 -top-2 text-bg-base bg-gradient-to-l from-[#42D7E7] to-[#478AF5]"> | |||
| Pro | |||
| </Badge> | |||
| </div> | |||
| @@ -3,7 +3,7 @@ import { Header } from './next-header'; | |||
| export default function NextLayout() { | |||
| return ( | |||
| <section className="h-full flex flex-col text-colors-text-neutral-strong"> | |||
| <section className="h-full flex flex-col"> | |||
| <Header></Header> | |||
| <Outlet /> | |||
| </section> | |||
| @@ -90,7 +90,7 @@ function InnerButtonEdge({ | |||
| path={edgePath} | |||
| markerEnd={markerEnd} | |||
| style={{ ...style, ...selectedStyle, ...highlightStyle }} | |||
| className="text-text-sub-title" | |||
| className="text-text-secondary" | |||
| /> | |||
| <EdgeLabelRenderer> | |||
| @@ -108,7 +108,7 @@ function InnerButtonEdge({ | |||
| > | |||
| <button | |||
| className={cn( | |||
| 'size-3.5 border border-text-delete-red text-text-delete-red rounded-full leading-none', | |||
| 'size-3.5 border border-state-error text-state-error rounded-full leading-none', | |||
| 'invisible', | |||
| { visible }, | |||
| )} | |||
| @@ -89,7 +89,7 @@ function InnerAgentNode({ | |||
| {(isGotoMethod || | |||
| exceptionMethod === AgentExceptionMethod.Comment) && ( | |||
| <div className="bg-bg-card rounded-sm p-1 flex justify-between gap-2"> | |||
| <span className="text-text-sub-title">On Failure</span> | |||
| <span className="text-text-secondary">On Failure</span> | |||
| <span className="truncate flex-1 text-right"> | |||
| {t(`flow.${exceptionMethod}`)} | |||
| </span> | |||
| @@ -101,7 +101,7 @@ function InnerAgentNode({ | |||
| type="source" | |||
| position={Position.Right} | |||
| isConnectable={isConnectable} | |||
| className="!bg-text-delete-red" | |||
| className="!bg-state-error" | |||
| style={{ ...RightHandleStyle, top: 94 }} | |||
| nodeId={id} | |||
| id={NodeHandleId.AgentException} | |||
| @@ -68,7 +68,7 @@ function AccordionOperators() { | |||
| return ( | |||
| <Accordion | |||
| type="multiple" | |||
| className="px-2 text-text-title max-h-[45vh] overflow-auto" | |||
| className="px-2 text-text-primary max-h-[45vh] overflow-auto" | |||
| defaultValue={['item-1', 'item-2', 'item-3', 'item-4', 'item-5']} | |||
| > | |||
| <AccordionItem value="item-1"> | |||
| @@ -28,7 +28,7 @@ export function CommonHandle({ | |||
| <Handle | |||
| {...props} | |||
| className={cn( | |||
| 'inline-flex justify-center items-center !bg-background-checked !size-4 !rounded-sm !border-none ', | |||
| 'inline-flex justify-center items-center !bg-accent-primary !size-4 !rounded-sm !border-none ', | |||
| className, | |||
| )} | |||
| onClick={(e) => { | |||
| @@ -8,7 +8,7 @@ export function NodeWrapper({ children, className, selected }: IProps) { | |||
| <section | |||
| className={cn( | |||
| 'bg-text-title-invert p-2.5 rounded-sm w-[200px] text-xs', | |||
| { 'border border-background-checked': selected }, | |||
| { 'border border-accent-primary': selected }, | |||
| className, | |||
| )} | |||
| > | |||
| @@ -48,7 +48,7 @@ const ConditionBlock = ({ | |||
| {items.map((x, idx) => ( | |||
| <div key={idx}> | |||
| <section className="flex justify-between gap-2 items-center text-xs p-1"> | |||
| <div className="flex-1 truncate text-background-checked"> | |||
| <div className="flex-1 truncate text-accent-primary"> | |||
| {getLabel(x?.cpn_id)} | |||
| </div> | |||
| <span>{renderOperatorIcon(x?.operator)}</span> | |||
| @@ -81,11 +81,11 @@ function InnerSwitchNode({ id, data, selected }: NodeProps<ISwitchNode>) { | |||
| <section className="flex flex-col text-xs"> | |||
| <div className="text-right"> | |||
| <span>{getConditionKey(idx, positions.length)}</span> | |||
| <div className="text-text-sub-title"> | |||
| <div className="text-text-secondary"> | |||
| {idx < positions.length - 1 && position.text} | |||
| </div> | |||
| </div> | |||
| <span className="text-background-checked"> | |||
| <span className="text-accent-primary"> | |||
| {idx < positions.length - 1 && | |||
| position.condition?.logical_operator?.toUpperCase()} | |||
| </span> | |||
| @@ -100,7 +100,7 @@ function EmbedDialog({ | |||
| {t('embedIntoSite', { keyPrefix: 'common' })} | |||
| </DialogTitle> | |||
| </DialogHeader> | |||
| <section className="w-full overflow-auto space-y-5 text-sm text-text-sub-title"> | |||
| <section className="w-full overflow-auto space-y-5 text-sm text-text-secondary"> | |||
| <Form {...form}> | |||
| <form className="space-y-5"> | |||
| <FormField | |||
| @@ -150,7 +150,7 @@ function EmbedDialog({ | |||
| <CopyToClipboard text={token}></CopyToClipboard> | |||
| </div> | |||
| <a | |||
| className="cursor-pointer text-background-checked inline-block" | |||
| className="cursor-pointer text-accent-primary inline-block" | |||
| href={ | |||
| isAgent | |||
| ? 'https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent' | |||
| @@ -64,7 +64,7 @@ const SingleDebugSheet = ({ | |||
| {!isEmpty(data) ? ( | |||
| <div | |||
| className={cn('mt-4 rounded-md border', { | |||
| [`border-text-delete-red`]: !isEmpty(data._ERROR), | |||
| [`border-state-error`]: !isEmpty(data._ERROR), | |||
| })} | |||
| > | |||
| <div className="flex justify-between p-2"> | |||
| @@ -71,7 +71,7 @@ function ActionButton<T>({ deleteRecord, record, edit }: ActionButtonProps<T>) { | |||
| }, [deleteRecord, record]); | |||
| return ( | |||
| <div className="flex items-center gap-2 text-text-sub-title"> | |||
| <div className="flex items-center gap-2 text-text-secondary"> | |||
| <PencilLine | |||
| className="size-4 cursor-pointer" | |||
| data-tool={record} | |||
| @@ -106,7 +106,7 @@ export function AgentTools() { | |||
| return ( | |||
| <section className="space-y-2.5"> | |||
| <span className="text-text-sub-title">Tools</span> | |||
| <span className="text-text-secondary">Tools</span> | |||
| <ul className="space-y-2"> | |||
| {toolNames.map((x) => ( | |||
| <ToolCard key={x}> | |||
| @@ -160,7 +160,7 @@ export function Agents({ node }: INextOperatorForm) { | |||
| return ( | |||
| <section className="space-y-2.5"> | |||
| <span className="text-text-sub-title">Agents</span> | |||
| <span className="text-text-secondary">Agents</span> | |||
| <ul className="space-y-2"> | |||
| {subBottomAgentNodeIds.map((id) => { | |||
| const currentNode = getNode(id); | |||
| @@ -66,7 +66,7 @@ export function DynamicVariableForm({ name = 'arguments', isOutputs }: IProps) { | |||
| </FormItem> | |||
| )} | |||
| /> | |||
| <Separator className="w-3 text-text-sub-title" /> | |||
| <Separator className="w-3 text-text-secondary" /> | |||
| <FormField | |||
| control={form.control} | |||
| name={`${name}.${index}.type`} | |||
| @@ -104,7 +104,7 @@ export function DynamicVariableForm({ name = 'arguments', isOutputs }: IProps) { | |||
| } | |||
| export function VariableTitle({ title }: { title: ReactNode }) { | |||
| return <div className="font-medium text-text-title pb-2">{title}</div>; | |||
| return <div className="font-medium text-text-primary pb-2">{title}</div>; | |||
| } | |||
| export function DynamicInputVariable({ | |||
| @@ -22,9 +22,9 @@ export function Output({ list }: OutputProps) { | |||
| {list.map((x, idx) => ( | |||
| <li | |||
| key={idx} | |||
| className="bg-background-highlight text-background-checked rounded-sm px-2 py-1" | |||
| className="bg-background-highlight text-accent-primary rounded-sm px-2 py-1" | |||
| > | |||
| {x.title}: <span className="text-text-sub-title">{x.type}</span> | |||
| {x.title}: <span className="text-text-secondary">{x.type}</span> | |||
| </li> | |||
| ))} | |||
| </ul> | |||
| @@ -160,7 +160,7 @@ export function PromptEditor({ | |||
| placeholder={ | |||
| <div | |||
| className={cn( | |||
| 'absolute top-1 left-2 text-text-sub-title pointer-events-none', | |||
| 'absolute top-1 left-2 text-text-secondary pointer-events-none', | |||
| { | |||
| 'truncate w-[90%]': !multiLine, | |||
| }, | |||
| @@ -75,7 +75,7 @@ export function DynamicOutputForm({ node }: IProps) { | |||
| </FormItem> | |||
| )} | |||
| /> | |||
| <Separator className="w-3 text-text-sub-title" /> | |||
| <Separator className="w-3 text-text-secondary" /> | |||
| <FormField | |||
| control={form.control} | |||
| name={`${name}.${index}.ref`} | |||
| @@ -114,7 +114,7 @@ export function DynamicOutputForm({ node }: IProps) { | |||
| } | |||
| export function VariableTitle({ title }: { title: ReactNode }) { | |||
| return <div className="font-medium text-text-title pb-2">{title}</div>; | |||
| return <div className="font-medium text-text-primary pb-2">{title}</div>; | |||
| } | |||
| export function DynamicOutput({ node }: IProps) { | |||
| @@ -143,7 +143,7 @@ function ConditionCards({ | |||
| <SelectWithSearch | |||
| {...field} | |||
| options={finalOptions} | |||
| triggerClassName="text-background-checked bg-transparent border-none truncate" | |||
| triggerClassName="text-accent-primary bg-transparent border-none truncate" | |||
| ></SelectWithSearch> | |||
| </FormControl> | |||
| <FormMessage /> | |||
| @@ -260,7 +260,7 @@ function SwitchForm({ node }: IOperatorForm) { | |||
| <div className="flex justify-between items-center"> | |||
| <section> | |||
| <span>{index === 0 ? 'IF' : 'ELSEIF'}</span> | |||
| <div className="text-text-sub-title">Case {index + 1}</div> | |||
| <div className="text-text-secondary">Case {index + 1}</div> | |||
| </section> | |||
| {index !== 0 && ( | |||
| <Button | |||
| @@ -46,7 +46,7 @@ function MCPForm() { | |||
| </CardHeader> | |||
| <CardContent className="p-0 text-sm"> | |||
| <span className="pr-2"> URL:</span> | |||
| <a href={data.url} className="text-background-checked"> | |||
| <a href={data.url} className="text-accent-primary"> | |||
| {data.url} | |||
| </a> | |||
| </CardContent> | |||
| @@ -12,7 +12,7 @@ export function MCPCard({ | |||
| {children} | |||
| <section> | |||
| <div className="pb-3 text-sm">{data.name}</div> | |||
| <p className="text-text-sub-title text-xs">{data.description}</p> | |||
| <p className="text-text-secondary text-xs">{data.description}</p> | |||
| </section> | |||
| </CardContent> | |||
| </Card> | |||
| @@ -114,7 +114,7 @@ export default function Agent() { | |||
| </BreadcrumbItem> | |||
| </BreadcrumbList> | |||
| </Breadcrumb> | |||
| <div className="text-xs text-text-sub-title translate-y-3"> | |||
| <div className="text-xs text-text-secondary translate-y-3"> | |||
| {t('flow.autosaved')} {time} | |||
| </div> | |||
| </section> | |||
| @@ -157,13 +157,13 @@ const ToolTimelineItem = ({ | |||
| ] ?? changeToolName(tool.tool_name)} | |||
| </span> | |||
| )} | |||
| <span className="text-text-sub-title text-xs"> | |||
| <span className="text-text-secondary text-xs"> | |||
| {/* 0:00 | |||
| {x.data.elapsed_time?.toString().slice(0, 6)} */} | |||
| </span> | |||
| <span | |||
| className={cn( | |||
| 'border-background -end-1 -top-1 size-2 rounded-full bg-dot-green', | |||
| 'border-background -end-1 -top-1 size-2 rounded-full bg-state--success', | |||
| )} | |||
| > | |||
| <span className="sr-only">Online</span> | |||
| @@ -211,7 +211,7 @@ export const WorkFlowTimeline = ({ | |||
| > | |||
| <TimelineHeader> | |||
| <TimelineSeparator | |||
| className="group-data-[orientation=vertical]/timeline:-left-7 group-data-[orientation=vertical]/timeline:h-[calc(100%-1.5rem-0.25rem)] group-data-[orientation=vertical]/timeline:translate-y-6.5 top-6 bg-background-checked" | |||
| className="group-data-[orientation=vertical]/timeline:-left-7 group-data-[orientation=vertical]/timeline:h-[calc(100%-1.5rem-0.25rem)] group-data-[orientation=vertical]/timeline:translate-y-6.5 top-6 bg-accent-primary" | |||
| style={{ | |||
| background: | |||
| x.data.component_type === 'Agent' | |||
| @@ -271,14 +271,14 @@ export const WorkFlowTimeline = ({ | |||
| ] ?? | |||
| nodeLabel)} | |||
| </span> | |||
| <span className="text-text-sub-title text-xs"> | |||
| <span className="text-text-secondary text-xs"> | |||
| {x.data.elapsed_time?.toString().slice(0, 6)} | |||
| </span> | |||
| <span | |||
| className={cn( | |||
| 'border-background -end-1 -top-1 size-2 rounded-full', | |||
| { 'bg-dot-green': isEmpty(x.data.error) }, | |||
| { 'bg-dot-red': !isEmpty(x.data.error) }, | |||
| { 'bg-state--success': isEmpty(x.data.error) }, | |||
| { 'bg-state--error': !isEmpty(x.data.error) }, | |||
| )} | |||
| > | |||
| <span className="sr-only">Online</span> | |||
| @@ -64,7 +64,7 @@ const OperatorIcon = ({ name, className }: IProps) => { | |||
| if (name === Operator.Begin) { | |||
| return ( | |||
| <div className="inline-block p-1 bg-background-checked rounded-sm"> | |||
| <div className="inline-block p-1 bg-accent-primary rounded-sm"> | |||
| <HousePlus className="rounded size-3" /> | |||
| </div> | |||
| ); | |||
| @@ -92,7 +92,7 @@ export function VersionDialog({ | |||
| <section className="flex justify-between"> | |||
| <div> | |||
| <div className="pb-1 truncate">{agent?.title}</div> | |||
| <p className="text-text-sub-title text-xs"> | |||
| <p className="text-text-secondary text-xs"> | |||
| Created: {formatDate(agent?.create_date)} | |||
| </p> | |||
| </div> | |||
| @@ -37,8 +37,8 @@ export function AgentCard({ data, showAgentRenameModal }: DatasetCardProps) { | |||
| <h3 className="text-lg font-semibold mb-2 line-clamp-1"> | |||
| {data.title} | |||
| </h3> | |||
| <p className="text-xs text-text-sub-title">{data.description}</p> | |||
| <p className="text-xs text-text-sub-title"> | |||
| <p className="text-xs text-text-secondary">{data.description}</p> | |||
| <p className="text-xs text-text-secondary"> | |||
| {formatDate(data.update_time)} | |||
| </p> | |||
| </div> | |||
| @@ -47,7 +47,7 @@ export function AgentDropdown({ | |||
| <DropdownMenuSeparator /> | |||
| <ConfirmDeleteDialog onOk={handleDelete}> | |||
| <DropdownMenuItem | |||
| className="text-text-delete-red" | |||
| className="text-state-error" | |||
| onSelect={(e) => { | |||
| e.preventDefault(); | |||
| }} | |||
| @@ -84,7 +84,7 @@ const CSVFileViewer: React.FC<FileViewerProps> = () => { | |||
| {data.headers.map((header, index) => ( | |||
| <th | |||
| key={`header-${index}`} | |||
| className="px-6 py-3 text-left text-sm font-medium text-text-title" | |||
| className="px-6 py-3 text-left text-sm font-medium text-text-primary" | |||
| > | |||
| {header} | |||
| </th> | |||
| @@ -9,7 +9,7 @@ export function TopTitle({ title, description }: TopTitleProps) { | |||
| return ( | |||
| <div className="pb-5"> | |||
| <div className="text-2xl font-semibold">{title}</div> | |||
| <p className="text-text-sub-title pt-2">{description}</p> | |||
| <p className="text-text-secondary pt-2">{description}</p> | |||
| </div> | |||
| ); | |||
| } | |||
| @@ -62,8 +62,8 @@ export function SideBar({ refreshCount }: PropType) { | |||
| name={data.name} | |||
| className="size-16" | |||
| ></RAGFlowAvatar> | |||
| <div className=" text-text-sub-title text-xs space-y-1"> | |||
| <h3 className="text-lg font-semibold line-clamp-1 text-text-title"> | |||
| <div className=" text-text-secondary text-xs space-y-1"> | |||
| <h3 className="text-lg font-semibold line-clamp-1 text-text-primary"> | |||
| {data.name} | |||
| </h3> | |||
| <div className="flex justify-between"> | |||
| @@ -85,7 +85,7 @@ export function SideBar({ refreshCount }: PropType) { | |||
| 'w-full justify-start gap-2.5 px-3 relative h-10 text-text-sub-title-invert', | |||
| { | |||
| 'bg-bg-card': active, | |||
| 'text-text-title': active, | |||
| 'text-text-primary': active, | |||
| }, | |||
| )} | |||
| onClick={handleMenuClick(item.key)} | |||
| @@ -44,7 +44,7 @@ export default function RetrievalTesting() { | |||
| <section className="flex divide-x h-full"> | |||
| <div className="p-4 flex-1"> | |||
| <div className="flex justify-between pb-2.5"> | |||
| <span className="text-text-title font-semibold text-2xl"> | |||
| <span className="text-text-primary font-semibold text-2xl"> | |||
| Test setting | |||
| </span> | |||
| {/* <Button variant={'outline'} onClick={addCount}> | |||
| @@ -65,7 +65,7 @@ export function TestingResult({ | |||
| return ( | |||
| <div className="p-4 flex-1"> | |||
| <div className="flex justify-between pb-2.5"> | |||
| <span className="text-text-title font-semibold text-2xl"> | |||
| <span className="text-text-primary font-semibold text-2xl"> | |||
| Test results | |||
| </span> | |||
| <FilterPopover | |||
| @@ -55,10 +55,10 @@ export function DatasetCard({ | |||
| <h3 className="text-lg font-semibold mb-2 line-clamp-1"> | |||
| {dataset.name} | |||
| </h3> | |||
| <p className="text-xs text-text-sub-title"> | |||
| <p className="text-xs text-text-secondary"> | |||
| {dataset.doc_num} files | |||
| </p> | |||
| <p className="text-xs text-text-sub-title"> | |||
| <p className="text-xs text-text-secondary"> | |||
| {formatDate(dataset.update_time)} | |||
| </p> | |||
| </div> | |||
| @@ -76,7 +76,7 @@ export function SeeAllCard() { | |||
| className="bg-colors-background-inverse-weak w-40" | |||
| onClick={navigateToDatasetList} | |||
| > | |||
| <CardContent className="p-2.5 pt-1 w-full h-full flex items-center justify-center gap-1.5 text-text-sub-title"> | |||
| <CardContent className="p-2.5 pt-1 w-full h-full flex items-center justify-center gap-1.5 text-text-secondary"> | |||
| See All <ChevronRight className="size-4" /> | |||
| </CardContent> | |||
| </Card> | |||
| @@ -47,7 +47,7 @@ export function DatasetDropdown({ | |||
| <DropdownMenuSeparator /> | |||
| <ConfirmDeleteDialog onOk={handleDelete}> | |||
| <DropdownMenuItem | |||
| className="text-text-delete-red" | |||
| className="text-state-error" | |||
| onSelect={(e) => { | |||
| e.preventDefault(); | |||
| }} | |||
| @@ -25,7 +25,7 @@ export function ApplicationCard({ app }: ApplicationCardProps) { | |||
| <h3 className="text-sm font-normal line-clamp-1 mb-1"> | |||
| {app.title} | |||
| </h3> | |||
| <p className="text-xs font-normal text-text-sub-title"> | |||
| <p className="text-xs font-normal text-text-secondary"> | |||
| {formatDate(app.update_time)} | |||
| </p> | |||
| </div> | |||
| @@ -44,7 +44,7 @@ export type SeeAllAppCardProps = { | |||
| export function SeeAllAppCard({ click }: SeeAllAppCardProps) { | |||
| return ( | |||
| <Card className="w-64 min-h-[76px]" onClick={click}> | |||
| <CardContent className="p-2.5 pt-1 w-full h-full flex items-center justify-center gap-1.5 text-text-sub-title"> | |||
| <CardContent className="p-2.5 pt-1 w-full h-full flex items-center justify-center gap-1.5 text-text-secondary"> | |||
| See All <ChevronRight className="size-4" /> | |||
| </CardContent> | |||
| </Card> | |||
| @@ -43,7 +43,7 @@ export function NextBanner() { | |||
| const { t } = useTranslation(); | |||
| return ( | |||
| <section className="text-5xl pt-10 pb-14 font-bold"> | |||
| <span className="text-text-title">{t('header.welcome')}</span> | |||
| <span className="text-text-primary">{t('header.welcome')}</span> | |||
| <span className="pl-3 text-transparent bg-clip-text bg-gradient-to-l from-[#40EBE3] to-[#4A51FF]"> | |||
| RAGFlow | |||
| </span> | |||
| @@ -34,8 +34,8 @@ export function ChatCard({ data, showChatRenameModal }: IProps) { | |||
| <h3 className="text-lg font-semibold mb-2 line-clamp-1 truncate"> | |||
| {data.name} | |||
| </h3> | |||
| <p className="text-xs text-text-sub-title">{data.description}</p> | |||
| <p className="text-xs text-text-sub-title"> | |||
| <p className="text-xs text-text-secondary">{data.description}</p> | |||
| <p className="text-xs text-text-secondary"> | |||
| {formatDate(data.update_time)} | |||
| </p> | |||
| </div> | |||
| @@ -47,7 +47,7 @@ export function ChatDropdown({ | |||
| <DropdownMenuSeparator /> | |||
| <ConfirmDeleteDialog onOk={handleDelete}> | |||
| <DropdownMenuItem | |||
| className="text-text-delete-red" | |||
| className="text-state-error" | |||
| onSelect={(e) => { | |||
| e.preventDefault(); | |||
| }} | |||
| @@ -133,7 +133,7 @@ export function EditMcpDialog({ | |||
| onClick={handleTest} | |||
| > | |||
| <RefreshCw | |||
| className={cn('text-background-checked', { | |||
| className={cn('text-accent-primary', { | |||
| 'animate-spin': testLoading, | |||
| })} | |||
| /> | |||
| @@ -33,9 +33,9 @@ export default function McpServer() { | |||
| return ( | |||
| <section className="p-4 w-full"> | |||
| <div className="text-text-title text-2xl">MCP Servers</div> | |||
| <div className="text-text-primary text-2xl">MCP Servers</div> | |||
| <section className="flex items-center justify-between pb-5"> | |||
| <div className="text-text-sub-title"> | |||
| <div className="text-text-secondary"> | |||
| Customize the list of MCP servers | |||
| </div> | |||
| <div className="flex gap-5"> | |||
| @@ -36,7 +36,7 @@ export function McpCard({ | |||
| <Card key={data.id} className="w-64"> | |||
| <CardContent className="p-2.5 pt-2 group"> | |||
| <section className="flex justify-between pb-2"> | |||
| <h3 className="text-lg font-semibold line-clamp-1">{data.name}</h3> | |||
| <h3 className="text-lg font-semibold truncate flex-1">{data.name}</h3> | |||
| <div className="space-x-4"> | |||
| <McpDropdown mcpId={data.id} showEditModal={showEditModal}> | |||
| <MoreButton></MoreButton> | |||
| @@ -52,10 +52,10 @@ export function McpCard({ | |||
| </section> | |||
| <div className="flex justify-between items-end"> | |||
| <div className="w-full"> | |||
| <div className="text-base font-semibold mb-3 line-clamp-1 text-text-sub-title"> | |||
| <div className="text-base font-semibold mb-3 line-clamp-1 text-text-secondary"> | |||
| {toolLength} cached tools | |||
| </div> | |||
| <p className="text-sm text-text-sub-title"> | |||
| <p className="text-sm text-text-secondary"> | |||
| {formatDate(data.update_date)} | |||
| </p> | |||
| </div> | |||
| @@ -43,7 +43,7 @@ export function McpDropdown({ | |||
| <DropdownMenuSeparator /> | |||
| <ConfirmDeleteDialog onOk={handleDelete}> | |||
| <DropdownMenuItem | |||
| className="text-text-delete-red" | |||
| className="text-state-error" | |||
| onSelect={(e) => { | |||
| e.preventDefault(); | |||
| }} | |||
| @@ -10,7 +10,7 @@ export function McpToolCard({ data }: McpToolCardProps) { | |||
| <Card> | |||
| <CardContent className="p-2.5 pt-2 group"> | |||
| <h3 className="text-sm font-semibold line-clamp-1 pb-2">{data.name}</h3> | |||
| <div className="text-xs font-normal mb-3 text-text-sub-title"> | |||
| <div className="text-xs font-normal mb-3 text-text-secondary"> | |||
| {data.description} | |||
| </div> | |||
| </CardContent> | |||
| @@ -40,7 +40,6 @@ module.exports = { | |||
| 'colors-text-inverse-strong': 'var(--colors-text-inverse-strong)', | |||
| 'colors-text-persist-light': 'var(--colors-text-persist-light)', | |||
| 'colors-text-inverse-weak': 'var(--colors-text-inverse-weak)', | |||
| 'text-delete-red': 'var(--text-delete-red)', | |||
| 'background-badge': 'var(--background-badge)', | |||
| 'text-badge': 'var(--text-badge)', | |||
| @@ -51,12 +50,9 @@ module.exports = { | |||
| 'background-header-bar': 'var(--background-header-bar)', | |||
| 'background-card': 'var(--background-card)', | |||
| 'background-note': 'var(--background-note)', | |||
| 'background-checked': 'var(--background-checked)', | |||
| 'background-highlight': 'var(--background-highlight)', | |||
| 'input-border': 'var(--input-border)', | |||
| 'dot-green': 'var(--dot-green)', | |||
| 'dot-red': 'var(--dot-red)', | |||
| /* design colors */ | |||
| @@ -70,9 +66,9 @@ module.exports = { | |||
| 'border-button': 'var(--border-button)', | |||
| 'accent-primary': 'var(--accent-primary)', | |||
| 'bg-accent': 'var(--bg-accent)', | |||
| 'state--success': 'var(--state--success)', | |||
| 'state--warning': 'var(--state--warning)', | |||
| 'state--error': 'var(--state--error)', | |||
| 'state-success': 'var(--state-success)', | |||
| 'state-warning': 'var(--state-warning)', | |||
| 'state-error': 'var(--state-error)', | |||
| 'team-group': 'var(--team-group)', | |||
| 'team-member': 'var(--team-member)', | |||
| 'team-department': 'var(--team-department)', | |||
| @@ -61,7 +61,6 @@ | |||
| --colors-text-inverse-strong: rgba(255, 255, 255, 1); | |||
| --colors-text-persist-light: rgba(255, 255, 255, 1); | |||
| --colors-text-inverse-weak: rgba(184, 181, 203, 1); | |||
| --text-delete-red: rgba(216, 73, 75, 1); | |||
| --sidebar-background: 0 0% 98%; | |||
| --sidebar-foreground: 240 5.3% 26.1%; | |||
| @@ -87,12 +86,9 @@ | |||
| --background-note: rgba(22, 22, 24, 0.1); | |||
| --background-checked: rgba(76, 164, 231, 1); | |||
| --background-highlight: rgba(76, 164, 231, 0.1); | |||
| --input-border: rgba(22, 22, 24, 0.2); | |||
| --dot-green: rgba(59, 160, 92, 1); | |||
| --dot-red: rgba(216, 73, 75, 1); | |||
| /* design colors */ | |||
| @@ -115,8 +111,8 @@ | |||
| /* Output Variables Box */ | |||
| --bg-accent: rgba(76, 164, 231, 0.05); | |||
| --state--success: #3ba05c; | |||
| --state--warning: #faad14; | |||
| --state-success: #3ba05c; | |||
| --state-warning: #faad14; | |||
| --state-error: #d8494b; | |||
| --team-group: #5ab77e; | |||
| @@ -211,7 +207,6 @@ | |||
| --colors-text-inverse-strong: rgba(17, 16, 23, 1); | |||
| --colors-text-persist-light: rgba(255, 255, 255, 1); | |||
| --colors-text-inverse-weak: rgba(84, 80, 106, 1); | |||
| --text-delete-red: rgba(216, 73, 75, 1); | |||
| --sidebar-background: 240 5.9% 10%; | |||
| --sidebar-foreground: 240 4.8% 95.9%; | |||
| @@ -231,15 +226,11 @@ | |||
| --background-card: rgba(255, 255, 255, 0.05); | |||
| --background-note: rgba(255, 255, 255, 0.05); | |||
| --background-checked: rgba(76, 164, 231, 1); | |||
| --background-highlight: rgba(76, 164, 231, 0.1); | |||
| --input-border: rgba(255, 255, 255, 0.2); | |||
| --dot-green: rgba(59, 160, 92, 1); | |||
| --dot-red: rgba(216, 73, 75, 1); | |||
| /* design colors */ | |||
| --bg-base: #161618; | |||
| @@ -259,7 +250,7 @@ | |||
| @apply border-border; | |||
| } | |||
| body { | |||
| @apply bg-text-title-invert text-foreground; | |||
| @apply bg-bg-base text-text-primary; | |||
| font-feature-settings: | |||
| 'rlig' 1, | |||
| 'calt' 1; | |||