@mozaic-ds/vue 1.0.0-rc.0 → 1.0.0-rc.2
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/README.md +10 -8
- package/dist/mozaic-vue.adeo.css +45 -43
- package/dist/mozaic-vue.adeo.umd.js +11694 -22360
- package/dist/mozaic-vue.common.js +11694 -22360
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +11694 -22360
- 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 +23 -22
- package/src/components/autocomplete/MAutocomplete.vue +294 -111
- package/src/components/checkbox/MCheckboxGroup.vue +8 -0
- package/src/components/dropdown/MDropdown.vue +317 -0
- package/src/components/dropdown/index.js +7 -0
- package/src/components/flag/MFlag.vue +1 -1
- package/src/components/icon/MIcon.vue +18 -2
- package/src/components/index.js +2 -1
- package/src/components/link/MLink.vue +14 -3
- package/src/components/listbox/MListBox.vue +97 -57
- package/src/components/listbox/MListBoxActions.vue +251 -0
- package/src/components/listbox/index.js +6 -1
- package/src/components/passwordinput/MPasswordInput.vue +1 -0
- package/src/components/phonenumber/MPhoneNumber.vue +11 -3
- package/src/components/quantityselector/MQuantitySelector.vue +15 -2
- package/src/components/ratingstars/MStarsInput.vue +1 -0
- package/src/components/stepper/MStepper.vue +68 -27
- package/src/components/tabs/MTab.vue +73 -59
- package/src/components/textarea/MTextArea.vue +1 -0
- package/src/components/textinput/MTextInputField.vue +1 -1
- package/src/index.js +2 -1
- package/src/tokens/adeo/android/colors.xml +183 -126
- package/src/tokens/adeo/css/_variables.scss +183 -126
- package/src/tokens/adeo/css/root.scss +80 -23
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +60 -3
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +187 -130
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +183 -126
- package/src/tokens/adeo/js/tokens.js +183 -126
- package/src/tokens/adeo/js/tokensObject.js +1570 -283
- package/src/tokens/adeo/scss/_tokens.scss +342 -128
- package/types/index.d.ts +4 -0
|
@@ -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
29
|
public static let colorButtonBorderedDangerActiveBackground = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1)
|
|
28
30
|
public static let colorButtonBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
29
31
|
public static let colorButtonBorderedDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
30
|
-
public static let colorButtonBorderedDangerDisabledBackground = UIColor(red: 0.
|
|
31
|
-
public static let colorButtonBorderedDangerDisabledFont = UIColor(red: 0.
|
|
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)
|
|
32
34
|
public static let colorButtonBorderedDangerFocusBorder = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
33
35
|
public static let colorButtonBorderedDangerFont = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
34
36
|
public static let colorButtonBorderedDangerHoverBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
|
|
35
|
-
public static let colorButtonBorderedDisabledBackground = UIColor(red: 0.
|
|
36
|
-
public static let colorButtonBorderedDisabledFont = UIColor(red: 0.
|
|
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
61
|
public static let colorButtonSolidDangerBackground = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
60
|
-
public static let colorButtonSolidDangerDisabledBackground = UIColor(red: 0.
|
|
61
|
-
public static let colorButtonSolidDangerDisabledFont = UIColor(red: 0.
|
|
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,17 +98,21 @@ 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)
|
|
@@ -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
157
|
public static let colorFontPrimary01 = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
150
|
-
public static let colorFontPrimary02 = UIColor(red: 0.
|
|
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,47 +182,53 @@ 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
201
|
public static let colorLinkDangerActive = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
191
202
|
public static let colorLinkDangerBase = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
192
|
-
public static let colorLinkDangerDisabled = UIColor(red: 0.
|
|
203
|
+
public static let colorLinkDangerDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
193
204
|
public static let colorLinkDangerHover = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
|
|
194
205
|
public static let colorLinkDangerVisited = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
195
|
-
public static let colorLinkDarkActive = UIColor(red: 0.
|
|
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.
|
|
223
|
+
public static let colorLinkPrimaryDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
213
224
|
public static let colorLinkPrimaryHover = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
214
225
|
public static let colorLinkPrimaryVisited = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
226
|
+
public static let colorListboxBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
227
|
+
public static let colorListboxBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
228
|
+
public static let colorListboxDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
229
|
+
public static let colorListboxTileBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
230
|
+
public static let colorListboxTileHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
231
|
+
public static let colorListboxTileShadow = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
215
232
|
public static let colorNotificationDangerBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
|
|
216
233
|
public static let colorNotificationDangerBorder = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1)
|
|
217
234
|
public static let colorNotificationDangerIcon = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
|
|
@@ -225,6 +242,22 @@ public class StyleDictionaryColor {
|
|
|
225
242
|
public static let colorNotificationWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
|
|
226
243
|
public static let colorNotificationWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
|
|
227
244
|
public static let colorNotificationWarningIcon = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1)
|
|
245
|
+
public static let colorOptionButtonCheckedLabelBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
246
|
+
public static let colorOptionButtonCheckedLabelShadow = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
247
|
+
public static let colorOptionButtonDisabledLabelBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
248
|
+
public static let colorOptionButtonHoverLabelShadow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
249
|
+
public static let colorOptionButtonLabelShadow = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
250
|
+
public static let colorOptionCardCheckedLabelBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
251
|
+
public static let colorOptionCardCheckedLabelShadow = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
252
|
+
public static let colorOptionCardHoverLabelShadow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
253
|
+
public static let colorOptionCardLabelShadow = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
254
|
+
public static let colorOverlayBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
255
|
+
public static let colorOverlayLoaderBackground = UIColor(red: 0.031, green: 0.141, blue: 0.208, alpha: 1)
|
|
256
|
+
public static let colorPasswordInputButtonHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
257
|
+
public static let colorPhoneNumberButtonBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
258
|
+
public static let colorPhoneNumberItemBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
259
|
+
public static let colorPhoneNumberItemFocusBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
260
|
+
public static let colorPhoneNumberListBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
228
261
|
public static let colorPrimary01100 = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
|
|
229
262
|
public static let colorPrimary01200 = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
230
263
|
public static let colorPrimary01300 = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
@@ -234,19 +267,19 @@ public class StyleDictionaryColor {
|
|
|
234
267
|
public static let colorPrimary01700 = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
235
268
|
public static let colorPrimary01800 = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
236
269
|
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.
|
|
270
|
+
public static let colorPrimary02100 = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1)
|
|
271
|
+
public static let colorPrimary02200 = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1)
|
|
272
|
+
public static let colorPrimary02300 = UIColor(red: 0.702, green: 0.718, blue: 0.757, alpha: 1)
|
|
273
|
+
public static let colorPrimary02400 = UIColor(red: 0.561, green: 0.580, blue: 0.639, alpha: 1)
|
|
274
|
+
public static let colorPrimary02500 = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1)
|
|
275
|
+
public static let colorPrimary02600 = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1)
|
|
276
|
+
public static let colorPrimary02700 = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1)
|
|
277
|
+
public static let colorPrimary02800 = UIColor(red: 0.141, green: 0.161, blue: 0.220, alpha: 1)
|
|
278
|
+
public static let colorPrimary02900 = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1)
|
|
279
|
+
public static let colorProgressBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
247
280
|
public static let colorProgressBrandedIndicator = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
248
281
|
public static let colorProgressIndicator = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
|
|
249
|
-
public static let colorProgressPercentageDefault = UIColor(red: 0.
|
|
282
|
+
public static let colorProgressPercentageDefault = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
250
283
|
public static let colorProgressPercentageHalf = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
251
284
|
public static let colorSecondaryBlue100 = UIColor(red: 0.918, green: 0.929, blue: 0.937, alpha: 1)
|
|
252
285
|
public static let colorSecondaryBlue200 = UIColor(red: 0.804, green: 0.831, blue: 0.847, alpha: 1)
|
|
@@ -293,6 +326,15 @@ public class StyleDictionaryColor {
|
|
|
293
326
|
public static let colorSecondaryRed700 = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
|
|
294
327
|
public static let colorSecondaryRed800 = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
|
|
295
328
|
public static let colorSecondaryRed900 = UIColor(red: 0.176, green: 0.000, blue: 0.000, alpha: 1)
|
|
329
|
+
public static let colorSecondarySandgrey100 = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
|
|
330
|
+
public static let colorSecondarySandgrey200 = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
|
|
331
|
+
public static let colorSecondarySandgrey300 = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
|
|
332
|
+
public static let colorSecondarySandgrey400 = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
|
|
333
|
+
public static let colorSecondarySandgrey500 = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
334
|
+
public static let colorSecondarySandgrey600 = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
|
|
335
|
+
public static let colorSecondarySandgrey700 = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
|
|
336
|
+
public static let colorSecondarySandgrey800 = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
|
|
337
|
+
public static let colorSecondarySandgrey900 = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
296
338
|
public static let colorSecondaryYellow100 = UIColor(red: 1.000, green: 0.973, blue: 0.886, alpha: 1)
|
|
297
339
|
public static let colorSecondaryYellow200 = UIColor(red: 1.000, green: 0.922, blue: 0.686, alpha: 1)
|
|
298
340
|
public static let colorSecondaryYellow300 = UIColor(red: 0.996, green: 0.878, blue: 0.490, alpha: 1)
|
|
@@ -302,10 +344,19 @@ public class StyleDictionaryColor {
|
|
|
302
344
|
public static let colorSecondaryYellow700 = UIColor(red: 0.612, green: 0.482, blue: 0.094, alpha: 1)
|
|
303
345
|
public static let colorSecondaryYellow800 = UIColor(red: 0.439, green: 0.337, blue: 0.075, alpha: 1)
|
|
304
346
|
public static let colorSecondaryYellow900 = UIColor(red: 0.275, green: 0.208, blue: 0.051, alpha: 1)
|
|
305
|
-
public static let colorStarEmpty = UIColor(red:
|
|
347
|
+
public static let colorStarEmpty = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
306
348
|
public static let colorStarFocus = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
|
|
307
349
|
public static let colorStarFull = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
|
|
308
350
|
public static let colorStarHover = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1)
|
|
351
|
+
public static let colorStepperIcon = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
352
|
+
public static let colorStepperIndicatorBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
353
|
+
public static let colorStepperIndicatorBorder = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
354
|
+
public static let colorStepperIndicatorCurrentBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
355
|
+
public static let colorStepperIndicatorCurrentBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
356
|
+
public static let colorStepperItemBackground = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
357
|
+
public static let colorStepperItemCurrentBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
358
|
+
public static let colorStepperLinkHoverText = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
359
|
+
public static let colorStepperTitle = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
309
360
|
public static let colorSuccess100 = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
|
|
310
361
|
public static let colorSuccess200 = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1)
|
|
311
362
|
public static let colorSuccess300 = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1)
|
|
@@ -315,73 +366,79 @@ public class StyleDictionaryColor {
|
|
|
315
366
|
public static let colorSuccess700 = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1)
|
|
316
367
|
public static let colorSuccess800 = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1)
|
|
317
368
|
public static let colorSuccess900 = UIColor(red: 0.008, green: 0.212, blue: 0.094, alpha: 1)
|
|
318
|
-
public static let
|
|
369
|
+
public static let colorTabsActiveBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1)
|
|
319
370
|
public static let colorTabsActiveDisabled = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
371
|
+
public static let colorTabsActiveText = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
320
372
|
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
|
|
373
|
+
public static let colorTabsDefault = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
374
|
+
public static let colorTabsDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
375
|
+
public static let colorTabsElementBackground = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1)
|
|
323
376
|
public static let colorTabsHover = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
377
|
+
public static let colorTabsSelectedBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
378
|
+
public static let colorTabsSelectedText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
324
379
|
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.
|
|
380
|
+
public static let colorTagLinkDarkActiveBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
381
|
+
public static let colorTagLinkDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
327
382
|
public static let colorTagLinkDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
328
|
-
public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.
|
|
383
|
+
public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
329
384
|
public static let colorTagLinkDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
330
|
-
public static let colorTagLinkLightActiveBackground = UIColor(red: 0.
|
|
385
|
+
public static let colorTagLinkLightActiveBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
331
386
|
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.
|
|
387
|
+
public static let colorTagLinkLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
388
|
+
public static let colorTagLinkLightHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
389
|
+
public static let colorTagLinkLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
390
|
+
public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1)
|
|
391
|
+
public static let colorTagRemovableDarkBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
392
|
+
public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
393
|
+
public static let colorTagRemovableDarkIcon = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
394
|
+
public static let colorTagRemovableDarkText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
395
|
+
public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
396
|
+
public static let colorTagRemovableLightBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1)
|
|
397
|
+
public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
398
|
+
public static let colorTagRemovableLightIcon = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1)
|
|
344
399
|
public static let colorTagRemovableLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
345
400
|
public static let colorTagSelectableDarkActiveBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
346
401
|
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.
|
|
402
|
+
public static let colorTagSelectableDarkActiveText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
403
|
+
public static let colorTagSelectableDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
349
404
|
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.
|
|
405
|
+
public static let colorTagSelectableDarkDisabledBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
406
|
+
public static let colorTagSelectableDarkDisabledText = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
352
407
|
public static let colorTagSelectableDarkHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
353
408
|
public static let colorTagSelectableDarkSelectedBackground = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
354
409
|
public static let colorTagSelectableDarkSelectedBorder = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
355
410
|
public static let colorTagSelectableDarkSelectedHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
356
|
-
public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.
|
|
411
|
+
public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
357
412
|
public static let colorTagSelectableDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
358
413
|
public static let colorTagSelectableLightActiveBackground = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
359
414
|
public static let colorTagSelectableLightActiveBorder = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
360
415
|
public static let colorTagSelectableLightActiveText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
361
416
|
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.
|
|
417
|
+
public static let colorTagSelectableLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
418
|
+
public static let colorTagSelectableLightDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
419
|
+
public static let colorTagSelectableLightDisabledText = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
365
420
|
public static let colorTagSelectableLightHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
366
421
|
public static let colorTagSelectableLightSelectedBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
367
422
|
public static let colorTagSelectableLightSelectedHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
368
423
|
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.
|
|
424
|
+
public static let colorTagSelectableLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
425
|
+
public static let colorTagTextDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
371
426
|
public static let colorTagTextDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
372
427
|
public static let colorTagTextDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
373
428
|
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.
|
|
429
|
+
public static let colorTagTextLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
430
|
+
public static let colorTagTextLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1)
|
|
431
|
+
public static let colorToggleDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
377
432
|
public static let colorToggleDisabledCheckedBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
378
433
|
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.
|
|
434
|
+
public static let colorToggleDisabledCircle = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1)
|
|
435
|
+
public static let colorToggleHoverCircle = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1)
|
|
436
|
+
public static let colorToggleOffBackground = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
382
437
|
public static let colorToggleOffCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
383
438
|
public static let colorToggleOnBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
|
|
384
439
|
public static let colorToggleOnCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
440
|
+
public static let colorTooltipBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1)
|
|
441
|
+
public static let colorTooltipBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
385
442
|
public static let colorWarning100 = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
|
|
386
443
|
public static let colorWarning200 = UIColor(red: 0.973, green: 0.824, blue: 0.702, alpha: 1)
|
|
387
444
|
public static let colorWarning300 = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1)
|