StyleResource

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
key string Resource key name
type string Resource type (Brush, Double, CornerRadius, etc.)
value string Default value
themeVariants object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-styleresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StyleResource",
  "title": "StyleResource",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Resource key name"
    },
    "type": {
      "type": "string",
      "description": "Resource type (Brush, Double, CornerRadius, etc.)"
    },
    "value": {
      "type": "string",
      "description": "Default value"
    },
    "themeVariants": {
      "type": "object",
      "properties": {
        "light": {
          "type": "string"
        },
        "dark": {
          "type": "string"
        },
        "highContrast": {
          "type": "string"
        }
      }
    }
  }
}