diff options
Diffstat (limited to 'components/config.ts')
-rw-r--r-- | components/config.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/config.ts b/components/config.ts index e9471f8..0544b58 100644 --- a/components/config.ts +++ b/components/config.ts @@ -35,7 +35,6 @@ export const initialFilter = { orphans: false, parents: true, tags: [], - tagColors: [], nodes: [], links: [], date: [], @@ -89,6 +88,10 @@ export const initialVisuals = { citeNodeColor: 'black', } +export interface TagColors { + [tag: string]: string +} + export const initialBehavior = { follow: 'zoom', localSame: 'add', |