Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Theming can be done with CSS variables
--ngx-json-null /* color of null values */
--ngx-json-null-bg /* background color of null values */
--ngx-json-undefined /* color of undefined values */
--ngx-json-undefined-bg /* background color of undefined values */
--ngx-json-toggler /* color of toggler */
--ngx-json-key /* color of keys */
--ngx-json-punctuation /* color of punctuation (':', '{', '}', etc) */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ $type-colors: (
number: var(--ngx-json-number, #098658),
boolean: var(--ngx-json-boolean, #a31515),
date: var(--ngx-json-date, #05668d),
array: var(--ngx-json-array, #656e77),
object: var(--ngx-json-object, #656e77),
function: var(--ngx-json-function, #656e77),
'null': var(--ngx-json-null, #fff),
undefined: var(--ngx-json-undefined, #fff),
Expand Down Expand Up @@ -74,7 +72,7 @@ $type-colors: (
color: var(--ngx-json-undefined-key, #a31515);
}
& > .segment-value {
background-color: var(--ngx-json-undefined-key, #656e77);
background-color: var(--ngx-json-undefined-bg, #656e77);
}
}
.segment-type-object > .segment-main,
Expand Down