mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-12-30 00:13:15 +00:00
22 lines
621 B
TypeScript
22 lines
621 B
TypeScript
import { ButtonVariantType } from '@/components/ui/Button'
|
|
|
|
export const backendBaseUrl = ''
|
|
|
|
export const controlButtonVariant: ButtonVariantType = 'ghost'
|
|
|
|
export const labelColorDarkTheme = '#B2EBF2'
|
|
export const LabelColorHighlightedDarkTheme = '#000'
|
|
|
|
export const nodeColorDisabled = '#E2E2E2'
|
|
export const nodeBorderColor = '#EEEEEE'
|
|
export const nodeBorderColorSelected = '#F57F17'
|
|
|
|
export const edgeColorDarkTheme = '#969696'
|
|
export const edgeColorSelected = '#F57F17'
|
|
export const edgeColorHighlighted = '#B2EBF2'
|
|
|
|
export const searchResultLimit = 20
|
|
|
|
export const minNodeSize = 4
|
|
export const maxNodeSize = 20
|