@mozaic-ds/vue 1.0.0-beta.1 → 1.0.0-beta.4

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.
Files changed (179) hide show
  1. package/LICENSE +51 -0
  2. package/README.md +218 -84
  3. package/dist/mozaic-vue.css +1 -1
  4. package/dist/mozaic-vue.d.ts +920 -0
  5. package/dist/mozaic-vue.js +877 -0
  6. package/dist/mozaic-vue.js.map +1 -0
  7. package/dist/mozaic-vue.umd.cjs +2 -0
  8. package/dist/mozaic-vue.umd.cjs.map +1 -0
  9. package/env.d.ts +1 -0
  10. package/package.json +80 -50
  11. package/src/components/Contributing.mdx +118 -0
  12. package/src/components/GettingStarted.mdx +39 -0
  13. package/src/components/Introduction.mdx +54 -0
  14. package/src/components/Support.mdx +18 -0
  15. package/src/components/badge/MBadge.spec.ts +16 -0
  16. package/src/components/badge/MBadge.stories.ts +50 -0
  17. package/src/components/badge/MBadge.vue +36 -34
  18. package/src/components/button/MButton.spec.ts +191 -0
  19. package/src/components/button/MButton.stories.ts +66 -0
  20. package/src/components/button/MButton.vue +98 -154
  21. package/src/components/checkbox/MCheckbox.spec.ts +104 -0
  22. package/src/components/checkbox/MCheckbox.stories.ts +83 -0
  23. package/src/components/checkbox/MCheckbox.vue +60 -101
  24. package/src/components/checkboxgroup/MCheckboxGroup.spec.ts +78 -0
  25. package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +61 -0
  26. package/src/components/checkboxgroup/MCheckboxGroup.vue +97 -0
  27. package/src/components/field/MField.spec.ts +166 -0
  28. package/src/components/field/MField.stories.ts +376 -0
  29. package/src/components/field/MField.vue +78 -61
  30. package/src/components/fieldgroup/MFieldGroup.spec.ts +165 -0
  31. package/src/components/fieldgroup/MFieldGroup.stories.ts +274 -0
  32. package/src/components/fieldgroup/MFieldGroup.vue +79 -0
  33. package/src/components/iconbutton/MIconButton.spec.ts +108 -0
  34. package/src/components/iconbutton/MIconButton.stories.ts +66 -0
  35. package/src/components/iconbutton/MIconButton.vue +73 -0
  36. package/src/components/link/MLink.spec.ts +154 -0
  37. package/src/components/link/MLink.stories.ts +98 -0
  38. package/src/components/link/MLink.vue +86 -109
  39. package/src/components/loader/MLoader.spec.ts +104 -0
  40. package/src/components/loader/MLoader.stories.ts +45 -0
  41. package/src/components/loader/MLoader.vue +65 -55
  42. package/src/components/overlay/MOverlay.spec.ts +51 -0
  43. package/src/components/overlay/MOverlay.stories.ts +40 -0
  44. package/src/components/overlay/MOverlay.vue +27 -19
  45. package/src/components/quantityselector/MQuantitySelector.spec.ts +262 -0
  46. package/src/components/quantityselector/MQuantitySelector.stories.ts +89 -0
  47. package/src/components/quantityselector/MQuantitySelector.vue +160 -136
  48. package/src/components/radio/MRadio.spec.ts +104 -0
  49. package/src/components/radio/MRadio.stories.ts +68 -0
  50. package/src/components/radio/MRadio.vue +56 -39
  51. package/src/components/radiogroup/MRadioGroup.spec.ts +54 -0
  52. package/src/components/radiogroup/MRadioGroup.stories.ts +61 -0
  53. package/src/components/radiogroup/MRadioGroup.vue +79 -0
  54. package/src/components/select/MSelect.spec.ts +114 -0
  55. package/src/components/select/MSelect.stories.ts +101 -0
  56. package/src/components/select/MSelect.vue +77 -119
  57. package/src/components/statusbadge/MStatusBadge.stories.ts +45 -0
  58. package/src/components/statusbadge/MStatusBadge.vue +40 -0
  59. package/src/components/statusbadge/MStatusDot.vue +32 -0
  60. package/src/components/statusbadge/MstatusBadge.spec.ts +16 -0
  61. package/src/components/textarea/MTextArea.spec.ts +112 -0
  62. package/src/components/textarea/MTextArea.stories.ts +67 -0
  63. package/src/components/textarea/MTextArea.vue +81 -42
  64. package/src/components/textinput/MTextInput.spec.ts +121 -0
  65. package/src/components/textinput/MTextInput.stories.ts +114 -0
  66. package/src/components/textinput/MTextInput.vue +127 -47
  67. package/src/components/toggle/MToggle.spec.ts +99 -0
  68. package/src/components/toggle/MToggle.stories.ts +68 -0
  69. package/src/components/toggle/MToggle.vue +63 -103
  70. package/src/components/usingIcons.mdx +43 -0
  71. package/src/components/usingPresets.mdx +125 -0
  72. package/src/main.ts +39 -0
  73. package/dist/demo.html +0 -1
  74. package/dist/mozaic-vue.adeo.css +0 -45
  75. package/dist/mozaic-vue.adeo.umd.js +0 -41775
  76. package/dist/mozaic-vue.common.js +0 -41765
  77. package/dist/mozaic-vue.common.js.map +0 -1
  78. package/dist/mozaic-vue.umd.js +0 -41776
  79. package/dist/mozaic-vue.umd.js.map +0 -1
  80. package/dist/mozaic-vue.umd.min.js +0 -4
  81. package/dist/mozaic-vue.umd.min.js.map +0 -1
  82. package/postinstall.js +0 -3
  83. package/src/components/accordion/MAccordion.vue +0 -128
  84. package/src/components/accordion/index.js +0 -7
  85. package/src/components/autocomplete/MAutocomplete.vue +0 -198
  86. package/src/components/autocomplete/index.js +0 -7
  87. package/src/components/badge/index.js +0 -7
  88. package/src/components/breadcrumb/MBreadcrumb.vue +0 -73
  89. package/src/components/breadcrumb/index.js +0 -7
  90. package/src/components/button/index.js +0 -7
  91. package/src/components/card/MCard.vue +0 -78
  92. package/src/components/card/index.js +0 -7
  93. package/src/components/checkbox/MCheckboxGroup.vue +0 -155
  94. package/src/components/checkbox/index.js +0 -12
  95. package/src/components/container/MContainer.vue +0 -33
  96. package/src/components/container/index.js +0 -7
  97. package/src/components/datatable/MDataTable.vue +0 -651
  98. package/src/components/datatable/MDataTableHeader.vue +0 -55
  99. package/src/components/datatable/MDataTableTop.vue +0 -35
  100. package/src/components/datatable/helpers.js +0 -132
  101. package/src/components/datatable/index.js +0 -12
  102. package/src/components/field/index.js +0 -7
  103. package/src/components/fileuploader/MFileResult.vue +0 -149
  104. package/src/components/fileuploader/MFileUploader.vue +0 -142
  105. package/src/components/fileuploader/index.js +0 -7
  106. package/src/components/flag/MFlag.vue +0 -46
  107. package/src/components/flag/index.js +0 -7
  108. package/src/components/heading/MHeading.vue +0 -75
  109. package/src/components/heading/index.js +0 -7
  110. package/src/components/hero/MHero.vue +0 -93
  111. package/src/components/hero/index.js +0 -7
  112. package/src/components/icon/MIcon.vue +0 -120
  113. package/src/components/icon/index.js +0 -7
  114. package/src/components/index.js +0 -43
  115. package/src/components/layer/MLayer.vue +0 -208
  116. package/src/components/layer/index.js +0 -7
  117. package/src/components/link/index.js +0 -7
  118. package/src/components/listbox/MListBox.vue +0 -106
  119. package/src/components/listbox/index.js +0 -7
  120. package/src/components/loader/index.js +0 -7
  121. package/src/components/modal/MModal.vue +0 -179
  122. package/src/components/modal/index.js +0 -7
  123. package/src/components/notification/MNotification.vue +0 -110
  124. package/src/components/notification/index.js +0 -7
  125. package/src/components/optionbutton/MOptionButton.vue +0 -67
  126. package/src/components/optionbutton/index.js +0 -7
  127. package/src/components/optioncard/MOptionCard.vue +0 -132
  128. package/src/components/optioncard/index.js +0 -7
  129. package/src/components/optiongroup/MOptionGroup.vue +0 -18
  130. package/src/components/optiongroup/index.js +0 -7
  131. package/src/components/overlay/MOverlayLoader.vue +0 -43
  132. package/src/components/overlay/index.js +0 -12
  133. package/src/components/pagination/MPagination.vue +0 -162
  134. package/src/components/pagination/index.js +0 -7
  135. package/src/components/passwordinput/MPasswordInput.vue +0 -96
  136. package/src/components/passwordinput/index.js +0 -7
  137. package/src/components/phonenumber/MPhoneNumber.vue +0 -390
  138. package/src/components/phonenumber/index.js +0 -7
  139. package/src/components/progressbar/MProgress.vue +0 -102
  140. package/src/components/progressbar/index.js +0 -7
  141. package/src/components/quantityselector/index.js +0 -7
  142. package/src/components/radio/MRadioGroup.vue +0 -111
  143. package/src/components/radio/index.js +0 -12
  144. package/src/components/ratingstars/MStarsInput.vue +0 -118
  145. package/src/components/ratingstars/MStarsResult.vue +0 -89
  146. package/src/components/ratingstars/index.js +0 -12
  147. package/src/components/select/index.js +0 -7
  148. package/src/components/stepper/MStepper.vue +0 -70
  149. package/src/components/stepper/index.js +0 -7
  150. package/src/components/tabs/MTab.vue +0 -184
  151. package/src/components/tabs/index.js +0 -7
  152. package/src/components/tags/MTag.vue +0 -173
  153. package/src/components/tags/index.js +0 -7
  154. package/src/components/textarea/index.js +0 -7
  155. package/src/components/textinput/MTextInputField.vue +0 -105
  156. package/src/components/textinput/MTextInputIcon.vue +0 -42
  157. package/src/components/textinput/index.js +0 -7
  158. package/src/components/toggle/index.js +0 -7
  159. package/src/components/tooltip/MTooltip.vue +0 -42
  160. package/src/components/tooltip/index.js +0 -7
  161. package/src/index.js +0 -62
  162. package/src/shims-tsx.d.ts +0 -13
  163. package/src/shims.vue.d.ts +0 -4
  164. package/src/tokens/adeo/android/colors.xml +0 -391
  165. package/src/tokens/adeo/android/font_dimens.xml +0 -18
  166. package/src/tokens/adeo/css/_variables.scss +0 -385
  167. package/src/tokens/adeo/css/root.scss +0 -387
  168. package/src/tokens/adeo/ios/StyleDictionaryColor.h +0 -399
  169. package/src/tokens/adeo/ios/StyleDictionaryColor.m +0 -411
  170. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +0 -394
  171. package/src/tokens/adeo/ios/StyleDictionarySize.h +0 -69
  172. package/src/tokens/adeo/ios/StyleDictionarySize.m +0 -70
  173. package/src/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
  174. package/src/tokens/adeo/js/tokens.js +0 -483
  175. package/src/tokens/adeo/js/tokensObject.js +0 -10354
  176. package/src/tokens/adeo/scss/_tokens.scss +0 -1300
  177. package/src/utils/mozaicClasses.js +0 -16
  178. package/src/utils/theme.validator.js +0 -19
  179. package/types/index.d.ts +0 -100
