@@ -88,6 +88,44 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {
88
88
89
89
public String primaryButtonTextFocusColor ;
90
90
91
+ public SimpleThemeVariables () {
92
+ }
93
+
94
+ public SimpleThemeVariables (SimpleThemeVariables other ) {
95
+ this .alertBackgroundColor = other .alertBackgroundColor ;
96
+ this .alertFontColor = other .alertFontColor ;
97
+ this .backgroundImageURL = other .backgroundImageURL ;
98
+ this .backgroundSize = other .backgroundSize ;
99
+ this .borderRadius = other .borderRadius ;
100
+ this .deleteButtonColor = other .deleteButtonColor ;
101
+ this .deleteButtonFocusColor = other .deleteButtonFocusColor ;
102
+ this .deleteButtonTextColor = other .deleteButtonTextColor ;
103
+ this .deleteButtonTextFocusColor = other .deleteButtonTextFocusColor ;
104
+ this .errorFontColor = other .errorFontColor ;
105
+ this .errorIconColor = other .errorIconColor ;
106
+ this .fontColor = other .fontColor ;
107
+ this .fontFamily = other .fontFamily ;
108
+ this .footerDisplay = other .footerDisplay ;
109
+ this .iconBackgroundColor = other .iconBackgroundColor ;
110
+ this .iconColor = other .iconColor ;
111
+ this .infoIconColor = other .infoIconColor ;
112
+ this .inputBackgroundColor = other .inputBackgroundColor ;
113
+ this .inputIconColor = other .inputIconColor ;
114
+ this .inputTextColor = other .inputTextColor ;
115
+ this .linkTextColor = other .linkTextColor ;
116
+ this .linkTextFocusColor = other .linkTextFocusColor ;
117
+ this .logoImageSize = other .logoImageSize ;
118
+ this .logoImageURL = other .logoImageURL ;
119
+ this .monoFontColor = other .monoFontColor ;
120
+ this .monoFontFamily = other .monoFontFamily ;
121
+ this .pageBackgroundColor = other .pageBackgroundColor ;
122
+ this .panelBackgroundColor = other .panelBackgroundColor ;
123
+ this .primaryButtonColor = other .primaryButtonColor ;
124
+ this .primaryButtonFocusColor = other .primaryButtonFocusColor ;
125
+ this .primaryButtonTextColor = other .primaryButtonTextColor ;
126
+ this .primaryButtonTextFocusColor = other .primaryButtonTextFocusColor ;
127
+ }
128
+
91
129
@ Override
92
130
public boolean equals (Object o ) {
93
131
if (this == o ) {
0 commit comments