Nutrient Web SDK
    Preparing search index...

    Variable NOTE_COLOR_PRESETS

    NOTE_COLOR_PRESETS: ColorPreset[] = ...

    The list of colors to use for note annotations. You can't pass transparent color as an option.

    Yellow, Orange, Red, Fuchsia, Blue, Green
    
    NutrientViewer.Options.NOTE_COLOR_PRESETS = [
    {
    color: new NutrientViewer.Color({ r: 255, g: 0, b: 0 }),
    localization: {
    id: "brightRed",
    defaultMessage: "Bright Red"
    }
    },
    {
    color: new NutrientViewer.Color({ r: 0, g: 0, b: 180 }),
    localization: {
    id: "deepBlue",
    defaultMessage: "Deep Blue"
    }
    }
    }
    ];