You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/alert/README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,14 @@ The both actions that alert will get are the one that for some reason appears in
55
55
56
56
## Theming
57
57
58
-
| Tokens | Themable | Default value |
59
-
| ------------- |:-------------:| -------------:|
60
-
| overlay |`false`|`black 0.80 opacity`|
58
+
| Tokens | Default value |
59
+
| ------------- | -------------:|
60
+
| overlayColor |`black 0.80 opacity`|
61
+
| infoColor |`#CEE0F5`|
62
+
| confirmColor |`#DBF1C4`|
63
+
| warningColor |`#FCF2BD`|
64
+
| errorColor |`#F9CFCF`|
65
+
| focusColor |`#005FCC`|
61
66
62
67
The alert component should use generic colors that are recognizable by the users independent of the application and the context and that is the reason why we don't allow to configure the theme for the alerts.
The other attributes of the autocomplete component are inherited from the input component because it is used internally in the date implementation, so a change in any token of the text field component will affect this component too.
Copy file name to clipboardExpand all lines: components/card/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ The only state that is controlled in the card component is the hover. As it is n
24
24
25
25
## Theming and tokens
26
26
27
-
| Tokens |Themable | Default value |
28
-
| ------------- |:-------------:| -------------:|
29
-
| backgroundColor |`false`|`#FFFFFF`|
27
+
| Tokens | Default value |
28
+
| ------------- | -------------:|
29
+
| backgroundColor |`#FFFFFF`|
30
30
31
31
As the Card component is using the Box to be build, the values for the background are inherited from the definition in the component. By default, the background color is white and not themable, so it will be the same for both components.
Copy file name to clipboardExpand all lines: components/checkbox/README.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,17 @@ Five different states are defined in the life cycle of the component: __enabled_
25
25
26
26
## Theming and tokens
27
27
28
-
| Tokens | Themable | Default value |
29
-
| ------------- |:-------------:| -------------:|
30
-
|*backgroundColor|`true`|`#0067B3`|
31
-
|*borderColor |`true`|`#0067B3`|
32
-
| checkColor |`true`|`#FFFFFF`|
33
-
| disabled |`false`|`0.34 opacity`|
34
-
| text |`false`|`#000000/inherit`|
28
+
| Tokens | Default value |
29
+
| ------------- | -------------:|
30
+
| backgroundColorChecked|`#0067b3`|
31
+
| borderColor |`#0067b3`|
32
+
| checkColor |`#FFFFFF`|
33
+
| fontColor |`black/inherit`|
34
+
| disabledBackgroundColorChecked |`#b1cee6`|
35
+
| disabledBorderColor |`#b1cee6`|
36
+
| disabledCheckColor |`#FFFFFF`|
37
+
| disabledFontColor |`#b1b1b1`|
38
+
| focusColor |`#005FCC`|
35
39
36
40
*There is a relation between the _backgroundColor_ of the component and the _borderColor_ in the case that the checkbox is unselected. The color will be the same for both scenarios.
The other attributes of the date component are inherited from the input component because it is used internally in the date implementation, so a change in any token of the text field component will affect this component too.
Copy file name to clipboardExpand all lines: components/dropdown/README.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,15 +34,17 @@ Six different states for the dropdown elememts: __default__, __dropdown displaye
34
34
35
35
### Theming
36
36
37
-
| Tokens | Themable | Default value |
38
-
| ------------- |:-------------:| -------------:|
39
-
| backgroundColor |`true`|`#FFFFFF`|
40
-
| dropdownBackgroundColor |`false`|`#FFFFFF`|
41
-
| textColor |`true`|`#000000`|
42
-
| dropdownTextColor |`false`|`#000000`|
43
-
| hoverBackgroundOption |`false`|`0.34 opacity`|
44
-
| hoverBackgroundColor |`true`|`0.80 opacity`|
45
-
| disabled |`true`|`0.34 opacity`|
37
+
| Tokens | Default value |
38
+
| ------------- | -------------:|
39
+
| backgroundColor |`#FFFFFF`|
40
+
| fontColor |`#000000`|
41
+
| dropdownBackgroundColor |`#FFFFFF`|
42
+
| dropdownFontColor |`#000000`|
43
+
| hoverBackgroundOption |`#ffffff`|
44
+
| hoverBackgroundColor |`#ffffff`|
45
+
| scrollBarThumbColor |`#666666`|
46
+
| scrollBarTrackColor |`#D9D9D9`|
47
+
| focusColor |`#005FCC`|
46
48
47
49
The dropdown itself cannot be configured, the component only allows the configuration of the trigger through the background color and the color of the text.
0 commit comments