Theme

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
name string
description string
systemColors object Key system colors for this theme
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-theme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Theme",
  "title": "Theme",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "enum": [
        "Light",
        "Dark",
        "HighContrast"
      ]
    },
    "description": {
      "type": "string"
    },
    "systemColors": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Key system colors for this theme"
    }
  }
}