    // Задать цвет из поля bcColorKey1
     {
        "title": "Наименование",
        "key": "name",
        "type": "input",
        "bgColorKey": "bcColorKey1"
     }
     // Задать цвет из поля bcColorKey2
     {
       "title": "Результат",
       "key": "result",
       "type": "text",
       "bgColorKey": "bcColorKey2"
     }

     // DTOClass.java
      @Getter
      @Setter
      @NoArgsConstructor
      public class DTOClass extends DataResponseDTO {

          private String bcColorKey1;
          private String bcColorKey2;

          private String name;
          private String result;

          public DTOClass(SourceEntity sourceEntity) {

              this.name = sourceEntity.getName();
              this.result = sourceEntity.getResult();

              this.bcColorKey1 = "#6fff4f";
              this.bcColorKey2 = "#ff4f4f"
          }
        }
     