ThemeConfigs
TypeSource
ThemeConfigs(
bgColor: NotRequired[str],
booleanColor: NotRequired[str],
borderColor: NotRequired[str],
cellBorderColor: NotRequired[str],
indexColor: NotRequired[str],
keyColor: NotRequired[str],
numberColor: NotRequired[str],
objectColor: NotRequired[str],
searchHighlightBgColor: NotRequired[str],
selectHighlightBgColor: NotRequired[str],
stringColor: NotRequired[str],
tableHeaderBgColor: NotRequired[str],
tableIconColor: NotRequired[str],
)
ThemeConfigs
is a TypedDict
.
Detailed configuration for defining a customized theme.
Aliases
This type can be acquired by
import dash_json_grid as djg
djg.ThemeConfigs
djg.typehints.ThemeConfigs
Keywords
Keyword | Type | Required | |
---|---|---|---|
bgColor | str | Background color of the whole grid view. | |
booleanColor | str | Text color of boolean variables. | |
borderColor | str | Border color of the whole grid view. | |
cellBorderColor | str | Background color of table cells. | |
indexColor | str | Text color of sequence indicies. | |
keyColor | str | Text color of mapping keys. | |
numberColor | str | Text color of numeric values. | |
objectColor | str | Text color of unrecognized objects. | |
searchHighlightBgColor | str | Background color of the part highlighted by the search. | |
selectHighlightBgColor | str | Background color when this part is highlighted by the selection. | |
stringColor | str | Text color of strings. | |
tableHeaderBgColor | str | Background color of the table header. | |
tableIconColor | str | Text color of the icon in the table header. |