---
title: ColorScheme
framework: mapkitjs
role: symbol
role_heading: Enumeration
path: mapkitjs/colorscheme
---

# ColorScheme

Constants that indicate the color scheme of the map or a place detail.

## Declaration

```data
const ColorScheme: Readonly<{
    readonly Dark: "dark";
    readonly Light: "light";
    readonly Adaptive: "adaptive";
}>
type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
```

## Overview

Overview Color schemes apply to maps that have a Standard or MutedStandard map type. Use these constants with the map’s colorScheme property.

## Topics

### Color scheme values

- [Adaptive](mapkitjs/colorscheme/adaptive.md)
- [Light](mapkitjs/colorscheme/light.md)
- [Dark](mapkitjs/colorscheme/dark.md)

## See Also

### Enumerations

- [AddressCategory](mapkitjs/addresscategory.md)
- [AnnotationCollisionMode](mapkitjs/annotationcollisionmode.md)
- [AnnotationDisplayPriority](mapkitjs/annotationdisplaypriority.md)
- [DistanceUnitSystem](mapkitjs/distanceunitsystem.md)
- [FeatureVisibility](mapkitjs/featurevisibility.md)
- [MapFeatureType](mapkitjs/mapfeaturetype.md)
- [MapLoadPriority](mapkitjs/maploadpriority.md)
- [MapType](mapkitjs/maptype.md)
- [PointOfInterestCategory](mapkitjs/pointofinterestcategory.md)
- [RegionPriority](mapkitjs/regionpriority.md)
- [TransportType](mapkitjs/transporttype.md)
