-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathautocomplete.json
executable file
·30 lines (30 loc) · 1.38 KB
/
autocomplete.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"example": "<span class=\"hljs-keyword\">@use</span> <span class=\"hljs-string\">'@angular/material'</span> as mat;\n\n<span class=\"hljs-comment\">// Customize the entire app. Change :root to your selector if you want to scope the styles.</span>\n<span class=\"hljs-selector-pseudo\">:root</span> {\n <span class=\"hljs-keyword\">@include</span> mat.autocomplete-overrides((\n <span class=\"hljs-attribute\">background-color</span>: orange,\n ));\n}",
"themes": [
{
"name": "autocomplete",
"overridesMixin": "autocomplete-overrides",
"tokens": [
{
"name": "container-shape",
"prefix": "mat-autocomplete",
"type": "base",
"overridesName": "container-shape"
},
{
"name": "container-elevation-shadow",
"prefix": "mat-autocomplete",
"type": "base",
"overridesName": "container-elevation-shadow"
},
{
"name": "background-color",
"prefix": "mat-autocomplete",
"type": "color",
"overridesName": "background-color",
"derivedFrom": "--mat-sys-surface-container"
}
]
}
]
}