sharkich/t-json-viewer

Override the css to change colors of the formatted json

Closed this issue · 1 comments

Hi,

Is there a way to override the css to change the colors of the formatted json? For example, I want to change
.item__type--string .item__value {
color: #FF6B6B;
}

to

.item__type--string .item__value {
color: #fc8cb4;
}

Thanks

Nevermind. I figured how to do it. In case anyone else need to know,

:host /deep/ .item__type--string .item__value {
color: #fc8cb4;
}