@argdown/core
    Preparing search index...

    Interface IColorSettings

    interface IColorSettings {
        argumentColors?: { [title: string]: string | number };
        argumentFontColor?: string;
        colorizeByTag?: boolean;
        colorizeGroupsByTag?: boolean;
        colorScheme?: string | string[];
        groupColors?: { [title: string]: string | number };
        groupColorScheme?: string[];
        groupFontColor?: string;
        ignoreColorData?: boolean;
        relationColors?: {
            attack?: string | number;
            contradictory?: string | number;
            contrary?: string | number;
            entails?: string | number;
            support?: string | number;
            undercut?: string | number;
        };
        statementColors?: { [title: string]: string
        | number };
        statementFontColor?: string;
        tagColors?: { [tagName: string]: string | number | ITagData };
    }
    Index

    Properties

    argumentColors?: { [title: string]: string | number }

    A dictionary mapping argument title to colors

    argumentFontColor?: string

    Color of text for argument nodes

    colorizeByTag?: boolean

    Should arguments and statements be colorized by tag?

    colorizeGroupsByTag?: boolean

    Should group be colorized by tag?

    colorScheme?: string | string[]

    A custom color scheme

    The color at index 0 will be used for untagged nodes. The color at index n + 1 will be used for the tag at tagsToColorize[n]

    groupColors?: { [title: string]: string | number }

    A dictionary mapping group title to colors

    groupColorScheme?: string[]

    Color scheme for groups.

    By default this will be applied by group level. Can also be used with colorizeGroupsByTags

    groupFontColor?: string

    Color of text for group nodes

    ignoreColorData?: boolean

    Should colors defined in data elements be ignored?

    relationColors?: {
        attack?: string | number;
        contradictory?: string | number;
        contrary?: string | number;
        entails?: string | number;
        support?: string | number;
        undercut?: string | number;
    }

    colors of relation types

    statementColors?: { [title: string]: string | number }

    A dictionary mapping statement title to colors

    statementFontColor?: string

    Color of text for statement nodes

    tagColors?: { [tagName: string]: string | number | ITagData }

    Can be used to explicitely set colors for specific sets