2.3.3.7.4. Theme

  • Relative Filepath[1]: ui/theme.yaml

  • Pre-configured: True

[1]: Filepath is relative to the root of the control center directory.

$schema: https://json-schema.org/draft/2020-12/schema
title: meta_dev_issues
description: GitHub issues settings for the project
type: object
default: {}
additionalProperties: false
properties:
  color:
    description: Colors for the project
    type: object
    default: {}
    properties:
      primary:
        description: Primary colors of the project
        type: array
        items: false
        default: [ 135400, 459B24 ]
        prefixItems:
          - type: string
            pattern: ^[0-9a-fA-F]{6}$
          - type: string
            pattern: ^[0-9a-fA-F]{6}$
      secondary:
        description: Secondary colors of the project
        type: array
        items: false
        default: [ 055005, 9CCC00 ]
        prefixItems:
          - type: string
            pattern: ^[0-9a-fA-F]{6}$
          - type: string
            pattern: ^[0-9a-fA-F]{6}$
    required: [ primary, secondary ]
required: [ color ]
color:
  primary:
  - 135400
  - 459B24
  secondary:
  - 55005
  - 9CCC00