Nutrient Web SDK
    Preparing search index...
    COLOR_PRESETS: ColorPreset[] = defaultColorPresets

    The list of colors to use for color dropdowns in annotation toolbars.

    Red, Orange, Yellow, Green, Blue, Purple, Pink, Light Orange, Light Yellow, Light Green, Light Blue, Mauve, Transparent, White, Light Grey, Grey, Dark Grey, Black
    
    NutrientViewer.Options.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"
    }
    },
    {
    color: new NutrientViewer.Color({ transparent: true }),
    localization: {
    id: "transparent",
    defaultMessage: "Transparent"
    }
    }
    ];