@telus-uds/theme-koodo 3.12.0 → 3.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/android/schema.json +259 -254
- package/build/android/theme.json +67 -5
- package/build/ios/schema.json +259 -254
- package/build/ios/theme.json +67 -5
- package/build/rn/schema.json +259 -254
- package/build/rn/theme.js +27 -4
- package/package.json +3 -3
- package/theme.json +45 -3
package/build/android/theme.json
CHANGED
|
@@ -917,13 +917,75 @@
|
|
|
917
917
|
}
|
|
918
918
|
},
|
|
919
919
|
"Card": {
|
|
920
|
-
"appearances": {
|
|
921
|
-
|
|
920
|
+
"appearances": {
|
|
921
|
+
"background": {
|
|
922
|
+
"description": "Defines background related attributes of Card",
|
|
923
|
+
"type": "variant",
|
|
924
|
+
"values": ["alternative", "subtle", "grid", "feature"]
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"rules": [
|
|
928
|
+
{
|
|
929
|
+
"if": {
|
|
930
|
+
"background": "alternative"
|
|
931
|
+
},
|
|
932
|
+
"tokens": {
|
|
933
|
+
"backgroundColor": {
|
|
934
|
+
"red": 0.89804,
|
|
935
|
+
"green": 0.96863,
|
|
936
|
+
"blue": 0.98431,
|
|
937
|
+
"alpha": 1
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"if": {
|
|
943
|
+
"background": "subtle"
|
|
944
|
+
},
|
|
945
|
+
"tokens": {
|
|
946
|
+
"backgroundColor": {
|
|
947
|
+
"red": 0.98039,
|
|
948
|
+
"green": 0.90196,
|
|
949
|
+
"blue": 0.95686,
|
|
950
|
+
"alpha": 1
|
|
951
|
+
},
|
|
952
|
+
"borderRadius": 8
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"if": {
|
|
957
|
+
"background": "grid"
|
|
958
|
+
},
|
|
959
|
+
"tokens": {
|
|
960
|
+
"borderColor": {
|
|
961
|
+
"red": 0.00392,
|
|
962
|
+
"green": 0.41961,
|
|
963
|
+
"blue": 0.41569,
|
|
964
|
+
"alpha": 1
|
|
965
|
+
},
|
|
966
|
+
"borderRadius": 8,
|
|
967
|
+
"borderWidth": 1
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"if": {
|
|
972
|
+
"background": "feature"
|
|
973
|
+
},
|
|
974
|
+
"tokens": {
|
|
975
|
+
"backgroundColor": {
|
|
976
|
+
"red": 0.97647,
|
|
977
|
+
"green": 0.96471,
|
|
978
|
+
"blue": 0.64706,
|
|
979
|
+
"alpha": 1
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
],
|
|
922
984
|
"tokens": {
|
|
923
985
|
"backgroundColor": {
|
|
924
|
-
"red":
|
|
925
|
-
"green":
|
|
926
|
-
"blue":
|
|
986
|
+
"red": 1,
|
|
987
|
+
"green": 1,
|
|
988
|
+
"blue": 1,
|
|
927
989
|
"alpha": 1
|
|
928
990
|
},
|
|
929
991
|
"borderColor": {
|