@telus-uds/theme-koodo 4.6.0 → 4.8.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 +976 -643
- package/build/android/theme.json +598 -138
- package/build/ios/schema.json +976 -643
- package/build/ios/theme.json +598 -138
- package/build/rn/schema.json +976 -643
- package/build/rn/theme.js +402 -76
- package/package.json +4 -4
- package/theme.json +458 -69
package/build/android/theme.json
CHANGED
|
@@ -1662,7 +1662,7 @@
|
|
|
1662
1662
|
},
|
|
1663
1663
|
"padding": {
|
|
1664
1664
|
"type": "variant",
|
|
1665
|
-
"values": ["custom"]
|
|
1665
|
+
"values": ["narrow", "intermediate", "compact", "custom"]
|
|
1666
1666
|
},
|
|
1667
1667
|
"viewport": {
|
|
1668
1668
|
"description": "The size label for the current screen viewport based on the current screen width",
|
|
@@ -1681,7 +1681,9 @@
|
|
|
1681
1681
|
"green": 0.96863,
|
|
1682
1682
|
"blue": 0.98431,
|
|
1683
1683
|
"alpha": 1
|
|
1684
|
-
}
|
|
1684
|
+
},
|
|
1685
|
+
"borderRadius": 0,
|
|
1686
|
+
"borderWidth": 0
|
|
1685
1687
|
}
|
|
1686
1688
|
},
|
|
1687
1689
|
{
|
|
@@ -1695,7 +1697,7 @@
|
|
|
1695
1697
|
"blue": 0.95686,
|
|
1696
1698
|
"alpha": 1
|
|
1697
1699
|
},
|
|
1698
|
-
"
|
|
1700
|
+
"borderWidth": 0
|
|
1699
1701
|
}
|
|
1700
1702
|
},
|
|
1701
1703
|
{
|
|
@@ -1709,7 +1711,6 @@
|
|
|
1709
1711
|
"blue": 0.41569,
|
|
1710
1712
|
"alpha": 1
|
|
1711
1713
|
},
|
|
1712
|
-
"borderRadius": 8,
|
|
1713
1714
|
"borderWidth": 1
|
|
1714
1715
|
}
|
|
1715
1716
|
},
|
|
@@ -1723,7 +1724,9 @@
|
|
|
1723
1724
|
"green": 0.96471,
|
|
1724
1725
|
"blue": 0.64706,
|
|
1725
1726
|
"alpha": 1
|
|
1726
|
-
}
|
|
1727
|
+
},
|
|
1728
|
+
"borderRadius": 0,
|
|
1729
|
+
"borderWidth": 0
|
|
1727
1730
|
}
|
|
1728
1731
|
},
|
|
1729
1732
|
{
|
|
@@ -1737,6 +1740,63 @@
|
|
|
1737
1740
|
"paddingTop": 48
|
|
1738
1741
|
}
|
|
1739
1742
|
},
|
|
1743
|
+
{
|
|
1744
|
+
"if": {
|
|
1745
|
+
"padding": "narrow"
|
|
1746
|
+
},
|
|
1747
|
+
"tokens": {
|
|
1748
|
+
"paddingBottom": 24,
|
|
1749
|
+
"paddingLeft": 16,
|
|
1750
|
+
"paddingRight": 16,
|
|
1751
|
+
"paddingTop": 24
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"if": {
|
|
1756
|
+
"padding": "narrow",
|
|
1757
|
+
"viewport": ["md", "lg", "xl"]
|
|
1758
|
+
},
|
|
1759
|
+
"tokens": {
|
|
1760
|
+
"paddingBottom": 32,
|
|
1761
|
+
"paddingLeft": 16,
|
|
1762
|
+
"paddingRight": 16,
|
|
1763
|
+
"paddingTop": 32
|
|
1764
|
+
}
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"if": {
|
|
1768
|
+
"padding": "intermediate"
|
|
1769
|
+
},
|
|
1770
|
+
"tokens": {
|
|
1771
|
+
"paddingBottom": 24,
|
|
1772
|
+
"paddingLeft": 24,
|
|
1773
|
+
"paddingRight": 24,
|
|
1774
|
+
"paddingTop": 24
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"if": {
|
|
1779
|
+
"padding": "intermediate",
|
|
1780
|
+
"viewport": ["md", "lg", "xl"]
|
|
1781
|
+
},
|
|
1782
|
+
"tokens": {
|
|
1783
|
+
"paddingBottom": 32,
|
|
1784
|
+
"paddingLeft": 32,
|
|
1785
|
+
"paddingRight": 32,
|
|
1786
|
+
"paddingTop": 32
|
|
1787
|
+
}
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"if": {
|
|
1791
|
+
"padding": "compact"
|
|
1792
|
+
},
|
|
1793
|
+
"tokens": {
|
|
1794
|
+
"paddingBottom": 16,
|
|
1795
|
+
"paddingLeft": 16,
|
|
1796
|
+
"paddingRight": 16,
|
|
1797
|
+
"paddingTop": 16
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1740
1800
|
{
|
|
1741
1801
|
"if": {
|
|
1742
1802
|
"padding": "custom"
|
|
@@ -1769,6 +1829,7 @@
|
|
|
1769
1829
|
"contentFlexShrink": 1,
|
|
1770
1830
|
"contentJustifyContent": "flex-start",
|
|
1771
1831
|
"flex": 1,
|
|
1832
|
+
"gradient": null,
|
|
1772
1833
|
"minWidth": null,
|
|
1773
1834
|
"paddingBottom": 32,
|
|
1774
1835
|
"paddingLeft": 24,
|
|
@@ -2684,12 +2745,6 @@
|
|
|
2684
2745
|
"mini": true
|
|
2685
2746
|
},
|
|
2686
2747
|
"tokens": {
|
|
2687
|
-
"backgroundColor": {
|
|
2688
|
-
"red": 0,
|
|
2689
|
-
"green": 0,
|
|
2690
|
-
"blue": 0,
|
|
2691
|
-
"alpha": 0
|
|
2692
|
-
},
|
|
2693
2748
|
"borderColor": {
|
|
2694
2749
|
"red": 0,
|
|
2695
2750
|
"green": 0,
|
|
@@ -2772,10 +2827,24 @@
|
|
|
2772
2827
|
},
|
|
2773
2828
|
"ExpandCollapseMiniControl": {
|
|
2774
2829
|
"appearances": {
|
|
2830
|
+
"alternative": {
|
|
2831
|
+
"description": "Replaces the default green colour with black",
|
|
2832
|
+
"type": "variant",
|
|
2833
|
+
"values": [true]
|
|
2834
|
+
},
|
|
2775
2835
|
"expanded": {
|
|
2776
2836
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
2777
2837
|
"values": [true],
|
|
2778
2838
|
"type": "state"
|
|
2839
|
+
},
|
|
2840
|
+
"inverse": {
|
|
2841
|
+
"description": "Replaces the default green colour with white. Useful for dark backgrounds.",
|
|
2842
|
+
"type": "variant",
|
|
2843
|
+
"values": [true]
|
|
2844
|
+
},
|
|
2845
|
+
"size": {
|
|
2846
|
+
"type": "variant",
|
|
2847
|
+
"values": ["micro", "small", "large"]
|
|
2779
2848
|
}
|
|
2780
2849
|
},
|
|
2781
2850
|
"rules": [
|
|
@@ -2786,15 +2855,70 @@
|
|
|
2786
2855
|
"tokens": {
|
|
2787
2856
|
"icon": "PaletteIconChevronUp"
|
|
2788
2857
|
}
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
"if": {
|
|
2861
|
+
"alternative": true
|
|
2862
|
+
},
|
|
2863
|
+
"tokens": {
|
|
2864
|
+
"color": {
|
|
2865
|
+
"red": 0,
|
|
2866
|
+
"green": 0,
|
|
2867
|
+
"blue": 0,
|
|
2868
|
+
"alpha": 1
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
"if": {
|
|
2874
|
+
"inverse": true
|
|
2875
|
+
},
|
|
2876
|
+
"tokens": {
|
|
2877
|
+
"color": {
|
|
2878
|
+
"red": 1,
|
|
2879
|
+
"green": 1,
|
|
2880
|
+
"blue": 1,
|
|
2881
|
+
"alpha": 1
|
|
2882
|
+
},
|
|
2883
|
+
"iconColor": {
|
|
2884
|
+
"red": 1,
|
|
2885
|
+
"green": 1,
|
|
2886
|
+
"blue": 1,
|
|
2887
|
+
"alpha": 1
|
|
2888
|
+
}
|
|
2889
|
+
}
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
"if": {
|
|
2893
|
+
"size": "micro"
|
|
2894
|
+
},
|
|
2895
|
+
"tokens": {
|
|
2896
|
+
"fontSize": 12,
|
|
2897
|
+
"iconSize": 16,
|
|
2898
|
+
"lineHeight": 1.33333333333
|
|
2899
|
+
}
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"if": {
|
|
2903
|
+
"size": "small"
|
|
2904
|
+
},
|
|
2905
|
+
"tokens": {
|
|
2906
|
+
"fontSize": 14,
|
|
2907
|
+
"iconSize": 20,
|
|
2908
|
+
"lineHeight": 1.45
|
|
2909
|
+
}
|
|
2910
|
+
},
|
|
2911
|
+
{
|
|
2912
|
+
"if": {
|
|
2913
|
+
"size": "large"
|
|
2914
|
+
},
|
|
2915
|
+
"tokens": {
|
|
2916
|
+
"fontSize": 20,
|
|
2917
|
+
"lineHeight": 1.45
|
|
2918
|
+
}
|
|
2789
2919
|
}
|
|
2790
2920
|
],
|
|
2791
2921
|
"tokens": {
|
|
2792
|
-
"backgroundColor": {
|
|
2793
|
-
"red": 0,
|
|
2794
|
-
"green": 0,
|
|
2795
|
-
"blue": 0,
|
|
2796
|
-
"alpha": 0
|
|
2797
|
-
},
|
|
2798
2922
|
"borderColor": {
|
|
2799
2923
|
"red": 0,
|
|
2800
2924
|
"green": 0,
|
|
@@ -2802,6 +2926,13 @@
|
|
|
2802
2926
|
"alpha": 0
|
|
2803
2927
|
},
|
|
2804
2928
|
"borderWidth": 0,
|
|
2929
|
+
"color": {
|
|
2930
|
+
"red": 0.00392,
|
|
2931
|
+
"green": 0.41961,
|
|
2932
|
+
"blue": 0.41569,
|
|
2933
|
+
"alpha": 1
|
|
2934
|
+
},
|
|
2935
|
+
"fontSize": 16,
|
|
2805
2936
|
"icon": "PaletteIconChevronDown",
|
|
2806
2937
|
"iconColor": {
|
|
2807
2938
|
"red": 0,
|
|
@@ -2812,13 +2943,15 @@
|
|
|
2812
2943
|
"iconGap": 8,
|
|
2813
2944
|
"iconPaddingTop": 4,
|
|
2814
2945
|
"iconPosition": "left",
|
|
2815
|
-
"iconSize":
|
|
2946
|
+
"iconSize": 24,
|
|
2816
2947
|
"justifyContent": "flex-start",
|
|
2948
|
+
"lineHeight": 1.45,
|
|
2817
2949
|
"paddingBottom": 0,
|
|
2818
2950
|
"paddingLeft": 0,
|
|
2819
2951
|
"paddingRight": 0,
|
|
2820
2952
|
"paddingTop": 0,
|
|
2821
2953
|
"size": 4,
|
|
2954
|
+
"textLine": "none",
|
|
2822
2955
|
"verticalAlign": "middle"
|
|
2823
2956
|
}
|
|
2824
2957
|
},
|
|
@@ -2872,6 +3005,33 @@
|
|
|
2872
3005
|
"contentPaddingLeft": 16,
|
|
2873
3006
|
"contentPaddingRight": 16,
|
|
2874
3007
|
"contentPaddingTop": 16,
|
|
3008
|
+
"contentPanelBackgroundColor": {
|
|
3009
|
+
"red": 0.93725,
|
|
3010
|
+
"green": 0.93725,
|
|
3011
|
+
"blue": 0.93725,
|
|
3012
|
+
"alpha": 1
|
|
3013
|
+
},
|
|
3014
|
+
"contentPanelBorderColor": {
|
|
3015
|
+
"red": 0,
|
|
3016
|
+
"green": 0,
|
|
3017
|
+
"blue": 0,
|
|
3018
|
+
"alpha": 0
|
|
3019
|
+
},
|
|
3020
|
+
"contentPanelBorderWidth": 0,
|
|
3021
|
+
"contentPanelFontColor": {
|
|
3022
|
+
"red": 0,
|
|
3023
|
+
"green": 0,
|
|
3024
|
+
"blue": 0,
|
|
3025
|
+
"alpha": 1
|
|
3026
|
+
},
|
|
3027
|
+
"contentPanelFontName": "StagSans",
|
|
3028
|
+
"contentPanelFontSize": 16,
|
|
3029
|
+
"contentPanelFontWeight": 700,
|
|
3030
|
+
"contentPanelLineHeight": 1.5,
|
|
3031
|
+
"contentPanelPaddingBottom": 16,
|
|
3032
|
+
"contentPanelPaddingLeft": 24,
|
|
3033
|
+
"contentPanelPaddingRight": 24,
|
|
3034
|
+
"contentPanelPaddingTop": 16,
|
|
2875
3035
|
"expandDividerColor": {
|
|
2876
3036
|
"red": 0,
|
|
2877
3037
|
"green": 0,
|
|
@@ -4614,25 +4774,31 @@
|
|
|
4614
4774
|
},
|
|
4615
4775
|
"tokens": {
|
|
4616
4776
|
"backgroundColor": {
|
|
4617
|
-
"red": 0.
|
|
4618
|
-
"green": 0.
|
|
4619
|
-
"blue": 0.
|
|
4777
|
+
"red": 0.00392,
|
|
4778
|
+
"green": 0.41961,
|
|
4779
|
+
"blue": 0.41569,
|
|
4620
4780
|
"alpha": 1
|
|
4621
4781
|
},
|
|
4622
4782
|
"borderColor": {
|
|
4623
|
-
"red": 0.
|
|
4624
|
-
"green": 0.
|
|
4625
|
-
"blue": 0.
|
|
4783
|
+
"red": 0.00392,
|
|
4784
|
+
"green": 0.41961,
|
|
4785
|
+
"blue": 0.41569,
|
|
4626
4786
|
"alpha": 1
|
|
4627
4787
|
},
|
|
4628
4788
|
"color": {
|
|
4789
|
+
"red": 1,
|
|
4790
|
+
"green": 1,
|
|
4791
|
+
"blue": 1,
|
|
4792
|
+
"alpha": 1
|
|
4793
|
+
},
|
|
4794
|
+
"fontName": "StagSans",
|
|
4795
|
+
"fontWeight": 600,
|
|
4796
|
+
"outerBorderColor": {
|
|
4629
4797
|
"red": 0.00392,
|
|
4630
4798
|
"green": 0.41961,
|
|
4631
4799
|
"blue": 0.41569,
|
|
4632
4800
|
"alpha": 1
|
|
4633
|
-
}
|
|
4634
|
-
"fontName": "StagSans",
|
|
4635
|
-
"fontWeight": 700
|
|
4801
|
+
}
|
|
4636
4802
|
}
|
|
4637
4803
|
},
|
|
4638
4804
|
{
|
|
@@ -4641,22 +4807,22 @@
|
|
|
4641
4807
|
},
|
|
4642
4808
|
"tokens": {
|
|
4643
4809
|
"backgroundColor": {
|
|
4644
|
-
"red": 0.
|
|
4645
|
-
"green": 0.
|
|
4646
|
-
"blue": 0.
|
|
4810
|
+
"red": 0.34902,
|
|
4811
|
+
"green": 0.34902,
|
|
4812
|
+
"blue": 0.34902,
|
|
4647
4813
|
"alpha": 1
|
|
4648
4814
|
},
|
|
4649
4815
|
"borderColor": {
|
|
4650
|
-
"red": 0.
|
|
4651
|
-
"green": 0.
|
|
4652
|
-
"blue": 0.
|
|
4816
|
+
"red": 0.34902,
|
|
4817
|
+
"green": 0.34902,
|
|
4818
|
+
"blue": 0.34902,
|
|
4653
4819
|
"alpha": 1
|
|
4654
4820
|
},
|
|
4655
4821
|
"borderWidth": 1,
|
|
4656
4822
|
"color": {
|
|
4657
|
-
"red": 0.
|
|
4658
|
-
"green": 0.
|
|
4659
|
-
"blue": 0.
|
|
4823
|
+
"red": 0.78824,
|
|
4824
|
+
"green": 0.78431,
|
|
4825
|
+
"blue": 0.78431,
|
|
4660
4826
|
"alpha": 1
|
|
4661
4827
|
}
|
|
4662
4828
|
}
|
|
@@ -4666,10 +4832,44 @@
|
|
|
4666
4832
|
"viewport": ["xs", "sm", "md"]
|
|
4667
4833
|
},
|
|
4668
4834
|
"tokens": {
|
|
4669
|
-
"textAlign": "
|
|
4835
|
+
"textAlign": "space-between",
|
|
4670
4836
|
"width": 288
|
|
4671
4837
|
}
|
|
4672
4838
|
},
|
|
4839
|
+
{
|
|
4840
|
+
"if": {
|
|
4841
|
+
"pressed": true,
|
|
4842
|
+
"selected": true
|
|
4843
|
+
},
|
|
4844
|
+
"tokens": {
|
|
4845
|
+
"backgroundColor": {
|
|
4846
|
+
"red": 0.34902,
|
|
4847
|
+
"green": 0.34902,
|
|
4848
|
+
"blue": 0.34902,
|
|
4849
|
+
"alpha": 1
|
|
4850
|
+
},
|
|
4851
|
+
"borderColor": {
|
|
4852
|
+
"red": 0.34902,
|
|
4853
|
+
"green": 0.34902,
|
|
4854
|
+
"blue": 0.34902,
|
|
4855
|
+
"alpha": 1
|
|
4856
|
+
},
|
|
4857
|
+
"color": {
|
|
4858
|
+
"red": 0.78824,
|
|
4859
|
+
"green": 0.78431,
|
|
4860
|
+
"blue": 0.78431,
|
|
4861
|
+
"alpha": 1
|
|
4862
|
+
},
|
|
4863
|
+
"fontName": "StagSans",
|
|
4864
|
+
"fontWeight": 600,
|
|
4865
|
+
"outerBorderColor": {
|
|
4866
|
+
"red": 0.34902,
|
|
4867
|
+
"green": 0.34902,
|
|
4868
|
+
"blue": 0.34902,
|
|
4869
|
+
"alpha": 1
|
|
4870
|
+
}
|
|
4871
|
+
}
|
|
4872
|
+
},
|
|
4673
4873
|
{
|
|
4674
4874
|
"if": {
|
|
4675
4875
|
"expanded": true
|
|
@@ -4693,19 +4893,19 @@
|
|
|
4693
4893
|
"blue": 1,
|
|
4694
4894
|
"alpha": 1
|
|
4695
4895
|
},
|
|
4696
|
-
"borderRadius":
|
|
4697
|
-
"borderWidth":
|
|
4896
|
+
"borderRadius": 4,
|
|
4897
|
+
"borderWidth": 4,
|
|
4698
4898
|
"color": {
|
|
4699
|
-
"red": 0
|
|
4700
|
-
"green": 0
|
|
4701
|
-
"blue": 0
|
|
4899
|
+
"red": 0,
|
|
4900
|
+
"green": 0,
|
|
4901
|
+
"blue": 0,
|
|
4702
4902
|
"alpha": 1
|
|
4703
4903
|
},
|
|
4704
4904
|
"fontName": "StagSans",
|
|
4705
4905
|
"fontSize": 14,
|
|
4706
|
-
"fontWeight":
|
|
4906
|
+
"fontWeight": 600,
|
|
4707
4907
|
"icoMenu": "PaletteIconChevronDown",
|
|
4708
|
-
"lineHeight": 1.
|
|
4908
|
+
"lineHeight": 1.45,
|
|
4709
4909
|
"minWidth": 0,
|
|
4710
4910
|
"opacity": 1,
|
|
4711
4911
|
"outerBackgroundColor": {
|
|
@@ -4721,11 +4921,11 @@
|
|
|
4721
4921
|
"alpha": 0
|
|
4722
4922
|
},
|
|
4723
4923
|
"outerBorderGap": 0,
|
|
4724
|
-
"outerBorderWidth":
|
|
4725
|
-
"paddingBottom":
|
|
4924
|
+
"outerBorderWidth": 0,
|
|
4925
|
+
"paddingBottom": 6,
|
|
4726
4926
|
"paddingLeft": 16,
|
|
4727
4927
|
"paddingRight": 16,
|
|
4728
|
-
"paddingTop":
|
|
4928
|
+
"paddingTop": 6,
|
|
4729
4929
|
"shadow": null,
|
|
4730
4930
|
"textAlign": "center",
|
|
4731
4931
|
"width": 0
|
|
@@ -7184,22 +7384,32 @@
|
|
|
7184
7384
|
}
|
|
7185
7385
|
},
|
|
7186
7386
|
"SkipLink": {
|
|
7187
|
-
"appearances": {
|
|
7188
|
-
|
|
7189
|
-
|
|
7387
|
+
"appearances": {
|
|
7388
|
+
"pressed": {
|
|
7389
|
+
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
7390
|
+
"values": [true, false],
|
|
7391
|
+
"type": "state"
|
|
7392
|
+
}
|
|
7393
|
+
},
|
|
7394
|
+
"rules": [],
|
|
7395
|
+
"tokens": {
|
|
7190
7396
|
"backgroundColor": {
|
|
7191
|
-
"red": 0.10588,
|
|
7192
|
-
"green": 0.27843,
|
|
7193
|
-
"blue": 0.27451,
|
|
7194
|
-
"alpha": 1
|
|
7195
|
-
},
|
|
7196
|
-
"borderRadius": 12,
|
|
7197
|
-
"color": {
|
|
7198
7397
|
"red": 1,
|
|
7199
7398
|
"green": 1,
|
|
7200
7399
|
"blue": 1,
|
|
7201
7400
|
"alpha": 1
|
|
7202
7401
|
},
|
|
7402
|
+
"borderRadius": 4,
|
|
7403
|
+
"color": {
|
|
7404
|
+
"red": 0.00392,
|
|
7405
|
+
"green": 0.41961,
|
|
7406
|
+
"blue": 0.41569,
|
|
7407
|
+
"alpha": 1
|
|
7408
|
+
},
|
|
7409
|
+
"fontName": "StagSans",
|
|
7410
|
+
"fontSize": 16,
|
|
7411
|
+
"fontWeight": 600,
|
|
7412
|
+
"lineHeight": 1.5,
|
|
7203
7413
|
"outlineColor": {
|
|
7204
7414
|
"red": 0.00392,
|
|
7205
7415
|
"green": 0.41961,
|
|
@@ -7209,8 +7419,9 @@
|
|
|
7209
7419
|
"outlineOffset": 0,
|
|
7210
7420
|
"outlineStyle": "solid",
|
|
7211
7421
|
"outlineWidth": 2,
|
|
7212
|
-
"paddingHorizontal":
|
|
7213
|
-
"paddingVertical":
|
|
7422
|
+
"paddingHorizontal": 2,
|
|
7423
|
+
"paddingVertical": 2,
|
|
7424
|
+
"textLine": "underline"
|
|
7214
7425
|
}
|
|
7215
7426
|
},
|
|
7216
7427
|
"Spinner": {
|
|
@@ -7623,18 +7834,180 @@
|
|
|
7623
7834
|
"Table": {
|
|
7624
7835
|
"appearances": {
|
|
7625
7836
|
"spacing": {
|
|
7837
|
+
"description": "Adjusts the height of the table cell",
|
|
7838
|
+
"type": "variant",
|
|
7839
|
+
"values": ["compact", "default"]
|
|
7840
|
+
},
|
|
7841
|
+
"text": {
|
|
7842
|
+
"type": "variant",
|
|
7843
|
+
"values": ["small"]
|
|
7844
|
+
},
|
|
7845
|
+
"type": {
|
|
7626
7846
|
"type": "variant",
|
|
7627
|
-
"values": ["
|
|
7847
|
+
"values": ["subHeading", "rowHeading", "heading", "default"]
|
|
7628
7848
|
}
|
|
7629
7849
|
},
|
|
7630
7850
|
"rules": [
|
|
7631
7851
|
{
|
|
7632
7852
|
"if": {
|
|
7633
|
-
"spacing": "compact"
|
|
7853
|
+
"spacing": "compact",
|
|
7854
|
+
"type": "default"
|
|
7855
|
+
},
|
|
7856
|
+
"tokens": {
|
|
7857
|
+
"cellPaddingBottom": 8,
|
|
7858
|
+
"cellPaddingTop": 8,
|
|
7859
|
+
"fontSize": 16,
|
|
7860
|
+
"lineHeight": 1.25
|
|
7861
|
+
}
|
|
7862
|
+
},
|
|
7863
|
+
{
|
|
7864
|
+
"if": {
|
|
7865
|
+
"spacing": "compact",
|
|
7866
|
+
"type": "rowHeading"
|
|
7867
|
+
},
|
|
7868
|
+
"tokens": {
|
|
7869
|
+
"cellPaddingBottom": 8,
|
|
7870
|
+
"cellPaddingTop": 8,
|
|
7871
|
+
"fontName": "StagSans",
|
|
7872
|
+
"fontSize": 16,
|
|
7873
|
+
"fontWeight": 600,
|
|
7874
|
+
"lineHeight": 1.25
|
|
7875
|
+
}
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
"if": {
|
|
7879
|
+
"spacing": "compact",
|
|
7880
|
+
"type": "subHeading"
|
|
7634
7881
|
},
|
|
7635
7882
|
"tokens": {
|
|
7883
|
+
"cellBackground": {
|
|
7884
|
+
"red": 0.98039,
|
|
7885
|
+
"green": 0.98039,
|
|
7886
|
+
"blue": 0.98039,
|
|
7887
|
+
"alpha": 1
|
|
7888
|
+
},
|
|
7636
7889
|
"cellPaddingBottom": 8,
|
|
7637
|
-
"cellPaddingTop": 8
|
|
7890
|
+
"cellPaddingTop": 8,
|
|
7891
|
+
"fontName": "StagSans",
|
|
7892
|
+
"fontSize": 16,
|
|
7893
|
+
"fontWeight": 600,
|
|
7894
|
+
"lineHeight": 1.25
|
|
7895
|
+
}
|
|
7896
|
+
},
|
|
7897
|
+
{
|
|
7898
|
+
"if": {
|
|
7899
|
+
"spacing": "default",
|
|
7900
|
+
"type": "heading"
|
|
7901
|
+
},
|
|
7902
|
+
"tokens": {
|
|
7903
|
+
"cellBackground": {
|
|
7904
|
+
"red": 0.75686,
|
|
7905
|
+
"green": 0.94902,
|
|
7906
|
+
"blue": 0.9098,
|
|
7907
|
+
"alpha": 1
|
|
7908
|
+
},
|
|
7909
|
+
"cellBoxShadowColor": {
|
|
7910
|
+
"red": 0,
|
|
7911
|
+
"green": 0,
|
|
7912
|
+
"blue": 0,
|
|
7913
|
+
"alpha": 0
|
|
7914
|
+
},
|
|
7915
|
+
"fontName": "StagSans",
|
|
7916
|
+
"fontSize": 16,
|
|
7917
|
+
"fontWeight": 600,
|
|
7918
|
+
"lineHeight": 1.5
|
|
7919
|
+
}
|
|
7920
|
+
},
|
|
7921
|
+
{
|
|
7922
|
+
"if": {
|
|
7923
|
+
"spacing": "compact",
|
|
7924
|
+
"type": "heading"
|
|
7925
|
+
},
|
|
7926
|
+
"tokens": {
|
|
7927
|
+
"cellBackground": {
|
|
7928
|
+
"red": 0.75686,
|
|
7929
|
+
"green": 0.94902,
|
|
7930
|
+
"blue": 0.9098,
|
|
7931
|
+
"alpha": 1
|
|
7932
|
+
},
|
|
7933
|
+
"cellBoxShadowColor": {
|
|
7934
|
+
"red": 0,
|
|
7935
|
+
"green": 0,
|
|
7936
|
+
"blue": 0,
|
|
7937
|
+
"alpha": 0
|
|
7938
|
+
},
|
|
7939
|
+
"fontName": "StagSans",
|
|
7940
|
+
"fontSize": 16,
|
|
7941
|
+
"fontWeight": 600,
|
|
7942
|
+
"lineHeight": 1.25
|
|
7943
|
+
}
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
"if": {
|
|
7947
|
+
"spacing": "default",
|
|
7948
|
+
"type": "subHeading"
|
|
7949
|
+
},
|
|
7950
|
+
"tokens": {
|
|
7951
|
+
"cellBackground": {
|
|
7952
|
+
"red": 0.98039,
|
|
7953
|
+
"green": 0.98039,
|
|
7954
|
+
"blue": 0.98039,
|
|
7955
|
+
"alpha": 1
|
|
7956
|
+
},
|
|
7957
|
+
"fontName": "StagSans",
|
|
7958
|
+
"fontSize": 16,
|
|
7959
|
+
"fontWeight": 600,
|
|
7960
|
+
"lineHeight": 1.5
|
|
7961
|
+
}
|
|
7962
|
+
},
|
|
7963
|
+
{
|
|
7964
|
+
"if": {
|
|
7965
|
+
"spacing": "default",
|
|
7966
|
+
"type": "rowHeading"
|
|
7967
|
+
},
|
|
7968
|
+
"tokens": {
|
|
7969
|
+
"fontName": "StagSans",
|
|
7970
|
+
"fontSize": 16,
|
|
7971
|
+
"fontWeight": 600,
|
|
7972
|
+
"lineHeight": 1.5
|
|
7973
|
+
}
|
|
7974
|
+
},
|
|
7975
|
+
{
|
|
7976
|
+
"if": {
|
|
7977
|
+
"text": "small",
|
|
7978
|
+
"type": "default"
|
|
7979
|
+
},
|
|
7980
|
+
"tokens": {
|
|
7981
|
+
"fontName": "StagSans",
|
|
7982
|
+
"fontSize": 14,
|
|
7983
|
+
"fontWeight": 400,
|
|
7984
|
+
"lineHeight": 1.42857142857
|
|
7985
|
+
}
|
|
7986
|
+
},
|
|
7987
|
+
{
|
|
7988
|
+
"if": {
|
|
7989
|
+
"spacing": "default",
|
|
7990
|
+
"text": "small",
|
|
7991
|
+
"type": "rowHeading"
|
|
7992
|
+
},
|
|
7993
|
+
"tokens": {
|
|
7994
|
+
"fontName": "StagSans",
|
|
7995
|
+
"fontSize": 14,
|
|
7996
|
+
"fontWeight": 600,
|
|
7997
|
+
"lineHeight": 1.42857142857
|
|
7998
|
+
}
|
|
7999
|
+
},
|
|
8000
|
+
{
|
|
8001
|
+
"if": {
|
|
8002
|
+
"spacing": "compact",
|
|
8003
|
+
"text": "small",
|
|
8004
|
+
"type": "rowHeading"
|
|
8005
|
+
},
|
|
8006
|
+
"tokens": {
|
|
8007
|
+
"fontName": "StagSans",
|
|
8008
|
+
"fontSize": 14,
|
|
8009
|
+
"fontWeight": 600,
|
|
8010
|
+
"lineHeight": 1.14285714286
|
|
7638
8011
|
}
|
|
7639
8012
|
}
|
|
7640
8013
|
],
|
|
@@ -7651,51 +8024,34 @@
|
|
|
7651
8024
|
"blue": 0.93725,
|
|
7652
8025
|
"alpha": 1
|
|
7653
8026
|
},
|
|
7654
|
-
"cellHeadingBackground": {
|
|
7655
|
-
"red": 0.75686,
|
|
7656
|
-
"green": 0.94902,
|
|
7657
|
-
"blue": 0.9098,
|
|
7658
|
-
"alpha": 1
|
|
7659
|
-
},
|
|
7660
|
-
"cellHeadingBoxShadowColor": {
|
|
7661
|
-
"red": 0.93725,
|
|
7662
|
-
"green": 0.93725,
|
|
7663
|
-
"blue": 0.93725,
|
|
7664
|
-
"alpha": 1
|
|
7665
|
-
},
|
|
7666
8027
|
"cellMinWidth": 0,
|
|
7667
8028
|
"cellPaddingBottom": 16,
|
|
7668
8029
|
"cellPaddingLeft": 16,
|
|
7669
8030
|
"cellPaddingRight": 16,
|
|
7670
8031
|
"cellPaddingTop": 16,
|
|
7671
|
-
"cellRowHeadingBackground": {
|
|
7672
|
-
"red": 1,
|
|
7673
|
-
"green": 1,
|
|
7674
|
-
"blue": 1,
|
|
7675
|
-
"alpha": 1
|
|
7676
|
-
},
|
|
7677
8032
|
"cellStickyShadow": {
|
|
7678
|
-
"inset":
|
|
8033
|
+
"inset": false,
|
|
7679
8034
|
"offsetX": 0,
|
|
7680
|
-
"offsetY":
|
|
7681
|
-
"blur":
|
|
8035
|
+
"offsetY": 4,
|
|
8036
|
+
"blur": 8,
|
|
7682
8037
|
"spread": 0,
|
|
7683
8038
|
"color": {
|
|
7684
|
-
"red":
|
|
7685
|
-
"green":
|
|
7686
|
-
"blue":
|
|
7687
|
-
"alpha": 0.
|
|
8039
|
+
"red": 0,
|
|
8040
|
+
"green": 0,
|
|
8041
|
+
"blue": 0,
|
|
8042
|
+
"alpha": 0.1
|
|
7688
8043
|
}
|
|
7689
8044
|
},
|
|
7690
|
-
"cellSubheadingBackground": {
|
|
7691
|
-
"red": 0.98039,
|
|
7692
|
-
"green": 0.98039,
|
|
7693
|
-
"blue": 0.98039,
|
|
7694
|
-
"alpha": 1
|
|
7695
|
-
},
|
|
7696
8045
|
"fontName": "StagSans",
|
|
7697
8046
|
"fontSize": 16,
|
|
7698
|
-
"fontWeight":
|
|
8047
|
+
"fontWeight": 400,
|
|
8048
|
+
"lineHeight": 1.5,
|
|
8049
|
+
"stickyBackgroundColor": {
|
|
8050
|
+
"red": 1,
|
|
8051
|
+
"green": 1,
|
|
8052
|
+
"blue": 1,
|
|
8053
|
+
"alpha": 1
|
|
8054
|
+
},
|
|
7699
8055
|
"tablePaddingBottom": 24
|
|
7700
8056
|
}
|
|
7701
8057
|
},
|
|
@@ -8005,6 +8361,7 @@
|
|
|
8005
8361
|
"blue": 1,
|
|
8006
8362
|
"alpha": 1
|
|
8007
8363
|
},
|
|
8364
|
+
"iconPadding": 4,
|
|
8008
8365
|
"outerBorderColor": {
|
|
8009
8366
|
"red": 0,
|
|
8010
8367
|
"green": 0,
|
|
@@ -8112,7 +8469,7 @@
|
|
|
8112
8469
|
"outerBorderWidth": 0,
|
|
8113
8470
|
"paddingBottom": 8,
|
|
8114
8471
|
"paddingLeft": 16,
|
|
8115
|
-
"paddingRight":
|
|
8472
|
+
"paddingRight": 16,
|
|
8116
8473
|
"paddingTop": 8,
|
|
8117
8474
|
"shadow": null,
|
|
8118
8475
|
"textAlign": "center"
|
|
@@ -8124,9 +8481,24 @@
|
|
|
8124
8481
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
8125
8482
|
"values": [true],
|
|
8126
8483
|
"type": "state"
|
|
8484
|
+
},
|
|
8485
|
+
"viewport": {
|
|
8486
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
8487
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
8488
|
+
"type": "state"
|
|
8127
8489
|
}
|
|
8128
8490
|
},
|
|
8129
8491
|
"rules": [
|
|
8492
|
+
{
|
|
8493
|
+
"if": {
|
|
8494
|
+
"viewport": ["xs", "sm"]
|
|
8495
|
+
},
|
|
8496
|
+
"tokens": {
|
|
8497
|
+
"expandContentPaddingRight": 24,
|
|
8498
|
+
"listMarginLeft": 2,
|
|
8499
|
+
"titlePaddingLeft": 2
|
|
8500
|
+
}
|
|
8501
|
+
},
|
|
8130
8502
|
{
|
|
8131
8503
|
"if": {
|
|
8132
8504
|
"expanded": true
|
|
@@ -8137,41 +8509,65 @@
|
|
|
8137
8509
|
}
|
|
8138
8510
|
],
|
|
8139
8511
|
"tokens": {
|
|
8512
|
+
"contentBorderColor": {
|
|
8513
|
+
"red": 0,
|
|
8514
|
+
"green": 0,
|
|
8515
|
+
"blue": 0,
|
|
8516
|
+
"alpha": 0
|
|
8517
|
+
},
|
|
8518
|
+
"contentMarginBottom": 0,
|
|
8140
8519
|
"contentPaddingBottom": 8,
|
|
8141
8520
|
"contentPaddingLeft": 16,
|
|
8521
|
+
"dividerColor": {
|
|
8522
|
+
"red": 0.78824,
|
|
8523
|
+
"green": 0.78431,
|
|
8524
|
+
"blue": 0.78431,
|
|
8525
|
+
"alpha": 1
|
|
8526
|
+
},
|
|
8142
8527
|
"expandBaseBorderWidth": 0,
|
|
8143
8528
|
"expandContentPaddingBottom": 16,
|
|
8144
8529
|
"expandContentPaddingLeft": 16,
|
|
8145
8530
|
"expandContentPaddingRight": 16,
|
|
8146
8531
|
"expandContentPaddingTop": 16,
|
|
8147
8532
|
"expandIconContainerAlignItems": "center",
|
|
8148
|
-
"expandIconContainerBorder":
|
|
8533
|
+
"expandIconContainerBorder": 0,
|
|
8149
8534
|
"expandIconContainerBorderColor": {
|
|
8150
|
-
"red": 0
|
|
8151
|
-
"green": 0
|
|
8152
|
-
"blue": 0
|
|
8153
|
-
"alpha":
|
|
8535
|
+
"red": 0,
|
|
8536
|
+
"green": 0,
|
|
8537
|
+
"blue": 0,
|
|
8538
|
+
"alpha": 0
|
|
8154
8539
|
},
|
|
8155
8540
|
"expandIconContainerHeight": 32,
|
|
8156
8541
|
"expandIconContainerJustifyContent": "center",
|
|
8157
8542
|
"expandIconContainerMarginX": 0,
|
|
8158
8543
|
"expandIconContainerMarginY": 12,
|
|
8159
8544
|
"expandIconContainerWidth": 32,
|
|
8545
|
+
"expandTitleBorder": 0,
|
|
8546
|
+
"expandTitleBorderColor": {
|
|
8547
|
+
"red": 0,
|
|
8548
|
+
"green": 0,
|
|
8549
|
+
"blue": 0,
|
|
8550
|
+
"alpha": 0
|
|
8551
|
+
},
|
|
8160
8552
|
"expandTitleColor": {
|
|
8161
|
-
"red": 0
|
|
8162
|
-
"green": 0
|
|
8163
|
-
"blue": 0
|
|
8553
|
+
"red": 0,
|
|
8554
|
+
"green": 0,
|
|
8555
|
+
"blue": 0,
|
|
8164
8556
|
"alpha": 1
|
|
8165
8557
|
},
|
|
8558
|
+
"expandTitleFontName": "StagSans",
|
|
8166
8559
|
"expandTitleFontSize": 16,
|
|
8560
|
+
"expandTitleFontWeight": 600,
|
|
8167
8561
|
"expandTitleLineHeight": 1.5,
|
|
8168
8562
|
"expandTitleMarginX": 4,
|
|
8169
8563
|
"expandTitleMarginY": 0,
|
|
8564
|
+
"expandTitlePaddingLeft": 0,
|
|
8565
|
+
"expandTitleUnderline": "none",
|
|
8170
8566
|
"icon": "PaletteIconChevronDown",
|
|
8171
8567
|
"listColor": {
|
|
8172
|
-
"red": 0
|
|
8173
|
-
"green": 0
|
|
8174
|
-
"blue": 0
|
|
8568
|
+
"red": 0,
|
|
8569
|
+
"green": 0,
|
|
8570
|
+
"blue": 0,
|
|
8175
8571
|
"alpha": 1
|
|
8176
8572
|
},
|
|
8177
8573
|
"listFontName": "StagSans",
|
|
@@ -8191,8 +8587,8 @@
|
|
|
8191
8587
|
},
|
|
8192
8588
|
"titleFontSize": 14,
|
|
8193
8589
|
"titleLineHeight": 1.42857142857,
|
|
8194
|
-
"titlePaddingLeft":
|
|
8195
|
-
"unorderedPadding":
|
|
8590
|
+
"titlePaddingLeft": 32,
|
|
8591
|
+
"unorderedPadding": 12
|
|
8196
8592
|
}
|
|
8197
8593
|
},
|
|
8198
8594
|
"Testimonial": {
|
|
@@ -8613,9 +9009,15 @@
|
|
|
8613
9009
|
},
|
|
8614
9010
|
"tokens": {
|
|
8615
9011
|
"backgroundColor": {
|
|
8616
|
-
"red": 0.
|
|
8617
|
-
"green": 0.
|
|
8618
|
-
"blue":
|
|
9012
|
+
"red": 0.7098,
|
|
9013
|
+
"green": 0.70588,
|
|
9014
|
+
"blue": 0.70588,
|
|
9015
|
+
"alpha": 1
|
|
9016
|
+
},
|
|
9017
|
+
"switchColor": {
|
|
9018
|
+
"red": 0.31373,
|
|
9019
|
+
"green": 0.31373,
|
|
9020
|
+
"blue": 0.31373,
|
|
8619
9021
|
"alpha": 1
|
|
8620
9022
|
}
|
|
8621
9023
|
}
|
|
@@ -8687,7 +9089,7 @@
|
|
|
8687
9089
|
"labelFontSize": 16,
|
|
8688
9090
|
"labelFontWeight": 600,
|
|
8689
9091
|
"labelLineHeight": 1.5,
|
|
8690
|
-
"labelMarginLeft":
|
|
9092
|
+
"labelMarginLeft": 0,
|
|
8691
9093
|
"opacity": 1,
|
|
8692
9094
|
"outerBackgroundColor": {
|
|
8693
9095
|
"red": 0,
|
|
@@ -8702,12 +9104,14 @@
|
|
|
8702
9104
|
"alpha": 0
|
|
8703
9105
|
},
|
|
8704
9106
|
"outerBorderGap": 0,
|
|
9107
|
+
"outerBorderGapButton": 4,
|
|
8705
9108
|
"outerBorderWidth": 0,
|
|
8706
9109
|
"paddingBottom": 0,
|
|
8707
9110
|
"paddingLeft": 0,
|
|
8708
9111
|
"paddingRight": 0,
|
|
8709
9112
|
"paddingTop": 0,
|
|
8710
9113
|
"shadow": null,
|
|
9114
|
+
"space": 2,
|
|
8711
9115
|
"switchBorderColor": {
|
|
8712
9116
|
"red": 0,
|
|
8713
9117
|
"green": 0,
|
|
@@ -8735,7 +9139,7 @@
|
|
|
8735
9139
|
"alpha": 0.1
|
|
8736
9140
|
}
|
|
8737
9141
|
},
|
|
8738
|
-
"switchSize":
|
|
9142
|
+
"switchSize": 24,
|
|
8739
9143
|
"trackBorderColor": {
|
|
8740
9144
|
"red": 0,
|
|
8741
9145
|
"green": 0,
|
|
@@ -8744,6 +9148,7 @@
|
|
|
8744
9148
|
},
|
|
8745
9149
|
"trackBorderRadius": 12,
|
|
8746
9150
|
"trackBorderWidth": 3,
|
|
9151
|
+
"trackHeight": 20,
|
|
8747
9152
|
"width": 40
|
|
8748
9153
|
}
|
|
8749
9154
|
},
|
|
@@ -9405,6 +9810,7 @@
|
|
|
9405
9810
|
"fontWeight": 400,
|
|
9406
9811
|
"letterSpacing": 0,
|
|
9407
9812
|
"lineHeight": 1.5,
|
|
9813
|
+
"superScriptFontSize": null,
|
|
9408
9814
|
"textTransform": "none"
|
|
9409
9815
|
}
|
|
9410
9816
|
},
|
|
@@ -9537,26 +9943,26 @@
|
|
|
9537
9943
|
"rules": [],
|
|
9538
9944
|
"tokens": {
|
|
9539
9945
|
"framedContainerBackgroundColor": {
|
|
9540
|
-
"red": 0,
|
|
9541
|
-
"green": 0,
|
|
9542
|
-
"blue": 0,
|
|
9543
|
-
"alpha":
|
|
9946
|
+
"red": 0.98039,
|
|
9947
|
+
"green": 0.98039,
|
|
9948
|
+
"blue": 0.98039,
|
|
9949
|
+
"alpha": 1
|
|
9544
9950
|
},
|
|
9545
9951
|
"framedContainerBorderColor": {
|
|
9546
|
-
"red": 0,
|
|
9547
|
-
"green": 0,
|
|
9548
|
-
"blue": 0,
|
|
9549
|
-
"alpha":
|
|
9952
|
+
"red": 0.78824,
|
|
9953
|
+
"green": 0.78431,
|
|
9954
|
+
"blue": 0.78431,
|
|
9955
|
+
"alpha": 1
|
|
9550
9956
|
},
|
|
9551
9957
|
"framedContainerBorderRadius": 4,
|
|
9552
9958
|
"framedContainerBorderWidth": 1,
|
|
9553
9959
|
"framedContainerPadding": 24,
|
|
9554
9960
|
"framedMaxHeight": 640,
|
|
9555
9961
|
"stackViewDividerColor": {
|
|
9556
|
-
"red": 0,
|
|
9557
|
-
"green": 0,
|
|
9558
|
-
"blue": 0,
|
|
9559
|
-
"alpha":
|
|
9962
|
+
"red": 0.78824,
|
|
9963
|
+
"green": 0.78431,
|
|
9964
|
+
"blue": 0.78431,
|
|
9965
|
+
"alpha": 1
|
|
9560
9966
|
}
|
|
9561
9967
|
}
|
|
9562
9968
|
},
|
|
@@ -9569,39 +9975,93 @@
|
|
|
9569
9975
|
}
|
|
9570
9976
|
},
|
|
9571
9977
|
"VideoPickerThumbnail": {
|
|
9572
|
-
"appearances": {
|
|
9573
|
-
|
|
9978
|
+
"appearances": {
|
|
9979
|
+
"pressed": {
|
|
9980
|
+
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
9981
|
+
"values": [true, false],
|
|
9982
|
+
"type": "state"
|
|
9983
|
+
},
|
|
9984
|
+
"selected": {
|
|
9985
|
+
"description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
|
|
9986
|
+
"values": [true],
|
|
9987
|
+
"type": "state"
|
|
9988
|
+
}
|
|
9989
|
+
},
|
|
9990
|
+
"rules": [
|
|
9991
|
+
{
|
|
9992
|
+
"if": {
|
|
9993
|
+
"pressed": true
|
|
9994
|
+
},
|
|
9995
|
+
"tokens": {
|
|
9996
|
+
"borderColor": {
|
|
9997
|
+
"red": 0.34902,
|
|
9998
|
+
"green": 0.34902,
|
|
9999
|
+
"blue": 0.34902,
|
|
10000
|
+
"alpha": 1
|
|
10001
|
+
},
|
|
10002
|
+
"borderWidth": 3
|
|
10003
|
+
}
|
|
10004
|
+
},
|
|
10005
|
+
{
|
|
10006
|
+
"if": {
|
|
10007
|
+
"selected": true
|
|
10008
|
+
},
|
|
10009
|
+
"tokens": {
|
|
10010
|
+
"borderColor": {
|
|
10011
|
+
"red": 0.00392,
|
|
10012
|
+
"green": 0.41961,
|
|
10013
|
+
"blue": 0.41569,
|
|
10014
|
+
"alpha": 1
|
|
10015
|
+
},
|
|
10016
|
+
"titleColor": {
|
|
10017
|
+
"red": 0.00392,
|
|
10018
|
+
"green": 0.41961,
|
|
10019
|
+
"blue": 0.41569,
|
|
10020
|
+
"alpha": 1
|
|
10021
|
+
}
|
|
10022
|
+
}
|
|
10023
|
+
}
|
|
10024
|
+
],
|
|
9574
10025
|
"tokens": {
|
|
9575
10026
|
"borderColor": {
|
|
9576
|
-
"red": 0,
|
|
9577
|
-
"green": 0,
|
|
9578
|
-
"blue": 0,
|
|
9579
|
-
"alpha":
|
|
10027
|
+
"red": 0.78824,
|
|
10028
|
+
"green": 0.78431,
|
|
10029
|
+
"blue": 0.78431,
|
|
10030
|
+
"alpha": 1
|
|
9580
10031
|
},
|
|
9581
10032
|
"borderRadius": 4,
|
|
9582
10033
|
"borderWidth": 2,
|
|
9583
|
-
"
|
|
10034
|
+
"outerBorderColor": {
|
|
9584
10035
|
"red": 0,
|
|
9585
10036
|
"green": 0,
|
|
9586
10037
|
"blue": 0,
|
|
9587
10038
|
"alpha": 0
|
|
9588
10039
|
},
|
|
10040
|
+
"outerBorderGap": 2,
|
|
10041
|
+
"outerBorderRadius": 8,
|
|
10042
|
+
"outerBorderWidth": 2,
|
|
10043
|
+
"pressableBorderTopColor": {
|
|
10044
|
+
"red": 0.78824,
|
|
10045
|
+
"green": 0.78431,
|
|
10046
|
+
"blue": 0.78431,
|
|
10047
|
+
"alpha": 1
|
|
10048
|
+
},
|
|
9589
10049
|
"pressableBorderTopWidth": 1,
|
|
9590
10050
|
"pressablePaddingBottom": 16,
|
|
9591
10051
|
"pressablePaddingHorizontal": 24,
|
|
9592
10052
|
"pressablePaddingVertical": 16,
|
|
9593
10053
|
"splashButtonRadius": 4,
|
|
9594
10054
|
"subTitleColor": {
|
|
9595
|
-
"red": 0,
|
|
9596
|
-
"green": 0,
|
|
9597
|
-
"blue": 0,
|
|
9598
|
-
"alpha":
|
|
10055
|
+
"red": 0.34902,
|
|
10056
|
+
"green": 0.34902,
|
|
10057
|
+
"blue": 0.34902,
|
|
10058
|
+
"alpha": 1
|
|
9599
10059
|
},
|
|
9600
10060
|
"titleColor": {
|
|
9601
10061
|
"red": 0,
|
|
9602
10062
|
"green": 0,
|
|
9603
10063
|
"blue": 0,
|
|
9604
|
-
"alpha":
|
|
10064
|
+
"alpha": 1
|
|
9605
10065
|
}
|
|
9606
10066
|
}
|
|
9607
10067
|
},
|
|
@@ -9876,7 +10336,7 @@
|
|
|
9876
10336
|
}
|
|
9877
10337
|
},
|
|
9878
10338
|
"metadata": {
|
|
9879
|
-
"themeTokensVersion": "2.
|
|
10339
|
+
"themeTokensVersion": "2.37.0",
|
|
9880
10340
|
"name": "theme-koodo"
|
|
9881
10341
|
}
|
|
9882
10342
|
}
|