@@ -1,394 +0,0 @@
1
-
2
- //
3
- // StyleDictionaryColor.swift
4
- //
5
-
6
- import UIKit
7
-
8
- public class StyleDictionaryColor {
9
- public static let colorBadgeDangerBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
10
- public static let colorBadgeDangerBorder = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1)
11
- public static let colorBadgeDangerText = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
12
- public static let colorBadgeInfoBackground = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1)
13
- public static let colorBadgeInfoBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1)
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.933, green: 0.929, blue: 0.918, alpha: 1)
16
- public static let colorBadgeNeutralBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
17
- public static let colorBadgeNeutralText = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
18
- public static let colorBadgeSuccessBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
19
- public static let colorBadgeSuccessBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1)
20
- public static let colorBadgeSuccessText = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1)
21
- public static let colorBadgeWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
22
- public static let colorBadgeWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
23
- public static let colorBadgeWarningText = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1)
24
- public static let colorButtonBorderedActiveBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
25
- public static let colorButtonBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
26
- public static let colorButtonBorderedBorder = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
27
- public static let colorButtonBorderedDangerActiveBackground = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1)
28
- public static let colorButtonBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
29
- public static let colorButtonBorderedDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
30
- public static let colorButtonBorderedDangerDisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
31
- public static let colorButtonBorderedDangerDisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
32
- public static let colorButtonBorderedDangerFocusBorder = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
33
- public static let colorButtonBorderedDangerFont = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
34
- public static let colorButtonBorderedDangerHoverBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
35
- public static let colorButtonBorderedDisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
36
- public static let colorButtonBorderedDisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
37
- public static let colorButtonBorderedFocusBorder = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
38
- public static let colorButtonBorderedFont = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
39
- public static let colorButtonBorderedHoverBackground = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
40
- public static let colorButtonBorderedNeutralActiveBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
41
- public static let colorButtonBorderedNeutralBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
42
- public static let colorButtonBorderedNeutralBorder = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
43
- public static let colorButtonBorderedNeutralDisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
44
- public static let colorButtonBorderedNeutralDisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
45
- public static let colorButtonBorderedNeutralFocusBorder = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
46
- public static let colorButtonBorderedNeutralFont = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
47
- public static let colorButtonBorderedNeutralHoverBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
48
- public static let colorButtonBorderedPrimary02ActiveBackground = UIColor(red: 0.647, green: 0.820, blue: 0.796, alpha: 1)
49
- public static let colorButtonBorderedPrimary02Background = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
50
- public static let colorButtonBorderedPrimary02Border = UIColor(red: 0.000, green: 0.459, blue: 0.455, alpha: 1)
51
- public static let colorButtonBorderedPrimary02DisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
52
- public static let colorButtonBorderedPrimary02DisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
53
- public static let colorButtonBorderedPrimary02FocusBorder = UIColor(red: 0.024, green: 0.169, blue: 0.208, alpha: 1)
54
- public static let colorButtonBorderedPrimary02Font = UIColor(red: 0.000, green: 0.459, blue: 0.455, alpha: 1)
55
- public static let colorButtonBorderedPrimary02HoverBackground = UIColor(red: 0.859, green: 0.929, blue: 0.918, alpha: 1)
56
- public static let colorButtonSolidActiveBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
57
- public static let colorButtonSolidBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
58
- public static let colorButtonSolidDangerActiveBackground = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
59
- public static let colorButtonSolidDangerBackground = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
60
- public static let colorButtonSolidDangerDisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
61
- public static let colorButtonSolidDangerDisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
62
- public static let colorButtonSolidDangerFocusBorder = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
63
- public static let colorButtonSolidDangerFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
64
- public static let colorButtonSolidDangerHoverBackground = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
65
- public static let colorButtonSolidDangerHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
66
- public static let colorButtonSolidDisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
67
- public static let colorButtonSolidDisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
68
- public static let colorButtonSolidFocusBorder = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
69
- public static let colorButtonSolidFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
70
- public static let colorButtonSolidHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
71
- public static let colorButtonSolidHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
72
- public static let colorButtonSolidNeutralActiveBackground = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
73
- public static let colorButtonSolidNeutralBackground = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
74
- public static let colorButtonSolidNeutralDisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
75
- public static let colorButtonSolidNeutralDisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
76
- public static let colorButtonSolidNeutralFocusBorder = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
77
- public static let colorButtonSolidNeutralFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
78
- public static let colorButtonSolidNeutralHoverBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
79
- public static let colorButtonSolidNeutralHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
80
- public static let colorButtonSolidPrimary02ActiveBackground = UIColor(red: 0.024, green: 0.169, blue: 0.208, alpha: 1)
81
- public static let colorButtonSolidPrimary02Background = UIColor(red: 0.000, green: 0.459, blue: 0.455, alpha: 1)
82
- public static let colorButtonSolidPrimary02DisabledBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
83
- public static let colorButtonSolidPrimary02DisabledFont = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
84
- public static let colorButtonSolidPrimary02FocusBorder = UIColor(red: 0.024, green: 0.169, blue: 0.208, alpha: 1)
85
- public static let colorButtonSolidPrimary02Font = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
86
- public static let colorButtonSolidPrimary02HoverBackground = UIColor(red: 0.024, green: 0.227, blue: 0.267, alpha: 1)
87
- public static let colorButtonSolidPrimary02HoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
88
- public static let colorDanger100 = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
89
- public static let colorDanger200 = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1)
90
- public static let colorDanger300 = UIColor(red: 0.953, green: 0.553, blue: 0.549, alpha: 1)
91
- public static let colorDanger400 = UIColor(red: 0.937, green: 0.373, blue: 0.361, alpha: 1)
92
- public static let colorDanger500 = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1)
93
- public static let colorDanger600 = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
94
- public static let colorDanger700 = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
95
- public static let colorDanger800 = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
96
- public static let colorDanger900 = UIColor(red: 0.176, green: 0.000, blue: 0.000, alpha: 1)
97
- public static let colorDividerDark = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
98
- public static let colorDividerDefault = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
99
- public static let colorDividerLight = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
100
- public static let colorDividerLightest = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
101
- public static let colorFieldsError = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
102
- public static let colorFieldsHelp = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
103
- public static let colorFieldsLabel = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
104
- public static let colorFieldsRequirement = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
105
- public static let colorFileuploaderAlert = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
106
- public static let colorFileuploaderFilesDelete = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
107
- public static let colorFileuploaderFilesList = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
108
- public static let colorFileuploaderFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
109
- public static let colorFileuploaderValid = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
110
- public static let colorFlagBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
111
- public static let colorFlagBorderedBorder = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
112
- public static let colorFlagBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
113
- public static let colorFlagBorderedDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
114
- public static let colorFlagBorderedDangerText = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
115
- public static let colorFlagBorderedDarkBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
116
- public static let colorFlagBorderedDarkBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
117
- public static let colorFlagBorderedDarkText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
118
- public static let colorFlagBorderedLightBackground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
119
- public static let colorFlagBorderedLightBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
120
- public static let colorFlagBorderedLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
121
- public static let colorFlagBorderedPrimary02Background = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
122
- public static let colorFlagBorderedPrimary02Border = UIColor(red: 0.294, green: 0.290, blue: 0.549, alpha: 1)
123
- public static let colorFlagBorderedPrimary02Text = UIColor(red: 0.294, green: 0.290, blue: 0.549, alpha: 1)
124
- public static let colorFlagBorderedText = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
125
- public static let colorFlagSolidBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
126
- public static let colorFlagSolidBorder = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
127
- public static let colorFlagSolidDangerBackground = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
128
- public static let colorFlagSolidDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
129
- public static let colorFlagSolidDangerText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
130
- public static let colorFlagSolidDarkBackground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
131
- public static let colorFlagSolidDarkBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
132
- public static let colorFlagSolidDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
133
- public static let colorFlagSolidLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
134
- public static let colorFlagSolidLightBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
135
- public static let colorFlagSolidLightText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
136
- public static let colorFlagSolidPrimary02Background = UIColor(red: 0.294, green: 0.290, blue: 0.549, alpha: 1)
137
- public static let colorFlagSolidPrimary02Border = UIColor(red: 0.294, green: 0.290, blue: 0.549, alpha: 1)
138
- public static let colorFlagSolidPrimary02Text = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
139
- public static let colorFlagSolidText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
140
- public static let colorFocusBorder = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
141
- public static let colorFocusGap = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
142
- public static let colorFontDanger = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
143
- public static let colorFontDark = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
144
- public static let colorFontDarker = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
145
- public static let colorFontDarkest = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
146
- public static let colorFontInfo = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
147
- public static let colorFontLight = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
148
- 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.498, blue: 0.549, alpha: 1)
150
- public static let colorFontPrimary02 = UIColor(red: 0.000, green: 0.459, blue: 0.455, alpha: 1)
151
- public static let colorFontSuccess = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1)
152
- public static let colorFontWarning = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1)
153
- public static let colorGrey000 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
154
- public static let colorGrey100 = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
155
- public static let colorGrey200 = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
156
- public static let colorGrey300 = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
157
- public static let colorGrey400 = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
158
- public static let colorGrey500 = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
159
- public static let colorGrey600 = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
160
- public static let colorGrey700 = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
161
- public static let colorGrey800 = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
162
- public static let colorGrey900 = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
163
- public static let colorGrey999 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
164
- public static let colorInfo100 = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1)
165
- public static let colorInfo200 = UIColor(red: 0.655, green: 0.851, blue: 0.929, alpha: 1)
166
- public static let colorInfo300 = UIColor(red: 0.451, green: 0.765, blue: 0.886, alpha: 1)
167
- public static let colorInfo400 = UIColor(red: 0.247, green: 0.675, blue: 0.843, alpha: 1)
168
- public static let colorInfo500 = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1)
169
- public static let colorInfo600 = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
170
- public static let colorInfo700 = UIColor(red: 0.000, green: 0.361, blue: 0.569, alpha: 1)
171
- public static let colorInfo800 = UIColor(red: 0.000, green: 0.227, blue: 0.361, alpha: 1)
172
- public static let colorInfo900 = UIColor(red: 0.000, green: 0.165, blue: 0.255, alpha: 1)
173
- public static let colorInputBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
174
- public static let colorInputBorder = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
175
- public static let colorInputCheckedBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
176
- public static let colorInputCheckedBorder = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
177
- public static let colorInputCheckedHoverBorder = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
178
- public static let colorInputCheckedIcon = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
179
- public static let colorInputDisabledBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
180
- public static let colorInputDisabledBorder = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
181
- public static let colorInputDisabledIcon = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
182
- public static let colorInputFocusBorder = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
183
- public static let colorInputHoverBorder = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
184
- public static let colorInputInvalidBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
185
- public static let colorInputInvalidHoverBorder = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
186
- public static let colorInputPlaceholder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
187
- public static let colorInputText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
188
- public static let colorInputValidBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1)
189
- public static let colorInputValidHoverBorder = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1)
190
- public static let colorLinkDangerActive = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
191
- public static let colorLinkDangerBase = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
192
- public static let colorLinkDangerDisabled = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
193
- public static let colorLinkDangerHover = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
194
- public static let colorLinkDangerVisited = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
195
- public static let colorLinkDarkActive = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
196
- public static let colorLinkDarkBase = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
197
- public static let colorLinkDarkDisabled = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
198
- public static let colorLinkDarkHover = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
199
- public static let colorLinkDarkVisited = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
200
- public static let colorLinkLightActive = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
201
- public static let colorLinkLightBase = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
202
- public static let colorLinkLightDisabled = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
203
- public static let colorLinkLightHover = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
204
- public static let colorLinkLightVisited = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
205
- public static let colorLinkPrimary02Active = UIColor(red: 0.016, green: 0.298, blue: 0.325, alpha: 1)
206
- public static let colorLinkPrimary02Base = UIColor(red: 0.012, green: 0.373, blue: 0.392, alpha: 1)
207
- public static let colorLinkPrimary02Disabled = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
208
- public static let colorLinkPrimary02Hover = UIColor(red: 0.024, green: 0.169, blue: 0.208, alpha: 1)
209
- public static let colorLinkPrimary02Visited = UIColor(red: 0.016, green: 0.298, blue: 0.325, alpha: 1)
210
- public static let colorLinkPrimaryActive = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
211
- public static let colorLinkPrimaryBase = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
212
- public static let colorLinkPrimaryDisabled = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
213
- public static let colorLinkPrimaryHover = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
214
- public static let colorLinkPrimaryVisited = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
215
- public static let colorNotificationDangerBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
216
- 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
- public static let colorNotificationFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
219
- public static let colorNotificationInformationBackground = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1)
220
- 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
- public static let colorNotificationSuccessBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
223
- 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
- public static let colorNotificationWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
226
- public static let colorNotificationWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
227
- public static let colorNotificationWarningIcon = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1)
228
- public static let colorPrimary01100 = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
229
- public static let colorPrimary01200 = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
230
- public static let colorPrimary01300 = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
231
- public static let colorPrimary01400 = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
232
- public static let colorPrimary01500 = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
233
- public static let colorPrimary01600 = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
234
- public static let colorPrimary01700 = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
235
- public static let colorPrimary01800 = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
236
- public static let colorPrimary01900 = UIColor(red: 0.000, green: 0.180, blue: 0.200, alpha: 1)
237
- public static let colorPrimary02100 = UIColor(red: 0.859, green: 0.929, blue: 0.918, alpha: 1)
238
- public static let colorPrimary02200 = UIColor(red: 0.647, green: 0.820, blue: 0.796, alpha: 1)
239
- public static let colorPrimary02300 = UIColor(red: 0.431, green: 0.706, blue: 0.678, alpha: 1)
240
- public static let colorPrimary02400 = UIColor(red: 0.216, green: 0.584, blue: 0.565, alpha: 1)
241
- public static let colorPrimary02500 = UIColor(red: 0.000, green: 0.459, blue: 0.455, alpha: 1)
242
- public static let colorPrimary02600 = UIColor(red: 0.012, green: 0.373, blue: 0.392, alpha: 1)
243
- public static let colorPrimary02700 = UIColor(red: 0.016, green: 0.298, blue: 0.325, alpha: 1)
244
- public static let colorPrimary02800 = UIColor(red: 0.024, green: 0.227, blue: 0.267, alpha: 1)
245
- public static let colorPrimary02900 = UIColor(red: 0.024, green: 0.169, blue: 0.208, alpha: 1)
246
- public static let colorProgressBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
247
- public static let colorProgressBrandedIndicator = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
248
- public static let colorProgressIndicator = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1)
249
- public static let colorProgressPercentageDefault = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
250
- public static let colorProgressPercentageHalf = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
251
- public static let colorSecondaryBlue100 = UIColor(red: 0.918, green: 0.929, blue: 0.937, alpha: 1)
252
- public static let colorSecondaryBlue200 = UIColor(red: 0.804, green: 0.831, blue: 0.847, alpha: 1)
253
- public static let colorSecondaryBlue300 = UIColor(red: 0.690, green: 0.733, blue: 0.753, alpha: 1)
254
- public static let colorSecondaryBlue400 = UIColor(red: 0.573, green: 0.635, blue: 0.663, alpha: 1)
255
- public static let colorSecondaryBlue500 = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
256
- public static let colorSecondaryBlue600 = UIColor(red: 0.357, green: 0.451, blue: 0.490, alpha: 1)
257
- public static let colorSecondaryBlue700 = UIColor(red: 0.251, green: 0.365, blue: 0.408, alpha: 1)
258
- public static let colorSecondaryBlue800 = UIColor(red: 0.149, green: 0.275, blue: 0.325, alpha: 1)
259
- public static let colorSecondaryBlue900 = UIColor(red: 0.031, green: 0.141, blue: 0.208, alpha: 1)
260
- public static let colorSecondaryGreen100 = UIColor(red: 0.851, green: 0.941, blue: 0.953, alpha: 1)
261
- public static let colorSecondaryGreen200 = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
262
- public static let colorSecondaryGreen300 = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
263
- public static let colorSecondaryGreen400 = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
264
- public static let colorSecondaryGreen500 = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
265
- public static let colorSecondaryGreen600 = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
266
- public static let colorSecondaryGreen700 = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
267
- public static let colorSecondaryGreen800 = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
268
- public static let colorSecondaryGreen900 = UIColor(red: 0.000, green: 0.180, blue: 0.200, alpha: 1)
269
- public static let colorSecondaryOrange100 = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
270
- public static let colorSecondaryOrange200 = UIColor(red: 0.973, green: 0.824, blue: 0.702, alpha: 1)
271
- public static let colorSecondaryOrange300 = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1)
272
- public static let colorSecondaryOrange400 = UIColor(red: 0.937, green: 0.576, blue: 0.290, alpha: 1)
273
- public static let colorSecondaryOrange500 = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
274
- public static let colorSecondaryOrange600 = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1)
275
- public static let colorSecondaryOrange700 = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1)
276
- public static let colorSecondaryOrange800 = UIColor(red: 0.325, green: 0.106, blue: 0.000, alpha: 1)
277
- public static let colorSecondaryOrange900 = UIColor(red: 0.212, green: 0.055, blue: 0.000, alpha: 1)
278
- public static let colorSecondaryPurple100 = UIColor(red: 0.906, green: 0.906, blue: 0.941, alpha: 1)
279
- public static let colorSecondaryPurple200 = UIColor(red: 0.773, green: 0.773, blue: 0.863, alpha: 1)
280
- public static let colorSecondaryPurple300 = UIColor(red: 0.643, green: 0.639, blue: 0.780, alpha: 1)
281
- public static let colorSecondaryPurple400 = UIColor(red: 0.510, green: 0.506, blue: 0.698, alpha: 1)
282
- public static let colorSecondaryPurple500 = UIColor(red: 0.376, green: 0.373, blue: 0.616, alpha: 1)
283
- public static let colorSecondaryPurple600 = UIColor(red: 0.294, green: 0.290, blue: 0.549, alpha: 1)
284
- public static let colorSecondaryPurple700 = UIColor(red: 0.224, green: 0.220, blue: 0.475, alpha: 1)
285
- public static let colorSecondaryPurple800 = UIColor(red: 0.157, green: 0.157, blue: 0.388, alpha: 1)
286
- public static let colorSecondaryPurple900 = UIColor(red: 0.102, green: 0.102, blue: 0.294, alpha: 1)
287
- public static let colorSecondaryRed100 = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1)
288
- public static let colorSecondaryRed200 = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1)
289
- public static let colorSecondaryRed300 = UIColor(red: 0.953, green: 0.553, blue: 0.549, alpha: 1)
290
- public static let colorSecondaryRed400 = UIColor(red: 0.937, green: 0.373, blue: 0.361, alpha: 1)
291
- public static let colorSecondaryRed500 = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1)
292
- public static let colorSecondaryRed600 = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1)
293
- public static let colorSecondaryRed700 = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1)
294
- public static let colorSecondaryRed800 = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1)
295
- public static let colorSecondaryRed900 = UIColor(red: 0.176, green: 0.000, blue: 0.000, alpha: 1)
296
- public static let colorSecondaryYellow100 = UIColor(red: 1.000, green: 0.973, blue: 0.886, alpha: 1)
297
- public static let colorSecondaryYellow200 = UIColor(red: 1.000, green: 0.922, blue: 0.686, alpha: 1)
298
- public static let colorSecondaryYellow300 = UIColor(red: 0.996, green: 0.878, blue: 0.490, alpha: 1)
299
- public static let colorSecondaryYellow400 = UIColor(red: 0.988, green: 0.839, blue: 0.298, alpha: 1)
300
- public static let colorSecondaryYellow500 = UIColor(red: 0.973, green: 0.800, blue: 0.110, alpha: 1)
301
- public static let colorSecondaryYellow600 = UIColor(red: 0.788, green: 0.635, blue: 0.106, alpha: 1)
302
- public static let colorSecondaryYellow700 = UIColor(red: 0.612, green: 0.482, blue: 0.094, alpha: 1)
303
- public static let colorSecondaryYellow800 = UIColor(red: 0.439, green: 0.337, blue: 0.075, alpha: 1)
304
- public static let colorSecondaryYellow900 = UIColor(red: 0.275, green: 0.208, blue: 0.051, alpha: 1)
305
- public static let colorStarEmpty = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
306
- public static let colorStarFocus = UIColor(red: 0.459, green: 0.537, blue: 0.573, alpha: 1)
307
- public static let colorStarFull = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
308
- public static let colorStarHover = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1)
309
- public static let colorSuccess100 = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1)
310
- public static let colorSuccess200 = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1)
311
- public static let colorSuccess300 = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1)
312
- public static let colorSuccess400 = UIColor(red: 0.471, green: 0.745, blue: 0.125, alpha: 1)
313
- public static let colorSuccess500 = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1)
314
- public static let colorSuccess600 = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1)
315
- public static let colorSuccess700 = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1)
316
- public static let colorSuccess800 = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1)
317
- 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.498, blue: 0.549, alpha: 1)
319
- public static let colorTabsActiveDisabled = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
320
- public static let colorTabsBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
321
- public static let colorTabsDefault = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
322
- public static let colorTabsDisabled = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
323
- public static let colorTabsHover = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
324
- public static let colorTabsShadow = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
325
- public static let colorTagLinkDarkActiveBackground = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
326
- public static let colorTagLinkDarkBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
327
- public static let colorTagLinkDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
328
- public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
329
- public static let colorTagLinkDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
330
- public static let colorTagLinkLightActiveBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
331
- public static let colorTagLinkLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
332
- public static let colorTagLinkLightBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
333
- public static let colorTagLinkLightHoverBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
334
- public static let colorTagLinkLightText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
335
- public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
336
- public static let colorTagRemovableDarkBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
337
- public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
338
- public static let colorTagRemovableDarkIcon = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
339
- public static let colorTagRemovableDarkText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
340
- public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
341
- public static let colorTagRemovableLightBackground = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
342
- public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
343
- public static let colorTagRemovableLightIcon = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
344
- public static let colorTagRemovableLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
345
- public static let colorTagSelectableDarkActiveBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
346
- public static let colorTagSelectableDarkActiveBorder = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
347
- public static let colorTagSelectableDarkActiveText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
348
- public static let colorTagSelectableDarkBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
349
- public static let colorTagSelectableDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
350
- public static let colorTagSelectableDarkDisabledBackground = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
351
- public static let colorTagSelectableDarkDisabledText = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
352
- public static let colorTagSelectableDarkHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
353
- public static let colorTagSelectableDarkSelectedBackground = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
354
- public static let colorTagSelectableDarkSelectedBorder = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
355
- public static let colorTagSelectableDarkSelectedHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
356
- public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
357
- public static let colorTagSelectableDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
358
- public static let colorTagSelectableLightActiveBackground = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
359
- public static let colorTagSelectableLightActiveBorder = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
360
- public static let colorTagSelectableLightActiveText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
361
- public static let colorTagSelectableLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
362
- public static let colorTagSelectableLightBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
363
- public static let colorTagSelectableLightDisabledBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
364
- public static let colorTagSelectableLightDisabledText = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
365
- public static let colorTagSelectableLightHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
366
- public static let colorTagSelectableLightSelectedBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
367
- public static let colorTagSelectableLightSelectedHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
368
- public static let colorTagSelectableLightSelectedText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
369
- public static let colorTagSelectableLightText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
370
- public static let colorTagTextDarkBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
371
- public static let colorTagTextDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
372
- public static let colorTagTextDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
373
- public static let colorTagTextLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
374
- public static let colorTagTextLightBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
375
- public static let colorTagTextLightText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
376
- public static let colorToggleDisabledBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
377
- public static let colorToggleDisabledCheckedBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
378
- public static let colorToggleDisabledCheckedCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
379
- public static let colorToggleDisabledCircle = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
380
- public static let colorToggleHoverCircle = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
381
- public static let colorToggleOffBackground = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
382
- public static let colorToggleOffCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
383
- public static let colorToggleOnBackground = UIColor(red: 0.000, green: 0.569, blue: 0.624, alpha: 1)
384
- public static let colorToggleOnCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
385
- public static let colorWarning100 = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1)
386
- public static let colorWarning200 = UIColor(red: 0.973, green: 0.824, blue: 0.702, alpha: 1)
387
- public static let colorWarning300 = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1)
388
- public static let colorWarning400 = UIColor(red: 0.937, green: 0.576, blue: 0.290, alpha: 1)
389
- public static let colorWarning500 = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1)
390
- public static let colorWarning600 = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1)
391
- public static let colorWarning700 = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1)
392
- public static let colorWarning800 = UIColor(red: 0.325, green: 0.106, blue: 0.000, alpha: 1)
393
- public static let colorWarning900 = UIColor(red: 0.212, green: 0.055, blue: 0.000, alpha: 1)
394
- }
@@ -1,69 +0,0 @@
1
-
2
- // StyleDictionarySize.h
3
- //
4
-
5
- #import <Foundation/Foundation.h>
6
-
7
-
8
- extern float const SizeFont10;
9
- extern float const SizeFont11;
10
- extern float const SizeFont12;
11
- extern float const SizeFont01;
12
- extern float const SizeFont02;
13
- extern float const SizeFont03;
14
- extern float const SizeFont04;
15
- extern float const SizeFont05;
16
- extern float const SizeFont06;
17
- extern float const SizeFont07;
18
- extern float const SizeFont08;
19
- extern float const SizeFont09;
20
- extern float const SizeLine10Xs;
21
- extern float const SizeLine10S;
22
- extern float const SizeLine10M;
23
- extern float const SizeLine10L;
24
- extern float const SizeLine11Xs;
25
- extern float const SizeLine11S;
26
- extern float const SizeLine11M;
27
- extern float const SizeLine11L;
28
- extern float const SizeLine12Xs;
29
- extern float const SizeLine12S;
30
- extern float const SizeLine12M;
31
- extern float const SizeLine12L;
32
- extern float const SizeLine01Xs;
33
- extern float const SizeLine01S;
34
- extern float const SizeLine01M;
35
- extern float const SizeLine01L;
36
- extern float const SizeLine02Xs;
37
- extern float const SizeLine02S;
38
- extern float const SizeLine02M;
39
- extern float const SizeLine02L;
40
- extern float const SizeLine03Xs;
41
- extern float const SizeLine03S;
42
- extern float const SizeLine03M;
43
- extern float const SizeLine03L;
44
- extern float const SizeLine04Xs;
45
- extern float const SizeLine04S;
46
- extern float const SizeLine04M;
47
- extern float const SizeLine04L;
48
- extern float const SizeLine05Xs;
49
- extern float const SizeLine05S;
50
- extern float const SizeLine05M;
51
- extern float const SizeLine05L;
52
- extern float const SizeLine06Xs;
53
- extern float const SizeLine06S;
54
- extern float const SizeLine06M;
55
- extern float const SizeLine06L;
56
- extern float const SizeLine07Xs;
57
- extern float const SizeLine07S;
58
- extern float const SizeLine07M;
59
- extern float const SizeLine07L;
60
- extern float const SizeLine08Xs;
61
- extern float const SizeLine08S;
62
- extern float const SizeLine08M;
63
- extern float const SizeLine08L;
64
- extern float const SizeLine09Xs;
65
- extern float const SizeLine09S;
66
- extern float const SizeLine09M;
67
- extern float const SizeLine09L;
68
- extern float const SizeGutterScreenS;
69
- extern float const SizeGutterScreenM;
@@ -1,70 +0,0 @@
1
-
2
- //
3
- // StyleDictionarySize.m
4
- //
5
-
6
- #import "StyleDictionarySize.h"
7
-
8
-
9
- float const SizeFont10 = 41.00f;
10
- float const SizeFont11 = 49.00f;
11
- float const SizeFont12 = 59.00f;
12
- float const SizeFont01 = 10.90f;
13
- float const SizeFont02 = 12.00f;
14
- float const SizeFont03 = 13.00f;
15
- float const SizeFont04 = 14.00f;
16
- float const SizeFont05 = 16.00f;
17
- float const SizeFont06 = 18.00f;
18
- float const SizeFont07 = 23.00f;
19
- float const SizeFont08 = 28.00f;
20
- float const SizeFont09 = 34.00f;
21
- float const SizeLine10Xs = 40.00f;
22
- float const SizeLine10S = 48.00f;
23
- float const SizeLine10M = 56.00f;
24
- float const SizeLine10L = 60.00f;
25
- float const SizeLine11Xs = 48.00f;
26
- float const SizeLine11S = 56.00f;
27
- float const SizeLine11M = 68.00f;
28
- float const SizeLine11L = 72.00f;
29
- float const SizeLine12Xs = 60.00f;
30
- float const SizeLine12S = 68.00f;
31
- float const SizeLine12M = 80.00f;
32
- float const SizeLine12L = 88.00f;
33
- float const SizeLine01Xs = 12.00f;
34
- float const SizeLine01S = 12.00f;
35
- float const SizeLine01M = 14.00f;
36
- float const SizeLine01L = 16.00f;
37
- float const SizeLine02Xs = 12.00f;
38
- float const SizeLine02S = 14.00f;
39
- float const SizeLine02M = 16.00f;
40
- float const SizeLine02L = 18.00f;
41
- float const SizeLine03Xs = 14.00f;
42
- float const SizeLine03S = 16.00f;
43
- float const SizeLine03M = 18.00f;
44
- float const SizeLine03L = 20.00f;
45
- float const SizeLine04Xs = 14.00f;
46
- float const SizeLine04S = 16.00f;
47
- float const SizeLine04M = 18.00f;
48
- float const SizeLine04L = 22.00f;
49
- float const SizeLine05Xs = 16.00f;
50
- float const SizeLine05S = 18.00f;
51
- float const SizeLine05M = 22.00f;
52
- float const SizeLine05L = 24.00f;
53
- float const SizeLine06Xs = 18.00f;
54
- float const SizeLine06S = 20.00f;
55
- float const SizeLine06M = 24.00f;
56
- float const SizeLine06L = 28.00f;
57
- float const SizeLine07Xs = 24.00f;
58
- float const SizeLine07S = 28.00f;
59
- float const SizeLine07M = 32.00f;
60
- float const SizeLine07L = 36.00f;
61
- float const SizeLine08Xs = 28.00f;
62
- float const SizeLine08S = 32.00f;
63
- float const SizeLine08M = 36.00f;
64
- float const SizeLine08L = 44.00f;
65
- float const SizeLine09Xs = 36.00f;
66
- float const SizeLine09S = 40.00f;
67
- float const SizeLine09M = 44.00f;
68
- float const SizeLine09L = 52.00f;
69
- float const SizeGutterScreenS = 16.00f;
70
- float const SizeGutterScreenM = 32.00f;
@@ -1,71 +0,0 @@
1
-
2
- //
3
- // StyleDictionarySize.swift
4
- //
5
-
6
- import UIKit
7
-
8
- public class StyleDictionarySize {
9
- public static let sizeFont01 = CGFloat(10.90) /* 11px */
10
- public static let sizeFont02 = CGFloat(12.00) /* 12px */
11
- public static let sizeFont03 = CGFloat(13.00) /* 13px */
12
- public static let sizeFont04 = CGFloat(14.00) /* 14px */
13
- public static let sizeFont05 = CGFloat(16.00) /* 16px */
14
- public static let sizeFont06 = CGFloat(18.00) /* 18px */
15
- public static let sizeFont07 = CGFloat(23.00) /* 23px */
16
- public static let sizeFont08 = CGFloat(28.00) /* 28px */
17
- public static let sizeFont09 = CGFloat(34.00) /* 34px */
18
- public static let sizeFont10 = CGFloat(41.00) /* 41px */
19
- public static let sizeFont11 = CGFloat(49.00) /* 49px */
20
- public static let sizeFont12 = CGFloat(59.00) /* 59px */
21
- public static let sizeGutterScreenM = CGFloat(32.00)
22
- public static let sizeGutterScreenS = CGFloat(16.00)
23
- public static let sizeLine01L = CGFloat(16.00) /* 16px */
24
- public static let sizeLine01M = CGFloat(14.00) /* 14px */
25
- public static let sizeLine01S = CGFloat(12.00) /* 12px */
26
- public static let sizeLine01Xs = CGFloat(12.00) /* 12px */
27
- public static let sizeLine02L = CGFloat(18.00) /* 18px */
28
- public static let sizeLine02M = CGFloat(16.00) /* 16px */
29
- public static let sizeLine02S = CGFloat(14.00) /* 14px */
30
- public static let sizeLine02Xs = CGFloat(12.00) /* 12px */
31
- public static let sizeLine03L = CGFloat(20.00) /* 20px */
32
- public static let sizeLine03M = CGFloat(18.00) /* 18px */
33
- public static let sizeLine03S = CGFloat(16.00) /* 16px */
34
- public static let sizeLine03Xs = CGFloat(14.00) /* 14px */
35
- public static let sizeLine04L = CGFloat(22.00) /* 22px */
36
- public static let sizeLine04M = CGFloat(18.00) /* 18px */
37
- public static let sizeLine04S = CGFloat(16.00) /* 16px */
38
- public static let sizeLine04Xs = CGFloat(14.00) /* 14px */
39
- public static let sizeLine05L = CGFloat(24.00) /* 24px */
40
- public static let sizeLine05M = CGFloat(22.00) /* 22px */
41
- public static let sizeLine05S = CGFloat(18.00) /* 18px */
42
- public static let sizeLine05Xs = CGFloat(16.00) /* 16px */
43
- public static let sizeLine06L = CGFloat(28.00) /* 28px */
44
- public static let sizeLine06M = CGFloat(24.00) /* 24px */
45
- public static let sizeLine06S = CGFloat(20.00) /* 20px */
46
- public static let sizeLine06Xs = CGFloat(18.00) /* 18px */
47
- public static let sizeLine07L = CGFloat(36.00) /* 36px */
48
- public static let sizeLine07M = CGFloat(32.00) /* 32px */
49
- public static let sizeLine07S = CGFloat(28.00) /* 28px */
50
- public static let sizeLine07Xs = CGFloat(24.00) /* 24px */
51
- public static let sizeLine08L = CGFloat(44.00) /* 44px */
52
- public static let sizeLine08M = CGFloat(36.00) /* 36px */
53
- public static let sizeLine08S = CGFloat(32.00) /* 32px */
54
- public static let sizeLine08Xs = CGFloat(28.00) /* 28px */
55
- public static let sizeLine09L = CGFloat(52.00) /* 52px */
56
- public static let sizeLine09M = CGFloat(44.00) /* 44px */
57
- public static let sizeLine09S = CGFloat(40.00) /* 40px */
58
- public static let sizeLine09Xs = CGFloat(36.00) /* 36px */
59
- public static let sizeLine10L = CGFloat(60.00) /* 60px */
60
- public static let sizeLine10M = CGFloat(56.00) /* 56px */
61
- public static let sizeLine10S = CGFloat(48.00) /* 48px */
62
- public static let sizeLine10Xs = CGFloat(40.00) /* 40px */
63
- public static let sizeLine11L = CGFloat(72.00) /* 72px */
64
- public static let sizeLine11M = CGFloat(68.00) /* 68px */
65
- public static let sizeLine11S = CGFloat(56.00) /* 56px */
66
- public static let sizeLine11Xs = CGFloat(48.00) /* 48px */
67
- public static let sizeLine12L = CGFloat(88.00) /* 88px */
68
- public static let sizeLine12M = CGFloat(80.00) /* 80px */
69
- public static let sizeLine12S = CGFloat(68.00) /* 68px */
70
- public static let sizeLine12Xs = CGFloat(60.00) /* 60px */
71
- }