@mozaic-ds/vue 0.23.0-beta.1 → 0.23.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/dist/mozaic-vue.adeo.css +40 -40
- package/dist/mozaic-vue.adeo.umd.js +1275 -75
- package/dist/mozaic-vue.common.js +1275 -75
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +1275 -75
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +2 -2
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +4 -4
- package/src/components/autocomplete/MAutocomplete.vue +27 -10
- package/src/components/icon/MIcon.vue +18 -2
- package/src/components/phonenumber/MPhoneNumber.vue +4 -2
- package/src/components/tabs/MTab.vue +2 -9
- package/src/tokens/adeo/android/colors.xml +209 -166
- package/src/tokens/adeo/css/_variables.scss +209 -166
- package/src/tokens/adeo/css/root.scss +89 -46
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +48 -5
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +214 -171
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +209 -166
- package/src/tokens/adeo/js/tokens.js +209 -166
- package/src/tokens/adeo/js/tokensObject.js +1279 -304
- package/src/tokens/adeo/scss/_tokens.scss +344 -174
|
@@ -12,79 +12,83 @@ public class StyleDictionaryColor {
|
|
|
12
12
|
public static let colorBadgeInfoBackground = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1)
|
|
13
13
|
public static let colorBadgeInfoBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1)
|
|
14
14
|
public static let colorBadgeInfoText = UIColor(red: 0.000, green: 0.361, blue: 0.569, alpha: 1)
|
|
15
|
-
public static let colorBadgeNeutralBackground = UIColor(red: 0.
|
|
16
|
-
public static let colorBadgeNeutralBorder = UIColor(red: 0.
|
|
17
|
-
public static let colorBadgeNeutralText = UIColor(red: 0.
|
|
15
|
+
public static let colorBadgeNeutralBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
16
|
+
public static let colorBadgeNeutralBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
17
|
+
public static let colorBadgeNeutralText = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
18
18
|
public static let colorBadgeSuccessBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
|
|
19
19
|
public static let colorBadgeSuccessBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1)
|
|
20
20
|
public static let colorBadgeSuccessText = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1)
|
|
21
21
|
public static let colorBadgeWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
|
|
22
22
|
public static let colorBadgeWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
|
|
23
23
|
public static let colorBadgeWarningText = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1)
|
|
24
|
+
public static let colorBreadcrumbArrow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
25
|
+
public static let colorBreadcrumbArrowInvert = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
24
26
|
public static let colorButtonBorderedActiveBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
25
27
|
public static let colorButtonBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
26
28
|
public static let colorButtonBorderedBorder = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
27
|
-
public static let colorButtonBorderedDangerActiveBackground = UIColor(red: 0.
|
|
29
|
+
public static let colorButtonBorderedDangerActiveBackground = UIColor(red: 0.980, green: 0.725, blue: 0.737, alpha: 1)
|
|
28
30
|
public static let colorButtonBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
29
|
-
public static let colorButtonBorderedDangerBorder = UIColor(red: 0.
|
|
30
|
-
public static let colorButtonBorderedDangerDisabledBackground = UIColor(red: 0.
|
|
31
|
-
public static let colorButtonBorderedDangerDisabledFont = UIColor(red: 0.
|
|
32
|
-
public static let colorButtonBorderedDangerFocusBorder = UIColor(red: 0.
|
|
33
|
-
public static let colorButtonBorderedDangerFont = UIColor(red: 0.
|
|
34
|
-
public static let colorButtonBorderedDangerHoverBackground = UIColor(red: 0.
|
|
35
|
-
public static let colorButtonBorderedDisabledBackground = UIColor(red: 0.
|
|
36
|
-
public static let colorButtonBorderedDisabledFont = UIColor(red: 0.
|
|
31
|
+
public static let colorButtonBorderedDangerBorder = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
32
|
+
public static let colorButtonBorderedDangerDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
33
|
+
public static let colorButtonBorderedDangerDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
34
|
+
public static let colorButtonBorderedDangerFocusBorder = UIColor(red: 0.545, green: 0.133, blue: 0.149, alpha: 1)
|
|
35
|
+
public static let colorButtonBorderedDangerFont = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
36
|
+
public static let colorButtonBorderedDangerHoverBackground = UIColor(red: 0.996, green: 0.929, blue: 0.933, alpha: 1)
|
|
37
|
+
public static let colorButtonBorderedDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
38
|
+
public static let colorButtonBorderedDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
37
39
|
public static let colorButtonBorderedFocusBorder = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
38
40
|
public static let colorButtonBorderedFont = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
39
41
|
public static let colorButtonBorderedHoverBackground = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
40
|
-
public static let colorButtonBorderedNeutralActiveBackground = UIColor(red: 0.
|
|
42
|
+
public static let colorButtonBorderedNeutralActiveBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
41
43
|
public static let colorButtonBorderedNeutralBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
42
|
-
public static let colorButtonBorderedNeutralBorder = UIColor(red: 0.
|
|
43
|
-
public static let colorButtonBorderedNeutralDisabledBackground = UIColor(red: 0.
|
|
44
|
-
public static let colorButtonBorderedNeutralDisabledFont = UIColor(red: 0.
|
|
45
|
-
public static let colorButtonBorderedNeutralFocusBorder = UIColor(red: 0.
|
|
46
|
-
public static let colorButtonBorderedNeutralFont = UIColor(red: 0.
|
|
47
|
-
public static let colorButtonBorderedNeutralHoverBackground = UIColor(red: 0.
|
|
48
|
-
public static let colorButtonBorderedPrimary02ActiveBackground = UIColor(red: 0.
|
|
44
|
+
public static let colorButtonBorderedNeutralBorder = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
45
|
+
public static let colorButtonBorderedNeutralDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
46
|
+
public static let colorButtonBorderedNeutralDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
47
|
+
public static let colorButtonBorderedNeutralFocusBorder = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
48
|
+
public static let colorButtonBorderedNeutralFont = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
49
|
+
public static let colorButtonBorderedNeutralHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
50
|
+
public static let colorButtonBorderedPrimary02ActiveBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1)
|
|
49
51
|
public static let colorButtonBorderedPrimary02Background = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
50
|
-
public static let colorButtonBorderedPrimary02Border = UIColor(red: 0.
|
|
51
|
-
public static let colorButtonBorderedPrimary02DisabledBackground = UIColor(red: 0.
|
|
52
|
-
public static let colorButtonBorderedPrimary02DisabledFont = UIColor(red: 0.
|
|
53
|
-
public static let colorButtonBorderedPrimary02FocusBorder = UIColor(red: 0.
|
|
54
|
-
public static let colorButtonBorderedPrimary02Font = UIColor(red: 0.
|
|
55
|
-
public static let colorButtonBorderedPrimary02HoverBackground = UIColor(red: 0.
|
|
52
|
+
public static let colorButtonBorderedPrimary02Border = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1)
|
|
53
|
+
public static let colorButtonBorderedPrimary02DisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
54
|
+
public static let colorButtonBorderedPrimary02DisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
55
|
+
public static let colorButtonBorderedPrimary02FocusBorder = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1)
|
|
56
|
+
public static let colorButtonBorderedPrimary02Font = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1)
|
|
57
|
+
public static let colorButtonBorderedPrimary02HoverBackground = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1)
|
|
56
58
|
public static let colorButtonSolidActiveBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
57
59
|
public static let colorButtonSolidBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
58
60
|
public static let colorButtonSolidDangerActiveBackground = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
59
|
-
public static let colorButtonSolidDangerBackground = UIColor(red: 0.
|
|
60
|
-
public static let colorButtonSolidDangerDisabledBackground = UIColor(red: 0.
|
|
61
|
-
public static let colorButtonSolidDangerDisabledFont = UIColor(red: 0.
|
|
61
|
+
public static let colorButtonSolidDangerBackground = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
62
|
+
public static let colorButtonSolidDangerDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
63
|
+
public static let colorButtonSolidDangerDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
62
64
|
public static let colorButtonSolidDangerFocusBorder = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
63
65
|
public static let colorButtonSolidDangerFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
64
66
|
public static let colorButtonSolidDangerHoverBackground = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
65
67
|
public static let colorButtonSolidDangerHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
66
|
-
public static let colorButtonSolidDisabledBackground = UIColor(red: 0.
|
|
67
|
-
public static let colorButtonSolidDisabledFont = UIColor(red: 0.
|
|
68
|
+
public static let colorButtonSolidDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
69
|
+
public static let colorButtonSolidDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
68
70
|
public static let colorButtonSolidFocusBorder = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
69
71
|
public static let colorButtonSolidFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
70
72
|
public static let colorButtonSolidHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
71
73
|
public static let colorButtonSolidHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
72
|
-
public static let colorButtonSolidNeutralActiveBackground = UIColor(red: 0.
|
|
73
|
-
public static let colorButtonSolidNeutralBackground = UIColor(red: 0.
|
|
74
|
-
public static let colorButtonSolidNeutralDisabledBackground = UIColor(red: 0.
|
|
75
|
-
public static let colorButtonSolidNeutralDisabledFont = UIColor(red: 0.
|
|
76
|
-
public static let colorButtonSolidNeutralFocusBorder = UIColor(red: 0.
|
|
74
|
+
public static let colorButtonSolidNeutralActiveBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
75
|
+
public static let colorButtonSolidNeutralBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
76
|
+
public static let colorButtonSolidNeutralDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
77
|
+
public static let colorButtonSolidNeutralDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
78
|
+
public static let colorButtonSolidNeutralFocusBorder = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
77
79
|
public static let colorButtonSolidNeutralFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
78
|
-
public static let colorButtonSolidNeutralHoverBackground = UIColor(red: 0.
|
|
80
|
+
public static let colorButtonSolidNeutralHoverBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
79
81
|
public static let colorButtonSolidNeutralHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
80
|
-
public static let colorButtonSolidPrimary02ActiveBackground = UIColor(red: 0.
|
|
81
|
-
public static let colorButtonSolidPrimary02Background = UIColor(red: 0.
|
|
82
|
-
public static let colorButtonSolidPrimary02DisabledBackground = UIColor(red: 0.
|
|
83
|
-
public static let colorButtonSolidPrimary02DisabledFont = UIColor(red: 0.
|
|
84
|
-
public static let colorButtonSolidPrimary02FocusBorder = UIColor(red: 0.
|
|
82
|
+
public static let colorButtonSolidPrimary02ActiveBackground = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1)
|
|
83
|
+
public static let colorButtonSolidPrimary02Background = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1)
|
|
84
|
+
public static let colorButtonSolidPrimary02DisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
85
|
+
public static let colorButtonSolidPrimary02DisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
86
|
+
public static let colorButtonSolidPrimary02FocusBorder = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1)
|
|
85
87
|
public static let colorButtonSolidPrimary02Font = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
86
|
-
public static let colorButtonSolidPrimary02HoverBackground = UIColor(red: 0.
|
|
88
|
+
public static let colorButtonSolidPrimary02HoverBackground = UIColor(red: 0.141, green: 0.161, blue: 0.220, alpha: 1)
|
|
87
89
|
public static let colorButtonSolidPrimary02HoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
90
|
+
public static let colorCardBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
91
|
+
public static let colorCardBorderedBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
88
92
|
public static let colorDanger100 = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
|
|
89
93
|
public static let colorDanger200 = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1)
|
|
90
94
|
public static let colorDanger300 = UIColor(red: 0.953, green: 0.553, blue: 0.549, alpha: 1)
|
|
@@ -94,24 +98,28 @@ public class StyleDictionaryColor {
|
|
|
94
98
|
public static let colorDanger700 = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
95
99
|
public static let colorDanger800 = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
|
|
96
100
|
public static let colorDanger900 = UIColor(red: 0.176, green: 0.000, blue: 0.000, alpha: 1)
|
|
101
|
+
public static let colorDialogBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
102
|
+
public static let colorDialogClose = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
103
|
+
public static let colorDialogFooterShadow = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
104
|
+
public static let colorDialogIcon = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
97
105
|
public static let colorDividerDark = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
98
|
-
public static let colorDividerDefault = UIColor(red: 0.
|
|
99
|
-
public static let colorDividerLight = UIColor(red: 0.
|
|
106
|
+
public static let colorDividerDefault = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
107
|
+
public static let colorDividerLight = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
100
108
|
public static let colorDividerLightest = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
101
109
|
public static let colorFieldsError = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
102
|
-
public static let colorFieldsHelp = UIColor(red: 0.
|
|
103
|
-
public static let colorFieldsLabel = UIColor(red: 0.
|
|
104
|
-
public static let colorFieldsRequirement = UIColor(red: 0.
|
|
110
|
+
public static let colorFieldsHelp = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
111
|
+
public static let colorFieldsLabel = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
112
|
+
public static let colorFieldsRequirement = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
105
113
|
public static let colorFileuploaderAlert = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
106
|
-
public static let colorFileuploaderFilesDelete = UIColor(red: 0.
|
|
107
|
-
public static let colorFileuploaderFilesList = UIColor(red: 0.
|
|
114
|
+
public static let colorFileuploaderFilesDelete = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
115
|
+
public static let colorFileuploaderFilesList = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
108
116
|
public static let colorFileuploaderFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
109
117
|
public static let colorFileuploaderValid = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
110
118
|
public static let colorFlagBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
111
119
|
public static let colorFlagBorderedBorder = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
112
120
|
public static let colorFlagBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
113
|
-
public static let colorFlagBorderedDangerBorder = UIColor(red: 0.
|
|
114
|
-
public static let colorFlagBorderedDangerText = UIColor(red: 0.
|
|
121
|
+
public static let colorFlagBorderedDangerBorder = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
122
|
+
public static let colorFlagBorderedDangerText = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
115
123
|
public static let colorFlagBorderedDarkBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
116
124
|
public static let colorFlagBorderedDarkBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
117
125
|
public static let colorFlagBorderedDarkText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
@@ -124,8 +132,8 @@ public class StyleDictionaryColor {
|
|
|
124
132
|
public static let colorFlagBorderedText = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
125
133
|
public static let colorFlagSolidBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
126
134
|
public static let colorFlagSolidBorder = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
127
|
-
public static let colorFlagSolidDangerBackground = UIColor(red: 0.
|
|
128
|
-
public static let colorFlagSolidDangerBorder = UIColor(red: 0.
|
|
135
|
+
public static let colorFlagSolidDangerBackground = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
136
|
+
public static let colorFlagSolidDangerBorder = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
129
137
|
public static let colorFlagSolidDangerText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
130
138
|
public static let colorFlagSolidDarkBackground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
131
139
|
public static let colorFlagSolidDarkBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
@@ -140,27 +148,30 @@ public class StyleDictionaryColor {
|
|
|
140
148
|
public static let colorFocusBorder = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
|
|
141
149
|
public static let colorFocusGap = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
142
150
|
public static let colorFontDanger = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
143
|
-
public static let colorFontDark = UIColor(red: 0.
|
|
144
|
-
public static let colorFontDarker = UIColor(red: 0.
|
|
151
|
+
public static let colorFontDark = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
152
|
+
public static let colorFontDarker = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
145
153
|
public static let colorFontDarkest = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
146
154
|
public static let colorFontInfo = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
|
|
147
|
-
public static let colorFontLight = UIColor(red: 0.
|
|
155
|
+
public static let colorFontLight = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
148
156
|
public static let colorFontLightest = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
149
|
-
public static let colorFontPrimary01 = UIColor(red: 0.000, green: 0.
|
|
150
|
-
public static let colorFontPrimary02 = UIColor(red: 0.
|
|
157
|
+
public static let colorFontPrimary01 = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
158
|
+
public static let colorFontPrimary02 = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1)
|
|
151
159
|
public static let colorFontSuccess = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1)
|
|
152
160
|
public static let colorFontWarning = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1)
|
|
153
161
|
public static let colorGrey000 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
154
|
-
public static let colorGrey100 = UIColor(red: 0.
|
|
155
|
-
public static let colorGrey200 = UIColor(red: 0.
|
|
156
|
-
public static let colorGrey300 = UIColor(red: 0.
|
|
157
|
-
public static let colorGrey400 = UIColor(red: 0.
|
|
158
|
-
public static let colorGrey500 = UIColor(red: 0.
|
|
159
|
-
public static let colorGrey600 = UIColor(red: 0.
|
|
160
|
-
public static let colorGrey700 = UIColor(red: 0.
|
|
161
|
-
public static let colorGrey800 = UIColor(red: 0.
|
|
162
|
-
public static let colorGrey900 = UIColor(red: 0.
|
|
162
|
+
public static let colorGrey100 = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
163
|
+
public static let colorGrey200 = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
164
|
+
public static let colorGrey300 = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
165
|
+
public static let colorGrey400 = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
166
|
+
public static let colorGrey500 = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
167
|
+
public static let colorGrey600 = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
168
|
+
public static let colorGrey700 = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
169
|
+
public static let colorGrey800 = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
170
|
+
public static let colorGrey900 = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
163
171
|
public static let colorGrey999 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
172
|
+
public static let colorHeadingUnderlineDefault = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
173
|
+
public static let colorHeadingUnderlineLightest = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
174
|
+
public static let colorHeroCoverBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
164
175
|
public static let colorInfo100 = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1)
|
|
165
176
|
public static let colorInfo200 = UIColor(red: 0.655, green: 0.851, blue: 0.929, alpha: 1)
|
|
166
177
|
public static let colorInfo300 = UIColor(red: 0.451, green: 0.765, blue: 0.886, alpha: 1)
|
|
@@ -171,60 +182,72 @@ public class StyleDictionaryColor {
|
|
|
171
182
|
public static let colorInfo800 = UIColor(red: 0.000, green: 0.227, blue: 0.361, alpha: 1)
|
|
172
183
|
public static let colorInfo900 = UIColor(red: 0.000, green: 0.165, blue: 0.255, alpha: 1)
|
|
173
184
|
public static let colorInputBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
174
|
-
public static let colorInputBorder = UIColor(red: 0.
|
|
185
|
+
public static let colorInputBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
175
186
|
public static let colorInputCheckedBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
176
187
|
public static let colorInputCheckedBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
177
188
|
public static let colorInputCheckedHoverBorder = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
178
189
|
public static let colorInputCheckedIcon = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
179
|
-
public static let colorInputDisabledBackground = UIColor(red: 0.
|
|
180
|
-
public static let colorInputDisabledBorder = UIColor(red: 0.
|
|
181
|
-
public static let colorInputDisabledIcon = UIColor(red: 0.
|
|
190
|
+
public static let colorInputDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
191
|
+
public static let colorInputDisabledBorder = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
192
|
+
public static let colorInputDisabledIcon = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
182
193
|
public static let colorInputFocusBorder = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
|
|
183
|
-
public static let colorInputHoverBorder = UIColor(red: 0.
|
|
194
|
+
public static let colorInputHoverBorder = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
184
195
|
public static let colorInputInvalidBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
185
196
|
public static let colorInputInvalidHoverBorder = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
|
|
186
|
-
public static let colorInputPlaceholder = UIColor(red: 0.
|
|
187
|
-
public static let colorInputText = UIColor(red: 0.
|
|
197
|
+
public static let colorInputPlaceholder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
198
|
+
public static let colorInputText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
188
199
|
public static let colorInputValidBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1)
|
|
189
200
|
public static let colorInputValidHoverBorder = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1)
|
|
190
|
-
public static let colorLinkDangerActive = UIColor(red: 0.
|
|
191
|
-
public static let colorLinkDangerBase = UIColor(red: 0.
|
|
192
|
-
public static let colorLinkDangerDisabled = UIColor(red: 0.
|
|
193
|
-
public static let colorLinkDangerHover = UIColor(red: 0.
|
|
194
|
-
public static let colorLinkDangerVisited = UIColor(red: 0.
|
|
195
|
-
public static let colorLinkDarkActive = UIColor(red: 0.
|
|
201
|
+
public static let colorLinkDangerActive = UIColor(red: 0.545, green: 0.133, blue: 0.149, alpha: 1)
|
|
202
|
+
public static let colorLinkDangerBase = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
203
|
+
public static let colorLinkDangerDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
204
|
+
public static let colorLinkDangerHover = UIColor(red: 0.243, green: 0.071, blue: 0.098, alpha: 1)
|
|
205
|
+
public static let colorLinkDangerVisited = UIColor(red: 0.545, green: 0.133, blue: 0.149, alpha: 1)
|
|
206
|
+
public static let colorLinkDarkActive = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
196
207
|
public static let colorLinkDarkBase = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
197
|
-
public static let colorLinkDarkDisabled = UIColor(red: 0.
|
|
198
|
-
public static let colorLinkDarkHover = UIColor(red: 0.
|
|
199
|
-
public static let colorLinkDarkVisited = UIColor(red: 0.
|
|
200
|
-
public static let colorLinkLightActive = UIColor(red: 0.
|
|
208
|
+
public static let colorLinkDarkDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
209
|
+
public static let colorLinkDarkHover = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
210
|
+
public static let colorLinkDarkVisited = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
211
|
+
public static let colorLinkLightActive = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
201
212
|
public static let colorLinkLightBase = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
202
|
-
public static let colorLinkLightDisabled = UIColor(red: 0.
|
|
203
|
-
public static let colorLinkLightHover = UIColor(red: 0.
|
|
204
|
-
public static let colorLinkLightVisited = UIColor(red: 0.
|
|
205
|
-
public static let colorLinkPrimary02Active = UIColor(red: 0.
|
|
206
|
-
public static let colorLinkPrimary02Base = UIColor(red: 0.
|
|
207
|
-
public static let colorLinkPrimary02Disabled = UIColor(red: 0.
|
|
208
|
-
public static let colorLinkPrimary02Hover = UIColor(red: 0.
|
|
209
|
-
public static let colorLinkPrimary02Visited = UIColor(red: 0.
|
|
213
|
+
public static let colorLinkLightDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
214
|
+
public static let colorLinkLightHover = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
215
|
+
public static let colorLinkLightVisited = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
216
|
+
public static let colorLinkPrimary02Active = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1)
|
|
217
|
+
public static let colorLinkPrimary02Base = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1)
|
|
218
|
+
public static let colorLinkPrimary02Disabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
219
|
+
public static let colorLinkPrimary02Hover = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1)
|
|
220
|
+
public static let colorLinkPrimary02Visited = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1)
|
|
210
221
|
public static let colorLinkPrimaryActive = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
211
222
|
public static let colorLinkPrimaryBase = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
212
|
-
public static let colorLinkPrimaryDisabled = UIColor(red: 0.
|
|
213
|
-
public static let colorLinkPrimaryHover = UIColor(red: 0.000, green: 0.
|
|
223
|
+
public static let colorLinkPrimaryDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
224
|
+
public static let colorLinkPrimaryHover = UIColor(red: 0.000, green: 0.180, blue: 0.200, alpha: 1)
|
|
214
225
|
public static let colorLinkPrimaryVisited = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
215
226
|
public static let colorNotificationDangerBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
|
|
216
227
|
public static let colorNotificationDangerBorder = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1)
|
|
217
|
-
public static let colorNotificationDangerIcon = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
218
228
|
public static let colorNotificationFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
219
229
|
public static let colorNotificationInformationBackground = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1)
|
|
220
230
|
public static let colorNotificationInformationBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1)
|
|
221
|
-
public static let colorNotificationInformationIcon = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
|
|
222
231
|
public static let colorNotificationSuccessBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
|
|
223
232
|
public static let colorNotificationSuccessBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1)
|
|
224
|
-
public static let colorNotificationSuccessIcon = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1)
|
|
225
233
|
public static let colorNotificationWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
|
|
226
234
|
public static let colorNotificationWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
|
|
227
|
-
public static let
|
|
235
|
+
public static let colorOptionButtonCheckedLabelBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
236
|
+
public static let colorOptionButtonCheckedLabelShadow = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
237
|
+
public static let colorOptionButtonDisabledLabelBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
238
|
+
public static let colorOptionButtonHoverLabelShadow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
239
|
+
public static let colorOptionButtonLabelShadow = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
240
|
+
public static let colorOptionCardCheckedLabelBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
241
|
+
public static let colorOptionCardCheckedLabelShadow = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
242
|
+
public static let colorOptionCardHoverLabelShadow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
243
|
+
public static let colorOptionCardLabelShadow = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
244
|
+
public static let colorOverlayBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
245
|
+
public static let colorOverlayLoaderBackground = UIColor(red: 0.031, green: 0.141, blue: 0.208, alpha: 1)
|
|
246
|
+
public static let colorPasswordInputButtonHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
247
|
+
public static let colorPhoneNumberButtonBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
248
|
+
public static let colorPhoneNumberItemBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
249
|
+
public static let colorPhoneNumberItemFocusBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
250
|
+
public static let colorPhoneNumberListBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
228
251
|
public static let colorPrimary01100 = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
229
252
|
public static let colorPrimary01200 = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
230
253
|
public static let colorPrimary01300 = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
@@ -234,19 +257,19 @@ public class StyleDictionaryColor {
|
|
|
234
257
|
public static let colorPrimary01700 = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
235
258
|
public static let colorPrimary01800 = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
236
259
|
public static let colorPrimary01900 = UIColor(red: 0.000, green: 0.180, blue: 0.200, alpha: 1)
|
|
237
|
-
public static let colorPrimary02100 = UIColor(red: 0.
|
|
238
|
-
public static let colorPrimary02200 = UIColor(red: 0.
|
|
239
|
-
public static let colorPrimary02300 = UIColor(red: 0.
|
|
240
|
-
public static let colorPrimary02400 = UIColor(red: 0.
|
|
241
|
-
public static let colorPrimary02500 = UIColor(red: 0.
|
|
242
|
-
public static let colorPrimary02600 = UIColor(red: 0.
|
|
243
|
-
public static let colorPrimary02700 = UIColor(red: 0.
|
|
244
|
-
public static let colorPrimary02800 = UIColor(red: 0.
|
|
245
|
-
public static let colorPrimary02900 = UIColor(red: 0.
|
|
246
|
-
public static let colorProgressBackground = UIColor(red: 0.
|
|
260
|
+
public static let colorPrimary02100 = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1)
|
|
261
|
+
public static let colorPrimary02200 = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1)
|
|
262
|
+
public static let colorPrimary02300 = UIColor(red: 0.702, green: 0.718, blue: 0.757, alpha: 1)
|
|
263
|
+
public static let colorPrimary02400 = UIColor(red: 0.561, green: 0.580, blue: 0.639, alpha: 1)
|
|
264
|
+
public static let colorPrimary02500 = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1)
|
|
265
|
+
public static let colorPrimary02600 = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1)
|
|
266
|
+
public static let colorPrimary02700 = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1)
|
|
267
|
+
public static let colorPrimary02800 = UIColor(red: 0.141, green: 0.161, blue: 0.220, alpha: 1)
|
|
268
|
+
public static let colorPrimary02900 = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1)
|
|
269
|
+
public static let colorProgressBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
247
270
|
public static let colorProgressBrandedIndicator = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
248
271
|
public static let colorProgressIndicator = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
|
|
249
|
-
public static let colorProgressPercentageDefault = UIColor(red: 0.
|
|
272
|
+
public static let colorProgressPercentageDefault = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
250
273
|
public static let colorProgressPercentageHalf = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
251
274
|
public static let colorSecondaryBlue100 = UIColor(red: 0.918, green: 0.929, blue: 0.937, alpha: 1)
|
|
252
275
|
public static let colorSecondaryBlue200 = UIColor(red: 0.804, green: 0.831, blue: 0.847, alpha: 1)
|
|
@@ -266,15 +289,15 @@ public class StyleDictionaryColor {
|
|
|
266
289
|
public static let colorSecondaryGreen700 = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
267
290
|
public static let colorSecondaryGreen800 = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
268
291
|
public static let colorSecondaryGreen900 = UIColor(red: 0.000, green: 0.180, blue: 0.200, alpha: 1)
|
|
269
|
-
public static let colorSecondaryOrange100 = UIColor(red:
|
|
270
|
-
public static let colorSecondaryOrange200 = UIColor(red:
|
|
271
|
-
public static let colorSecondaryOrange300 = UIColor(red:
|
|
272
|
-
public static let colorSecondaryOrange400 = UIColor(red:
|
|
273
|
-
public static let colorSecondaryOrange500 = UIColor(red: 0.
|
|
274
|
-
public static let colorSecondaryOrange600 = UIColor(red: 0.
|
|
275
|
-
public static let colorSecondaryOrange700 = UIColor(red: 0.
|
|
276
|
-
public static let colorSecondaryOrange800 = UIColor(red: 0.
|
|
277
|
-
public static let colorSecondaryOrange900 = UIColor(red: 0.
|
|
292
|
+
public static let colorSecondaryOrange100 = UIColor(red: 1.000, green: 0.961, blue: 0.922, alpha: 1)
|
|
293
|
+
public static let colorSecondaryOrange200 = UIColor(red: 1.000, green: 0.855, blue: 0.698, alpha: 1)
|
|
294
|
+
public static let colorSecondaryOrange300 = UIColor(red: 1.000, green: 0.757, blue: 0.490, alpha: 1)
|
|
295
|
+
public static let colorSecondaryOrange400 = UIColor(red: 1.000, green: 0.671, blue: 0.294, alpha: 1)
|
|
296
|
+
public static let colorSecondaryOrange500 = UIColor(red: 0.988, green: 0.588, blue: 0.118, alpha: 1)
|
|
297
|
+
public static let colorSecondaryOrange600 = UIColor(red: 0.784, green: 0.435, blue: 0.129, alpha: 1)
|
|
298
|
+
public static let colorSecondaryOrange700 = UIColor(red: 0.592, green: 0.310, blue: 0.125, alpha: 1)
|
|
299
|
+
public static let colorSecondaryOrange800 = UIColor(red: 0.416, green: 0.208, blue: 0.110, alpha: 1)
|
|
300
|
+
public static let colorSecondaryOrange900 = UIColor(red: 0.251, green: 0.122, blue: 0.082, alpha: 1)
|
|
278
301
|
public static let colorSecondaryPurple100 = UIColor(red: 0.906, green: 0.906, blue: 0.941, alpha: 1)
|
|
279
302
|
public static let colorSecondaryPurple200 = UIColor(red: 0.773, green: 0.773, blue: 0.863, alpha: 1)
|
|
280
303
|
public static let colorSecondaryPurple300 = UIColor(red: 0.643, green: 0.639, blue: 0.780, alpha: 1)
|
|
@@ -284,15 +307,24 @@ public class StyleDictionaryColor {
|
|
|
284
307
|
public static let colorSecondaryPurple700 = UIColor(red: 0.224, green: 0.220, blue: 0.475, alpha: 1)
|
|
285
308
|
public static let colorSecondaryPurple800 = UIColor(red: 0.157, green: 0.157, blue: 0.388, alpha: 1)
|
|
286
309
|
public static let colorSecondaryPurple900 = UIColor(red: 0.102, green: 0.102, blue: 0.294, alpha: 1)
|
|
287
|
-
public static let colorSecondaryRed100 = UIColor(red: 0.
|
|
288
|
-
public static let colorSecondaryRed200 = UIColor(red: 0.
|
|
289
|
-
public static let colorSecondaryRed300 = UIColor(red: 0.953, green: 0.
|
|
290
|
-
public static let colorSecondaryRed400 = UIColor(red: 0.
|
|
291
|
-
public static let colorSecondaryRed500 = UIColor(red: 0.
|
|
292
|
-
public static let colorSecondaryRed600 = UIColor(red: 0.
|
|
293
|
-
public static let colorSecondaryRed700 = UIColor(red: 0.
|
|
294
|
-
public static let colorSecondaryRed800 = UIColor(red: 0.
|
|
295
|
-
public static let colorSecondaryRed900 = UIColor(red: 0.
|
|
310
|
+
public static let colorSecondaryRed100 = UIColor(red: 0.996, green: 0.929, blue: 0.933, alpha: 1)
|
|
311
|
+
public static let colorSecondaryRed200 = UIColor(red: 0.980, green: 0.725, blue: 0.737, alpha: 1)
|
|
312
|
+
public static let colorSecondaryRed300 = UIColor(red: 0.953, green: 0.529, blue: 0.537, alpha: 1)
|
|
313
|
+
public static let colorSecondaryRed400 = UIColor(red: 0.918, green: 0.365, blue: 0.345, alpha: 1)
|
|
314
|
+
public static let colorSecondaryRed500 = UIColor(red: 0.875, green: 0.220, blue: 0.169, alpha: 1)
|
|
315
|
+
public static let colorSecondaryRed600 = UIColor(red: 0.706, green: 0.165, blue: 0.153, alpha: 1)
|
|
316
|
+
public static let colorSecondaryRed700 = UIColor(red: 0.545, green: 0.133, blue: 0.149, alpha: 1)
|
|
317
|
+
public static let colorSecondaryRed800 = UIColor(red: 0.392, green: 0.106, blue: 0.129, alpha: 1)
|
|
318
|
+
public static let colorSecondaryRed900 = UIColor(red: 0.243, green: 0.071, blue: 0.098, alpha: 1)
|
|
319
|
+
public static let colorSecondarySandgrey100 = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
|
|
320
|
+
public static let colorSecondarySandgrey200 = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
|
|
321
|
+
public static let colorSecondarySandgrey300 = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
|
|
322
|
+
public static let colorSecondarySandgrey400 = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
|
|
323
|
+
public static let colorSecondarySandgrey500 = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
324
|
+
public static let colorSecondarySandgrey600 = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
|
|
325
|
+
public static let colorSecondarySandgrey700 = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
|
|
326
|
+
public static let colorSecondarySandgrey800 = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
|
|
327
|
+
public static let colorSecondarySandgrey900 = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
296
328
|
public static let colorSecondaryYellow100 = UIColor(red: 1.000, green: 0.973, blue: 0.886, alpha: 1)
|
|
297
329
|
public static let colorSecondaryYellow200 = UIColor(red: 1.000, green: 0.922, blue: 0.686, alpha: 1)
|
|
298
330
|
public static let colorSecondaryYellow300 = UIColor(red: 0.996, green: 0.878, blue: 0.490, alpha: 1)
|
|
@@ -302,10 +334,19 @@ public class StyleDictionaryColor {
|
|
|
302
334
|
public static let colorSecondaryYellow700 = UIColor(red: 0.612, green: 0.482, blue: 0.094, alpha: 1)
|
|
303
335
|
public static let colorSecondaryYellow800 = UIColor(red: 0.439, green: 0.337, blue: 0.075, alpha: 1)
|
|
304
336
|
public static let colorSecondaryYellow900 = UIColor(red: 0.275, green: 0.208, blue: 0.051, alpha: 1)
|
|
305
|
-
public static let colorStarEmpty = UIColor(red:
|
|
337
|
+
public static let colorStarEmpty = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
306
338
|
public static let colorStarFocus = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
|
|
307
339
|
public static let colorStarFull = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
|
|
308
|
-
public static let colorStarHover = UIColor(red:
|
|
340
|
+
public static let colorStarHover = UIColor(red: 1.000, green: 0.757, blue: 0.490, alpha: 1)
|
|
341
|
+
public static let colorStepperIcon = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
342
|
+
public static let colorStepperIndicatorBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
343
|
+
public static let colorStepperIndicatorBorder = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
344
|
+
public static let colorStepperIndicatorCurrentBackground = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
345
|
+
public static let colorStepperIndicatorCurrentBorder = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
346
|
+
public static let colorStepperItemBackground = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
347
|
+
public static let colorStepperItemCurrentBackground = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
348
|
+
public static let colorStepperLinkHoverText = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
349
|
+
public static let colorStepperTitle = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
309
350
|
public static let colorSuccess100 = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
|
|
310
351
|
public static let colorSuccess200 = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1)
|
|
311
352
|
public static let colorSuccess300 = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1)
|
|
@@ -315,73 +356,75 @@ public class StyleDictionaryColor {
|
|
|
315
356
|
public static let colorSuccess700 = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1)
|
|
316
357
|
public static let colorSuccess800 = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1)
|
|
317
358
|
public static let colorSuccess900 = UIColor(red: 0.008, green: 0.212, blue: 0.094, alpha: 1)
|
|
318
|
-
public static let colorTabsActive = UIColor(red: 0.000, green: 0.
|
|
359
|
+
public static let colorTabsActive = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
319
360
|
public static let colorTabsActiveDisabled = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
320
361
|
public static let colorTabsBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
321
|
-
public static let colorTabsDefault = UIColor(red: 0.
|
|
322
|
-
public static let colorTabsDisabled = UIColor(red: 0.
|
|
323
|
-
public static let colorTabsHover = UIColor(red: 0.000, green: 0.
|
|
362
|
+
public static let colorTabsDefault = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
363
|
+
public static let colorTabsDisabled = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
364
|
+
public static let colorTabsHover = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
324
365
|
public static let colorTabsShadow = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
325
|
-
public static let colorTagLinkDarkActiveBackground = UIColor(red: 0.
|
|
326
|
-
public static let colorTagLinkDarkBackground = UIColor(red: 0.
|
|
366
|
+
public static let colorTagLinkDarkActiveBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
367
|
+
public static let colorTagLinkDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
327
368
|
public static let colorTagLinkDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
328
|
-
public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.
|
|
369
|
+
public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
329
370
|
public static let colorTagLinkDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
330
|
-
public static let colorTagLinkLightActiveBackground = UIColor(red: 0.
|
|
371
|
+
public static let colorTagLinkLightActiveBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
331
372
|
public static let colorTagLinkLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
332
|
-
public static let colorTagLinkLightBorder = UIColor(red: 0.
|
|
333
|
-
public static let colorTagLinkLightHoverBackground = UIColor(red: 0.
|
|
334
|
-
public static let colorTagLinkLightText = UIColor(red: 0.
|
|
335
|
-
public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.
|
|
336
|
-
public static let colorTagRemovableDarkBackground = UIColor(red: 0.
|
|
337
|
-
public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.
|
|
338
|
-
public static let colorTagRemovableDarkIcon = UIColor(red: 0.
|
|
339
|
-
public static let colorTagRemovableDarkText = UIColor(red: 0.
|
|
340
|
-
public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.
|
|
341
|
-
public static let colorTagRemovableLightBackground = UIColor(red: 0.
|
|
342
|
-
public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.
|
|
343
|
-
public static let colorTagRemovableLightIcon = UIColor(red: 0.
|
|
373
|
+
public static let colorTagLinkLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
374
|
+
public static let colorTagLinkLightHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
375
|
+
public static let colorTagLinkLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
376
|
+
public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
377
|
+
public static let colorTagRemovableDarkBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
378
|
+
public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
379
|
+
public static let colorTagRemovableDarkIcon = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
380
|
+
public static let colorTagRemovableDarkText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
381
|
+
public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
382
|
+
public static let colorTagRemovableLightBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
383
|
+
public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
384
|
+
public static let colorTagRemovableLightIcon = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
344
385
|
public static let colorTagRemovableLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
345
386
|
public static let colorTagSelectableDarkActiveBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
346
387
|
public static let colorTagSelectableDarkActiveBorder = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
347
|
-
public static let colorTagSelectableDarkActiveText = UIColor(red: 0.
|
|
348
|
-
public static let colorTagSelectableDarkBackground = UIColor(red: 0.
|
|
388
|
+
public static let colorTagSelectableDarkActiveText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
389
|
+
public static let colorTagSelectableDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
349
390
|
public static let colorTagSelectableDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
350
|
-
public static let colorTagSelectableDarkDisabledBackground = UIColor(red: 0.
|
|
351
|
-
public static let colorTagSelectableDarkDisabledText = UIColor(red: 0.
|
|
391
|
+
public static let colorTagSelectableDarkDisabledBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
392
|
+
public static let colorTagSelectableDarkDisabledText = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
352
393
|
public static let colorTagSelectableDarkHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
353
394
|
public static let colorTagSelectableDarkSelectedBackground = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
354
395
|
public static let colorTagSelectableDarkSelectedBorder = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
355
396
|
public static let colorTagSelectableDarkSelectedHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
356
|
-
public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.
|
|
397
|
+
public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
357
398
|
public static let colorTagSelectableDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
358
399
|
public static let colorTagSelectableLightActiveBackground = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
359
400
|
public static let colorTagSelectableLightActiveBorder = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
360
401
|
public static let colorTagSelectableLightActiveText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
361
402
|
public static let colorTagSelectableLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
362
|
-
public static let colorTagSelectableLightBorder = UIColor(red: 0.
|
|
363
|
-
public static let colorTagSelectableLightDisabledBackground = UIColor(red: 0.
|
|
364
|
-
public static let colorTagSelectableLightDisabledText = UIColor(red: 0.
|
|
403
|
+
public static let colorTagSelectableLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
404
|
+
public static let colorTagSelectableLightDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
405
|
+
public static let colorTagSelectableLightDisabledText = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
365
406
|
public static let colorTagSelectableLightHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
366
407
|
public static let colorTagSelectableLightSelectedBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
367
408
|
public static let colorTagSelectableLightSelectedHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
368
409
|
public static let colorTagSelectableLightSelectedText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
369
|
-
public static let colorTagSelectableLightText = UIColor(red: 0.
|
|
370
|
-
public static let colorTagTextDarkBackground = UIColor(red: 0.
|
|
410
|
+
public static let colorTagSelectableLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
411
|
+
public static let colorTagTextDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
371
412
|
public static let colorTagTextDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
372
413
|
public static let colorTagTextDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
373
414
|
public static let colorTagTextLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
374
|
-
public static let colorTagTextLightBorder = UIColor(red: 0.
|
|
375
|
-
public static let colorTagTextLightText = UIColor(red: 0.
|
|
376
|
-
public static let colorToggleDisabledBackground = UIColor(red: 0.
|
|
415
|
+
public static let colorTagTextLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
416
|
+
public static let colorTagTextLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
417
|
+
public static let colorToggleDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
377
418
|
public static let colorToggleDisabledCheckedBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
378
419
|
public static let colorToggleDisabledCheckedCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
379
|
-
public static let colorToggleDisabledCircle = UIColor(red: 0.
|
|
380
|
-
public static let colorToggleHoverCircle = UIColor(red: 0.
|
|
381
|
-
public static let colorToggleOffBackground = UIColor(red: 0.
|
|
420
|
+
public static let colorToggleDisabledCircle = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
421
|
+
public static let colorToggleHoverCircle = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
422
|
+
public static let colorToggleOffBackground = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
382
423
|
public static let colorToggleOffCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
383
424
|
public static let colorToggleOnBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
384
425
|
public static let colorToggleOnCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
426
|
+
public static let colorTooltipBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
427
|
+
public static let colorTooltipBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
385
428
|
public static let colorWarning100 = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
|
|
386
429
|
public static let colorWarning200 = UIColor(red: 0.973, green: 0.824, blue: 0.702, alpha: 1)
|
|
387
430
|
public static let colorWarning300 = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1)
|