diff options
Diffstat (limited to 'components/config.ts')
-rw-r--r-- | components/config.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/config.ts b/components/config.ts index 5cc7775..db450d7 100644 --- a/components/config.ts +++ b/components/config.ts @@ -35,7 +35,8 @@ export const initialFilter = { orphans: false, parents: true, fileless_cites: false, - tags: [], + tagsBlacklist: [], + tagsWhitelist: [], nodes: [], links: [], date: [], @@ -86,11 +87,13 @@ export const initialVisuals = { citeDashLength: 35, citeGapLength: 15, citeLinkColor: 'gray.600', + citeLinkHighlightColor: '', citeNodeColor: 'black', refDashes: true, refDashLength: 35, refGapLength: 15, - refLinkColor: 'gray.200', + refLinkColor: 'gray.400', + refLinkHighlightColor: ''. refNodeColor: 'black', } |