@mozaic-ds/vue 0.17.0 → 0.19.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/demo.html +1 -10
- package/dist/mozaic-vue.adeo.css +44 -1
- package/dist/mozaic-vue.adeo.umd.js +7590 -24558
- package/dist/mozaic-vue.common.js +7606 -24575
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +7590 -24558
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +21 -21
- package/src/components/accordion/MAccordion.vue +1 -1
- package/src/components/autocomplete/MAutocomplete.vue +3 -3
- package/src/components/breadcrumb/MBreadcrumb.vue +1 -1
- package/src/components/button/MButton.vue +1 -1
- package/src/components/datatable/MDataTable.vue +1 -3
- package/src/components/fileuploader/MFileUploader.vue +1 -1
- package/src/components/icon/MIcon.vue +42 -19
- package/src/components/icon/icons.js +18887 -0
- package/src/components/layer/MLayer.vue +7 -1
- package/src/components/link/MLink.vue +1 -1
- package/src/components/listbox/MListBox.vue +1 -1
- package/src/components/notification/MNotification.vue +1 -1
- package/src/components/pagination/MPagination.vue +2 -2
- package/src/components/quantityselector/MQuantitySelector.vue +2 -2
- package/src/components/select/MSelect.vue +10 -0
- package/src/components/stepper/MStepper.vue +1 -1
- package/src/components/tabs/MTab.vue +1 -3
- package/src/components/textinput/MTextInput.vue +2 -2
- package/src/components/textinput/MTextInputIcon.vue +1 -1
- package/src/tokens/adeo/android/colors.xml +34 -23
- package/src/tokens/adeo/css/_variables.scss +34 -23
- package/src/tokens/adeo/css/root.scss +34 -23
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +11 -0
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +28 -17
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +34 -23
- package/src/tokens/adeo/js/tokens.js +34 -23
- package/src/tokens/adeo/js/tokensObject.js +314 -46
- package/src/tokens/adeo/scss/_tokens.scss +53 -27
- package/dist/fonts/LeroyMerlinSans-Web-Italic.3f4e3fc6.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Italic.d826f8b3.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Light.1847746a.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Light.c3d8a284.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-LightItalic.343f7e0c.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-LightItalic.f4bc7b4c.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Regular.1631e1d1.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-Regular.f1fa0f56.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBold.44f32155.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBold.c1061939.woff2 +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBoldItalic.083f0cc1.woff +0 -0
- package/dist/fonts/LeroyMerlinSans-Web-SemiBoldItalic.cce10920.woff2 +0 -0
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<div
|
|
4
4
|
ref="layer"
|
|
5
5
|
class="mc-layer"
|
|
6
|
+
:class="{ 'mc-layer--ltr': position === 'left' }"
|
|
6
7
|
role="dialog"
|
|
7
8
|
aria-labelledby="layerTitle"
|
|
8
9
|
:aria-modal="open"
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
</template>
|
|
57
58
|
|
|
58
59
|
<script>
|
|
59
|
-
import MIcon from '../icon/MIcon';
|
|
60
|
+
import MIcon from '../icon/MIcon.vue';
|
|
60
61
|
|
|
61
62
|
export default {
|
|
62
63
|
name: 'MLayer',
|
|
@@ -99,6 +100,11 @@ export default {
|
|
|
99
100
|
type: Boolean,
|
|
100
101
|
default: false,
|
|
101
102
|
},
|
|
103
|
+
position: {
|
|
104
|
+
type: String,
|
|
105
|
+
default: 'right',
|
|
106
|
+
validator: (value) => ['right', 'left'].includes(value),
|
|
107
|
+
},
|
|
102
108
|
},
|
|
103
109
|
|
|
104
110
|
watch: {
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
</template>
|
|
47
47
|
|
|
48
48
|
<script>
|
|
49
|
-
import MButton from '../button/MButton';
|
|
50
|
-
import MTextInputField from '../textinput/MTextInputField';
|
|
49
|
+
import MButton from '../button/MButton.vue';
|
|
50
|
+
import MTextInputField from '../textinput/MTextInputField.vue';
|
|
51
51
|
|
|
52
52
|
export default {
|
|
53
53
|
name: 'MQuantitySelector',
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
:value="getSelectValue"
|
|
8
8
|
:disabled="disabled"
|
|
9
9
|
@change="onChange($event.target.value)"
|
|
10
|
+
v-on="inputListeners"
|
|
10
11
|
>
|
|
11
12
|
<option v-if="placeholder" value="" disabled="disabled">
|
|
12
13
|
-- {{ placeholder }} --
|
|
@@ -101,6 +102,15 @@ export default {
|
|
|
101
102
|
|
|
102
103
|
return classes;
|
|
103
104
|
},
|
|
105
|
+
inputListeners: function () {
|
|
106
|
+
// see => https://vuejs.org/v2/guide/components-custom-events.html#Binding-Native-Events-to-Components
|
|
107
|
+
var vm = this;
|
|
108
|
+
return Object.assign({}, this.$listeners, {
|
|
109
|
+
change: function (event) {
|
|
110
|
+
vm.$emit('change', event.target.value);
|
|
111
|
+
},
|
|
112
|
+
});
|
|
113
|
+
},
|
|
104
114
|
},
|
|
105
115
|
|
|
106
116
|
mounted() {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
</template>
|
|
42
42
|
|
|
43
43
|
<script>
|
|
44
|
-
import MSelect from '../select/MSelect';
|
|
44
|
+
import MSelect from '../select/MSelect.vue';
|
|
45
45
|
|
|
46
46
|
export default {
|
|
47
47
|
name: 'MTab',
|
|
@@ -50,8 +50,6 @@ export default {
|
|
|
50
50
|
MSelect,
|
|
51
51
|
},
|
|
52
52
|
|
|
53
|
-
inheritAttrs: false,
|
|
54
|
-
|
|
55
53
|
props: {
|
|
56
54
|
tabs: {
|
|
57
55
|
type: Array,
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
</template>
|
|
26
26
|
|
|
27
27
|
<script>
|
|
28
|
-
import MTextInputField from './MTextInputField';
|
|
29
|
-
import MTextInputIcon from './MTextInputIcon';
|
|
28
|
+
import MTextInputField from './MTextInputField.vue';
|
|
29
|
+
import MTextInputIcon from './MTextInputIcon.vue';
|
|
30
30
|
|
|
31
31
|
export default {
|
|
32
32
|
name: 'MTextInput',
|
|
@@ -324,45 +324,56 @@
|
|
|
324
324
|
<color name="color_tabs_active">#ff00919f</color>
|
|
325
325
|
<color name="color_tabs_active_disabled">#ff91d5db</color>
|
|
326
326
|
<color name="color_tag_text_light_background">#ffffffff</color>
|
|
327
|
-
<color name="color_tag_text_light_border">#
|
|
328
|
-
<color name="color_tag_text_light_text">#
|
|
329
|
-
<color name="color_tag_text_dark_background">#
|
|
327
|
+
<color name="color_tag_text_light_border">#ff8c8b85</color>
|
|
328
|
+
<color name="color_tag_text_light_text">#ff1e1e1c</color>
|
|
329
|
+
<color name="color_tag_text_dark_background">#ff1e1e1c</color>
|
|
330
330
|
<color name="color_tag_text_dark_border">#ffffffff</color>
|
|
331
331
|
<color name="color_tag_text_dark_text">#ffffffff</color>
|
|
332
332
|
<color name="color_tag_link_light_background">#ffffffff</color>
|
|
333
|
-
<color name="color_tag_link_light_border">#
|
|
334
|
-
<color name="color_tag_link_light_text">#
|
|
333
|
+
<color name="color_tag_link_light_border">#ff8c8b85</color>
|
|
334
|
+
<color name="color_tag_link_light_text">#ff1e1e1c</color>
|
|
335
335
|
<color name="color_tag_link_light_hover_background">#ffeeedea</color>
|
|
336
336
|
<color name="color_tag_link_light_active_background">#ffdddcd5</color>
|
|
337
|
-
<color name="color_tag_link_dark_background">#
|
|
337
|
+
<color name="color_tag_link_dark_background">#ff1e1e1c</color>
|
|
338
338
|
<color name="color_tag_link_dark_border">#ffffffff</color>
|
|
339
339
|
<color name="color_tag_link_dark_text">#ffffffff</color>
|
|
340
340
|
<color name="color_tag_link_dark_hover_background">#ff3a3936</color>
|
|
341
341
|
<color name="color_tag_link_dark_active_background">#ff555550</color>
|
|
342
|
-
<color name="color_tag_selectable_light_background">#
|
|
342
|
+
<color name="color_tag_selectable_light_background">#ffffffff</color>
|
|
343
|
+
<color name="color_tag_selectable_light_border">#ff8c8b85</color>
|
|
343
344
|
<color name="color_tag_selectable_light_text">#ff1e1e1c</color>
|
|
344
345
|
<color name="color_tag_selectable_light_hover_background">#ff48bac4</color>
|
|
345
|
-
<color name="color_tag_selectable_light_active_background">#
|
|
346
|
+
<color name="color_tag_selectable_light_active_background">#ff004e57</color>
|
|
347
|
+
<color name="color_tag_selectable_light_active_border">#ff004e57</color>
|
|
348
|
+
<color name="color_tag_selectable_light_active_text">#ffffffff</color>
|
|
346
349
|
<color name="color_tag_selectable_light_disabled_background">#ffeeedea</color>
|
|
347
350
|
<color name="color_tag_selectable_light_disabled_text">#ff8c8b85</color>
|
|
348
|
-
<color name="color_tag_selectable_light_selected_background">#
|
|
349
|
-
<color name="
|
|
351
|
+
<color name="color_tag_selectable_light_selected_background">#ff007f8c</color>
|
|
352
|
+
<color name="color_tag_selectable_light_selected_text">#ffffffff</color>
|
|
353
|
+
<color name="color_tag_selectable_light_selected_hover_background">#ff006974</color>
|
|
354
|
+
<color name="color_tag_selectable_dark_background">#ff1e1e1c</color>
|
|
355
|
+
<color name="color_tag_selectable_dark_border">#ffffffff</color>
|
|
350
356
|
<color name="color_tag_selectable_dark_text">#ffffffff</color>
|
|
351
|
-
<color name="color_tag_selectable_dark_hover_background">#
|
|
352
|
-
<color name="color_tag_selectable_dark_active_background">#
|
|
353
|
-
<color name="
|
|
357
|
+
<color name="color_tag_selectable_dark_hover_background">#ff006974</color>
|
|
358
|
+
<color name="color_tag_selectable_dark_active_background">#ff91d5db</color>
|
|
359
|
+
<color name="color_tag_selectable_dark_active_border">#ff91d5db</color>
|
|
360
|
+
<color name="color_tag_selectable_dark_active_text">#ff1e1e1c</color>
|
|
361
|
+
<color name="color_tag_selectable_dark_selected_background">#ff009eac</color>
|
|
362
|
+
<color name="color_tag_selectable_dark_selected_border">#ff009eac</color>
|
|
363
|
+
<color name="color_tag_selectable_dark_selected_text">#ff1e1e1c</color>
|
|
364
|
+
<color name="color_tag_selectable_dark_selected_hover_background">#ff48bac4</color>
|
|
354
365
|
<color name="color_tag_selectable_dark_disabled_background">#ff555550</color>
|
|
355
366
|
<color name="color_tag_selectable_dark_disabled_text">#ff8c8b85</color>
|
|
356
|
-
<color name="color_tag_removable_light_background">#
|
|
357
|
-
<color name="color_tag_removable_light_text">#
|
|
358
|
-
<color name="color_tag_removable_light_icon">#
|
|
359
|
-
<color name="color_tag_removable_light_hover_background">#
|
|
360
|
-
<color name="color_tag_removable_light_active_background">#
|
|
361
|
-
<color name="color_tag_removable_dark_background">#
|
|
362
|
-
<color name="color_tag_removable_dark_text">#
|
|
363
|
-
<color name="color_tag_removable_dark_icon">#
|
|
364
|
-
<color name="color_tag_removable_dark_hover_background">#
|
|
365
|
-
<color name="color_tag_removable_dark_active_background">#
|
|
367
|
+
<color name="color_tag_removable_light_background">#ff3a3936</color>
|
|
368
|
+
<color name="color_tag_removable_light_text">#ffffffff</color>
|
|
369
|
+
<color name="color_tag_removable_light_icon">#ffdddcd5</color>
|
|
370
|
+
<color name="color_tag_removable_light_hover_background">#ff555550</color>
|
|
371
|
+
<color name="color_tag_removable_light_active_background">#ff71706b</color>
|
|
372
|
+
<color name="color_tag_removable_dark_background">#ffdddcd5</color>
|
|
373
|
+
<color name="color_tag_removable_dark_text">#ff1e1e1c</color>
|
|
374
|
+
<color name="color_tag_removable_dark_icon">#ff1e1e1c</color>
|
|
375
|
+
<color name="color_tag_removable_dark_hover_background">#ffc2c1ba</color>
|
|
376
|
+
<color name="color_tag_removable_dark_active_background">#ffa7a6a0</color>
|
|
366
377
|
<color name="color_toggle_off_background">#ff71706b</color>
|
|
367
378
|
<color name="color_toggle_off_circle">#ffffffff</color>
|
|
368
379
|
<color name="color_toggle_on_background">#ff00919f</color>
|
|
@@ -320,45 +320,56 @@ $color-tabs-disabled: var(--color-tabs-disabled, #71706b);
|
|
|
320
320
|
$color-tabs-active: var(--color-tabs-active, #00919f);
|
|
321
321
|
$color-tabs-active-disabled: var(--color-tabs-active-disabled, #91d5db);
|
|
322
322
|
$color-tag-text-light-background: var(--color-tag-text-light-background, #ffffff);
|
|
323
|
-
$color-tag-text-light-border: var(--color-tag-text-light-border, #
|
|
324
|
-
$color-tag-text-light-text: var(--color-tag-text-light-text, #
|
|
325
|
-
$color-tag-text-dark-background: var(--color-tag-text-dark-background, #
|
|
323
|
+
$color-tag-text-light-border: var(--color-tag-text-light-border, #8c8b85);
|
|
324
|
+
$color-tag-text-light-text: var(--color-tag-text-light-text, #1e1e1c);
|
|
325
|
+
$color-tag-text-dark-background: var(--color-tag-text-dark-background, #1e1e1c);
|
|
326
326
|
$color-tag-text-dark-border: var(--color-tag-text-dark-border, #ffffff);
|
|
327
327
|
$color-tag-text-dark-text: var(--color-tag-text-dark-text, #ffffff);
|
|
328
328
|
$color-tag-link-light-background: var(--color-tag-link-light-background, #ffffff);
|
|
329
|
-
$color-tag-link-light-border: var(--color-tag-link-light-border, #
|
|
330
|
-
$color-tag-link-light-text: var(--color-tag-link-light-text, #
|
|
329
|
+
$color-tag-link-light-border: var(--color-tag-link-light-border, #8c8b85);
|
|
330
|
+
$color-tag-link-light-text: var(--color-tag-link-light-text, #1e1e1c);
|
|
331
331
|
$color-tag-link-light-hover-background: var(--color-tag-link-light-hover-background, #eeedea);
|
|
332
332
|
$color-tag-link-light-active-background: var(--color-tag-link-light-active-background, #dddcd5);
|
|
333
|
-
$color-tag-link-dark-background: var(--color-tag-link-dark-background, #
|
|
333
|
+
$color-tag-link-dark-background: var(--color-tag-link-dark-background, #1e1e1c);
|
|
334
334
|
$color-tag-link-dark-border: var(--color-tag-link-dark-border, #ffffff);
|
|
335
335
|
$color-tag-link-dark-text: var(--color-tag-link-dark-text, #ffffff);
|
|
336
336
|
$color-tag-link-dark-hover-background: var(--color-tag-link-dark-hover-background, #3a3936);
|
|
337
337
|
$color-tag-link-dark-active-background: var(--color-tag-link-dark-active-background, #555550);
|
|
338
|
-
$color-tag-selectable-light-background: var(--color-tag-selectable-light-background, #
|
|
338
|
+
$color-tag-selectable-light-background: var(--color-tag-selectable-light-background, #ffffff);
|
|
339
|
+
$color-tag-selectable-light-border: var(--color-tag-selectable-light-border, #8c8b85);
|
|
339
340
|
$color-tag-selectable-light-text: var(--color-tag-selectable-light-text, #1e1e1c);
|
|
340
341
|
$color-tag-selectable-light-hover-background: var(--color-tag-selectable-light-hover-background, #48bac4);
|
|
341
|
-
$color-tag-selectable-light-active-background: var(--color-tag-selectable-light-active-background, #
|
|
342
|
+
$color-tag-selectable-light-active-background: var(--color-tag-selectable-light-active-background, #004e57);
|
|
343
|
+
$color-tag-selectable-light-active-border: var(--color-tag-selectable-light-active-border, #004e57);
|
|
344
|
+
$color-tag-selectable-light-active-text: var(--color-tag-selectable-light-active-text, #ffffff);
|
|
342
345
|
$color-tag-selectable-light-disabled-background: var(--color-tag-selectable-light-disabled-background, #eeedea);
|
|
343
346
|
$color-tag-selectable-light-disabled-text: var(--color-tag-selectable-light-disabled-text, #8c8b85);
|
|
344
|
-
$color-tag-selectable-light-selected-background: var(--color-tag-selectable-light-selected-background, #
|
|
345
|
-
$color-tag-selectable-
|
|
347
|
+
$color-tag-selectable-light-selected-background: var(--color-tag-selectable-light-selected-background, #007f8c);
|
|
348
|
+
$color-tag-selectable-light-selected-text: var(--color-tag-selectable-light-selected-text, #ffffff);
|
|
349
|
+
$color-tag-selectable-light-selected-hover-background: var(--color-tag-selectable-light-selected-hover-background, #006974);
|
|
350
|
+
$color-tag-selectable-dark-background: var(--color-tag-selectable-dark-background, #1e1e1c);
|
|
351
|
+
$color-tag-selectable-dark-border: var(--color-tag-selectable-dark-border, #ffffff);
|
|
346
352
|
$color-tag-selectable-dark-text: var(--color-tag-selectable-dark-text, #ffffff);
|
|
347
|
-
$color-tag-selectable-dark-hover-background: var(--color-tag-selectable-dark-hover-background, #
|
|
348
|
-
$color-tag-selectable-dark-active-background: var(--color-tag-selectable-dark-active-background, #
|
|
349
|
-
$color-tag-selectable-dark-
|
|
353
|
+
$color-tag-selectable-dark-hover-background: var(--color-tag-selectable-dark-hover-background, #006974);
|
|
354
|
+
$color-tag-selectable-dark-active-background: var(--color-tag-selectable-dark-active-background, #91d5db);
|
|
355
|
+
$color-tag-selectable-dark-active-border: var(--color-tag-selectable-dark-active-border, #91d5db);
|
|
356
|
+
$color-tag-selectable-dark-active-text: var(--color-tag-selectable-dark-active-text, #1e1e1c);
|
|
357
|
+
$color-tag-selectable-dark-selected-background: var(--color-tag-selectable-dark-selected-background, #009eac);
|
|
358
|
+
$color-tag-selectable-dark-selected-border: var(--color-tag-selectable-dark-selected-border, #009eac);
|
|
359
|
+
$color-tag-selectable-dark-selected-text: var(--color-tag-selectable-dark-selected-text, #1e1e1c);
|
|
360
|
+
$color-tag-selectable-dark-selected-hover-background: var(--color-tag-selectable-dark-selected-hover-background, #48bac4);
|
|
350
361
|
$color-tag-selectable-dark-disabled-background: var(--color-tag-selectable-dark-disabled-background, #555550);
|
|
351
362
|
$color-tag-selectable-dark-disabled-text: var(--color-tag-selectable-dark-disabled-text, #8c8b85);
|
|
352
|
-
$color-tag-removable-light-background: var(--color-tag-removable-light-background, #
|
|
353
|
-
$color-tag-removable-light-text: var(--color-tag-removable-light-text, #
|
|
354
|
-
$color-tag-removable-light-icon: var(--color-tag-removable-light-icon, #
|
|
355
|
-
$color-tag-removable-light-hover-background: var(--color-tag-removable-light-hover-background, #
|
|
356
|
-
$color-tag-removable-light-active-background: var(--color-tag-removable-light-active-background, #
|
|
357
|
-
$color-tag-removable-dark-background: var(--color-tag-removable-dark-background, #
|
|
358
|
-
$color-tag-removable-dark-text: var(--color-tag-removable-dark-text, #
|
|
359
|
-
$color-tag-removable-dark-icon: var(--color-tag-removable-dark-icon, #
|
|
360
|
-
$color-tag-removable-dark-hover-background: var(--color-tag-removable-dark-hover-background, #
|
|
361
|
-
$color-tag-removable-dark-active-background: var(--color-tag-removable-dark-active-background, #
|
|
363
|
+
$color-tag-removable-light-background: var(--color-tag-removable-light-background, #3a3936);
|
|
364
|
+
$color-tag-removable-light-text: var(--color-tag-removable-light-text, #ffffff);
|
|
365
|
+
$color-tag-removable-light-icon: var(--color-tag-removable-light-icon, #dddcd5);
|
|
366
|
+
$color-tag-removable-light-hover-background: var(--color-tag-removable-light-hover-background, #555550);
|
|
367
|
+
$color-tag-removable-light-active-background: var(--color-tag-removable-light-active-background, #71706b);
|
|
368
|
+
$color-tag-removable-dark-background: var(--color-tag-removable-dark-background, #dddcd5);
|
|
369
|
+
$color-tag-removable-dark-text: var(--color-tag-removable-dark-text, #1e1e1c);
|
|
370
|
+
$color-tag-removable-dark-icon: var(--color-tag-removable-dark-icon, #1e1e1c);
|
|
371
|
+
$color-tag-removable-dark-hover-background: var(--color-tag-removable-dark-hover-background, #c2c1ba);
|
|
372
|
+
$color-tag-removable-dark-active-background: var(--color-tag-removable-dark-active-background, #a7a6a0);
|
|
362
373
|
$color-toggle-off-background: var(--color-toggle-off-background, #71706b);
|
|
363
374
|
$color-toggle-off-circle: var(--color-toggle-off-circle, #ffffff);
|
|
364
375
|
$color-toggle-on-background: var(--color-toggle-on-background, #00919f);
|
|
@@ -118,45 +118,56 @@
|
|
|
118
118
|
--color-toggle-on-background: var(--color-primary-01-500);
|
|
119
119
|
--color-toggle-off-circle: var(--color-grey-000);
|
|
120
120
|
--color-toggle-off-background: var(--color-grey-600);
|
|
121
|
-
--color-tag-removable-dark-active-background: var(--color-grey-
|
|
122
|
-
--color-tag-removable-dark-hover-background: var(--color-grey-
|
|
123
|
-
--color-tag-removable-dark-icon: var(--color-grey-
|
|
124
|
-
--color-tag-removable-dark-text: var(--color-grey-
|
|
125
|
-
--color-tag-removable-dark-background: var(--color-grey-
|
|
126
|
-
--color-tag-removable-light-active-background: var(--color-grey-
|
|
127
|
-
--color-tag-removable-light-hover-background: var(--color-grey-
|
|
128
|
-
--color-tag-removable-light-icon: var(--color-grey-
|
|
129
|
-
--color-tag-removable-light-text: var(--color-grey-
|
|
130
|
-
--color-tag-removable-light-background: var(--color-grey-
|
|
121
|
+
--color-tag-removable-dark-active-background: var(--color-grey-400);
|
|
122
|
+
--color-tag-removable-dark-hover-background: var(--color-grey-300);
|
|
123
|
+
--color-tag-removable-dark-icon: var(--color-grey-900);
|
|
124
|
+
--color-tag-removable-dark-text: var(--color-grey-900);
|
|
125
|
+
--color-tag-removable-dark-background: var(--color-grey-200);
|
|
126
|
+
--color-tag-removable-light-active-background: var(--color-grey-600);
|
|
127
|
+
--color-tag-removable-light-hover-background: var(--color-grey-700);
|
|
128
|
+
--color-tag-removable-light-icon: var(--color-grey-200);
|
|
129
|
+
--color-tag-removable-light-text: var(--color-grey-000);
|
|
130
|
+
--color-tag-removable-light-background: var(--color-grey-800);
|
|
131
131
|
--color-tag-selectable-dark-disabled-text: var(--color-grey-500);
|
|
132
132
|
--color-tag-selectable-dark-disabled-background: var(--color-grey-700);
|
|
133
|
-
--color-tag-selectable-dark-selected-background: var(--color-primary-01-
|
|
134
|
-
--color-tag-selectable-dark-
|
|
135
|
-
--color-tag-selectable-dark-
|
|
133
|
+
--color-tag-selectable-dark-selected-hover-background: var(--color-primary-01-300);
|
|
134
|
+
--color-tag-selectable-dark-selected-text: var(--color-grey-900);
|
|
135
|
+
--color-tag-selectable-dark-selected-border: var(--color-primary-01-400);
|
|
136
|
+
--color-tag-selectable-dark-selected-background: var(--color-primary-01-400);
|
|
137
|
+
--color-tag-selectable-dark-active-text: var(--color-grey-900);
|
|
138
|
+
--color-tag-selectable-dark-active-border: var(--color-primary-01-200);
|
|
139
|
+
--color-tag-selectable-dark-active-background: var(--color-primary-01-200);
|
|
140
|
+
--color-tag-selectable-dark-hover-background: var(--color-primary-01-700);
|
|
136
141
|
--color-tag-selectable-dark-text: var(--color-grey-000);
|
|
137
|
-
--color-tag-selectable-dark-
|
|
138
|
-
--color-tag-selectable-
|
|
142
|
+
--color-tag-selectable-dark-border: var(--color-grey-000);
|
|
143
|
+
--color-tag-selectable-dark-background: var(--color-grey-900);
|
|
144
|
+
--color-tag-selectable-light-selected-hover-background: var(--color-primary-01-700);
|
|
145
|
+
--color-tag-selectable-light-selected-text: var(--color-grey-000);
|
|
146
|
+
--color-tag-selectable-light-selected-background: var(--color-primary-01-600);
|
|
139
147
|
--color-tag-selectable-light-disabled-text: var(--color-grey-500);
|
|
140
148
|
--color-tag-selectable-light-disabled-background: var(--color-grey-100);
|
|
141
|
-
--color-tag-selectable-light-active-
|
|
149
|
+
--color-tag-selectable-light-active-text: var(--color-grey-000);
|
|
150
|
+
--color-tag-selectable-light-active-border: var(--color-primary-01-800);
|
|
151
|
+
--color-tag-selectable-light-active-background: var(--color-primary-01-800);
|
|
142
152
|
--color-tag-selectable-light-hover-background: var(--color-primary-01-300);
|
|
143
153
|
--color-tag-selectable-light-text: var(--color-grey-900);
|
|
144
|
-
--color-tag-selectable-light-
|
|
154
|
+
--color-tag-selectable-light-border: var(--color-grey-500);
|
|
155
|
+
--color-tag-selectable-light-background: var(--color-grey-000);
|
|
145
156
|
--color-tag-link-dark-active-background: var(--color-grey-700);
|
|
146
157
|
--color-tag-link-dark-hover-background: var(--color-grey-800);
|
|
147
158
|
--color-tag-link-dark-text: var(--color-grey-000);
|
|
148
159
|
--color-tag-link-dark-border: var(--color-grey-000);
|
|
149
|
-
--color-tag-link-dark-background: var(--color-grey-
|
|
160
|
+
--color-tag-link-dark-background: var(--color-grey-900);
|
|
150
161
|
--color-tag-link-light-active-background: var(--color-grey-200);
|
|
151
162
|
--color-tag-link-light-hover-background: var(--color-grey-100);
|
|
152
|
-
--color-tag-link-light-text: var(--color-grey-
|
|
153
|
-
--color-tag-link-light-border: var(--color-grey-
|
|
163
|
+
--color-tag-link-light-text: var(--color-grey-900);
|
|
164
|
+
--color-tag-link-light-border: var(--color-grey-500);
|
|
154
165
|
--color-tag-link-light-background: var(--color-grey-000);
|
|
155
166
|
--color-tag-text-dark-text: var(--color-grey-000);
|
|
156
167
|
--color-tag-text-dark-border: var(--color-grey-000);
|
|
157
|
-
--color-tag-text-dark-background: var(--color-grey-
|
|
158
|
-
--color-tag-text-light-text: var(--color-grey-
|
|
159
|
-
--color-tag-text-light-border: var(--color-grey-
|
|
168
|
+
--color-tag-text-dark-background: var(--color-grey-900);
|
|
169
|
+
--color-tag-text-light-text: var(--color-grey-900);
|
|
170
|
+
--color-tag-text-light-border: var(--color-grey-500);
|
|
160
171
|
--color-tag-text-light-background: var(--color-grey-000);
|
|
161
172
|
--color-tabs-active-disabled: var(--color-primary-01-200);
|
|
162
173
|
--color-tabs-hover: var(--color-primary-01-600);
|
|
@@ -344,17 +344,28 @@ ColorTagLinkDarkText,
|
|
|
344
344
|
ColorTagLinkDarkHoverBackground,
|
|
345
345
|
ColorTagLinkDarkActiveBackground,
|
|
346
346
|
ColorTagSelectableLightBackground,
|
|
347
|
+
ColorTagSelectableLightBorder,
|
|
347
348
|
ColorTagSelectableLightText,
|
|
348
349
|
ColorTagSelectableLightHoverBackground,
|
|
349
350
|
ColorTagSelectableLightActiveBackground,
|
|
351
|
+
ColorTagSelectableLightActiveBorder,
|
|
352
|
+
ColorTagSelectableLightActiveText,
|
|
350
353
|
ColorTagSelectableLightDisabledBackground,
|
|
351
354
|
ColorTagSelectableLightDisabledText,
|
|
352
355
|
ColorTagSelectableLightSelectedBackground,
|
|
356
|
+
ColorTagSelectableLightSelectedText,
|
|
357
|
+
ColorTagSelectableLightSelectedHoverBackground,
|
|
353
358
|
ColorTagSelectableDarkBackground,
|
|
359
|
+
ColorTagSelectableDarkBorder,
|
|
354
360
|
ColorTagSelectableDarkText,
|
|
355
361
|
ColorTagSelectableDarkHoverBackground,
|
|
356
362
|
ColorTagSelectableDarkActiveBackground,
|
|
363
|
+
ColorTagSelectableDarkActiveBorder,
|
|
364
|
+
ColorTagSelectableDarkActiveText,
|
|
357
365
|
ColorTagSelectableDarkSelectedBackground,
|
|
366
|
+
ColorTagSelectableDarkSelectedBorder,
|
|
367
|
+
ColorTagSelectableDarkSelectedText,
|
|
368
|
+
ColorTagSelectableDarkSelectedHoverBackground,
|
|
358
369
|
ColorTagSelectableDarkDisabledBackground,
|
|
359
370
|
ColorTagSelectableDarkDisabledText,
|
|
360
371
|
ColorTagRemovableLightBackground,
|
|
@@ -339,45 +339,56 @@
|
|
|
339
339
|
[UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
|
|
340
340
|
[UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
|
|
341
341
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
342
|
-
[UIColor colorWithRed:0.
|
|
343
|
-
[UIColor colorWithRed:0.
|
|
344
|
-
[UIColor colorWithRed:0.
|
|
342
|
+
[UIColor colorWithRed:0.549f green:0.545f blue:0.522f alpha:1.000f],
|
|
343
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
344
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
345
345
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
346
346
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
347
347
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
348
|
-
[UIColor colorWithRed:0.
|
|
349
|
-
[UIColor colorWithRed:0.
|
|
348
|
+
[UIColor colorWithRed:0.549f green:0.545f blue:0.522f alpha:1.000f],
|
|
349
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
350
350
|
[UIColor colorWithRed:0.933f green:0.929f blue:0.918f alpha:1.000f],
|
|
351
351
|
[UIColor colorWithRed:0.867f green:0.863f blue:0.835f alpha:1.000f],
|
|
352
|
-
[UIColor colorWithRed:0.
|
|
352
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
353
353
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
354
354
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
355
355
|
[UIColor colorWithRed:0.227f green:0.224f blue:0.212f alpha:1.000f],
|
|
356
356
|
[UIColor colorWithRed:0.333f green:0.333f blue:0.314f alpha:1.000f],
|
|
357
|
-
[UIColor colorWithRed:
|
|
357
|
+
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
358
|
+
[UIColor colorWithRed:0.549f green:0.545f blue:0.522f alpha:1.000f],
|
|
358
359
|
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
359
360
|
[UIColor colorWithRed:0.282f green:0.729f blue:0.769f alpha:1.000f],
|
|
360
|
-
[UIColor colorWithRed:0.000f green:0.
|
|
361
|
+
[UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
|
|
362
|
+
[UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
|
|
363
|
+
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
361
364
|
[UIColor colorWithRed:0.933f green:0.929f blue:0.918f alpha:1.000f],
|
|
362
365
|
[UIColor colorWithRed:0.549f green:0.545f blue:0.522f alpha:1.000f],
|
|
363
|
-
[UIColor colorWithRed:0.000f green:0.
|
|
364
|
-
[UIColor colorWithRed:
|
|
366
|
+
[UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
|
|
367
|
+
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
368
|
+
[UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
|
|
369
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
370
|
+
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
365
371
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
366
|
-
[UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
|
|
367
|
-
[UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
|
|
368
372
|
[UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
|
|
373
|
+
[UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
|
|
374
|
+
[UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
|
|
375
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
376
|
+
[UIColor colorWithRed:0.000f green:0.620f blue:0.675f alpha:1.000f],
|
|
377
|
+
[UIColor colorWithRed:0.000f green:0.620f blue:0.675f alpha:1.000f],
|
|
378
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
379
|
+
[UIColor colorWithRed:0.282f green:0.729f blue:0.769f alpha:1.000f],
|
|
369
380
|
[UIColor colorWithRed:0.333f green:0.333f blue:0.314f alpha:1.000f],
|
|
370
381
|
[UIColor colorWithRed:0.549f green:0.545f blue:0.522f alpha:1.000f],
|
|
371
|
-
[UIColor colorWithRed:0.867f green:0.863f blue:0.835f alpha:1.000f],
|
|
372
|
-
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
373
|
-
[UIColor colorWithRed:0.227f green:0.224f blue:0.212f alpha:1.000f],
|
|
374
|
-
[UIColor colorWithRed:0.761f green:0.757f blue:0.729f alpha:1.000f],
|
|
375
|
-
[UIColor colorWithRed:0.655f green:0.651f blue:0.627f alpha:1.000f],
|
|
376
382
|
[UIColor colorWithRed:0.227f green:0.224f blue:0.212f alpha:1.000f],
|
|
377
383
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
378
384
|
[UIColor colorWithRed:0.867f green:0.863f blue:0.835f alpha:1.000f],
|
|
379
385
|
[UIColor colorWithRed:0.333f green:0.333f blue:0.314f alpha:1.000f],
|
|
380
386
|
[UIColor colorWithRed:0.443f green:0.439f blue:0.420f alpha:1.000f],
|
|
387
|
+
[UIColor colorWithRed:0.867f green:0.863f blue:0.835f alpha:1.000f],
|
|
388
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
389
|
+
[UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f],
|
|
390
|
+
[UIColor colorWithRed:0.761f green:0.757f blue:0.729f alpha:1.000f],
|
|
391
|
+
[UIColor colorWithRed:0.655f green:0.651f blue:0.627f alpha:1.000f],
|
|
381
392
|
[UIColor colorWithRed:0.443f green:0.439f blue:0.420f alpha:1.000f],
|
|
382
393
|
[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
|
|
383
394
|
[UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
|
|
@@ -319,45 +319,56 @@ public class StyleDictionaryColor {
|
|
|
319
319
|
public static let colorTabsHover = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
320
320
|
public static let colorTabsShadow = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
321
321
|
public static let colorTagLinkDarkActiveBackground = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
|
|
322
|
-
public static let colorTagLinkDarkBackground = UIColor(red: 0.
|
|
322
|
+
public static let colorTagLinkDarkBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
323
323
|
public static let colorTagLinkDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
324
324
|
public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
|
|
325
325
|
public static let colorTagLinkDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
326
326
|
public static let colorTagLinkLightActiveBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
|
|
327
327
|
public static let colorTagLinkLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
328
|
-
public static let colorTagLinkLightBorder = UIColor(red: 0.
|
|
328
|
+
public static let colorTagLinkLightBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
329
329
|
public static let colorTagLinkLightHoverBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
|
|
330
|
-
public static let colorTagLinkLightText = UIColor(red: 0.
|
|
331
|
-
public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.
|
|
332
|
-
public static let colorTagRemovableDarkBackground = UIColor(red: 0.
|
|
333
|
-
public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.
|
|
334
|
-
public static let colorTagRemovableDarkIcon = UIColor(red: 0.
|
|
335
|
-
public static let colorTagRemovableDarkText = UIColor(red:
|
|
336
|
-
public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.
|
|
337
|
-
public static let colorTagRemovableLightBackground = UIColor(red: 0.
|
|
338
|
-
public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.
|
|
339
|
-
public static let colorTagRemovableLightIcon = UIColor(red: 0.
|
|
340
|
-
public static let colorTagRemovableLightText = UIColor(red:
|
|
341
|
-
public static let colorTagSelectableDarkActiveBackground = UIColor(red: 0.
|
|
342
|
-
public static let
|
|
330
|
+
public static let colorTagLinkLightText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
331
|
+
public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.655, green: 0.651, blue: 0.627, alpha: 1)
|
|
332
|
+
public static let colorTagRemovableDarkBackground = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
|
|
333
|
+
public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.761, green: 0.757, blue: 0.729, alpha: 1)
|
|
334
|
+
public static let colorTagRemovableDarkIcon = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
335
|
+
public static let colorTagRemovableDarkText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
336
|
+
public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.443, green: 0.439, blue: 0.420, alpha: 1)
|
|
337
|
+
public static let colorTagRemovableLightBackground = UIColor(red: 0.227, green: 0.224, blue: 0.212, alpha: 1)
|
|
338
|
+
public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
|
|
339
|
+
public static let colorTagRemovableLightIcon = UIColor(red: 0.867, green: 0.863, blue: 0.835, alpha: 1)
|
|
340
|
+
public static let colorTagRemovableLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
341
|
+
public static let colorTagSelectableDarkActiveBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
342
|
+
public static let colorTagSelectableDarkActiveBorder = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
343
|
+
public static let colorTagSelectableDarkActiveText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
344
|
+
public static let colorTagSelectableDarkBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
345
|
+
public static let colorTagSelectableDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
343
346
|
public static let colorTagSelectableDarkDisabledBackground = UIColor(red: 0.333, green: 0.333, blue: 0.314, alpha: 1)
|
|
344
347
|
public static let colorTagSelectableDarkDisabledText = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
345
|
-
public static let colorTagSelectableDarkHoverBackground = UIColor(red: 0.000, green: 0.
|
|
346
|
-
public static let colorTagSelectableDarkSelectedBackground = UIColor(red: 0.000, green: 0.
|
|
348
|
+
public static let colorTagSelectableDarkHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
349
|
+
public static let colorTagSelectableDarkSelectedBackground = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
350
|
+
public static let colorTagSelectableDarkSelectedBorder = UIColor(red: 0.000, green: 0.620, blue: 0.675, alpha: 1)
|
|
351
|
+
public static let colorTagSelectableDarkSelectedHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
352
|
+
public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
347
353
|
public static let colorTagSelectableDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
348
|
-
public static let colorTagSelectableLightActiveBackground = UIColor(red: 0.000, green: 0.
|
|
349
|
-
public static let
|
|
354
|
+
public static let colorTagSelectableLightActiveBackground = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
355
|
+
public static let colorTagSelectableLightActiveBorder = UIColor(red: 0.000, green: 0.306, blue: 0.341, alpha: 1)
|
|
356
|
+
public static let colorTagSelectableLightActiveText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
357
|
+
public static let colorTagSelectableLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
358
|
+
public static let colorTagSelectableLightBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
350
359
|
public static let colorTagSelectableLightDisabledBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
|
|
351
360
|
public static let colorTagSelectableLightDisabledText = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
352
361
|
public static let colorTagSelectableLightHoverBackground = UIColor(red: 0.282, green: 0.729, blue: 0.769, alpha: 1)
|
|
353
|
-
public static let colorTagSelectableLightSelectedBackground = UIColor(red: 0.000, green: 0.
|
|
362
|
+
public static let colorTagSelectableLightSelectedBackground = UIColor(red: 0.000, green: 0.498, blue: 0.549, alpha: 1)
|
|
363
|
+
public static let colorTagSelectableLightSelectedHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.455, alpha: 1)
|
|
364
|
+
public static let colorTagSelectableLightSelectedText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
354
365
|
public static let colorTagSelectableLightText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
355
|
-
public static let colorTagTextDarkBackground = UIColor(red: 0.
|
|
366
|
+
public static let colorTagTextDarkBackground = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
356
367
|
public static let colorTagTextDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
357
368
|
public static let colorTagTextDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
358
369
|
public static let colorTagTextLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
359
|
-
public static let colorTagTextLightBorder = UIColor(red: 0.
|
|
360
|
-
public static let colorTagTextLightText = UIColor(red: 0.
|
|
370
|
+
public static let colorTagTextLightBorder = UIColor(red: 0.549, green: 0.545, blue: 0.522, alpha: 1)
|
|
371
|
+
public static let colorTagTextLightText = UIColor(red: 0.118, green: 0.118, blue: 0.110, alpha: 1)
|
|
361
372
|
public static let colorToggleDisabledBackground = UIColor(red: 0.933, green: 0.929, blue: 0.918, alpha: 1)
|
|
362
373
|
public static let colorToggleDisabledCheckedBackground = UIColor(red: 0.569, green: 0.835, blue: 0.859, alpha: 1)
|
|
363
374
|
public static let colorToggleDisabledCheckedCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|