colorUtils
require(["esri/views/support/colorUtils"], function(viewColorUtils) { /* code goes here */ });
esri/views/support/colorUtils
Contains utilities for working with colors in the View.
Method Overview
Name | Return Type | Summary | Object | |
---|---|---|---|---|
Promise<Color> | Returns the average color of the view's background within the view's extent. more details | more details | colorUtils | |
Promise<string> | This method inspects the basemap and background of a MapView and returns either | more details | colorUtils |
Method Details
Returns the average color of the view's background within the view's extent. The view's background includes the non-reference base layers of the map's basemap, the background color of the web map (if applicable), and the background color of the view's container.
Parameter:view MapViewThe MapView instance from which to calculate the average color of the background.
Returns:Type Description Promise<Color> Resolves to the average color of the input view's background. Example:viewColorUtils.getBackgroundColor(view) .then(function(averageColor){ // averageColor is the input view's average background color });
This method inspects the basemap and background of a MapView and returns either
light
ordark
as the theme of the background depending on if the average color of the basemap and the view's background is light or dark.The background theme is determined by taking the average color of the view's background and basemap and determining its brightness based on this algorithm for determining color visibility.
Parameter:view MapViewThe MapView instance from which to get the background color theme.
Returns:Type Description Promise<string> Resolves to a string whose value can be either light
ordark
.Example:viewColorUtils.getBackgroundColorTheme(view) .then(function(colorTheme){ if(colorTheme === "dark"){ // style other app elements with a dark theme } });