@woosmap/ui 3.31.0 → 3.35.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.
Files changed (31) hide show
  1. package/.storybook/preview.js +2 -2
  2. package/package.json +2 -2
  3. package/src/components/Dropdown/Dropdown.js +1 -1
  4. package/src/styles/style-console.styl +7 -6
  5. package/src/styles/style-website.styl +13 -9
  6. package/src/styles/website/MerchantDemo.styl +73 -54
  7. package/src/styles/website/button.styl +390 -140
  8. package/src/styles/website/card.styl +302 -0
  9. package/src/styles/website/colors.styl +279 -46
  10. package/src/styles/website/dropdown.styl +123 -0
  11. package/src/styles/website/fonts.styl +1 -1
  12. package/src/styles/website/input.styl +7 -7
  13. package/src/styles/website/mixins.styl +192 -4
  14. package/src/styles/website/popover.styl +8 -0
  15. package/src/styles/website/select.styl +47 -25
  16. package/src/styles/website/skeletondemo.styl +246 -521
  17. package/src/styles/website/tab.styl +5 -2
  18. package/src/styles/website/variables.styl +111 -28
  19. package/src/styles/next-website/MerchantDemo.styl +0 -222
  20. package/src/styles/next-website/button.styl +0 -416
  21. package/src/styles/next-website/colors.styl +0 -287
  22. package/src/styles/next-website/demo.styl +0 -264
  23. package/src/styles/next-website/dropdown.styl +0 -82
  24. package/src/styles/next-website/font.styl +0 -1
  25. package/src/styles/next-website/input.styl +0 -138
  26. package/src/styles/next-website/mixins.styl +0 -128
  27. package/src/styles/next-website/select.styl +0 -113
  28. package/src/styles/next-website/tab.styl +0 -41
  29. package/src/styles/next-website/variables.styl +0 -120
  30. package/src/styles/style-next-website.styl +0 -26
  31. package/src/styles/website/style.styl +0 -2
@@ -1,416 +0,0 @@
1
- .btn
2
- cursor pointer
3
- text-decoration none
4
- .icon
5
- flex-shrink 0
6
- &.active
7
- cursor default
8
- &:disabled
9
- &:not(.btn--group)
10
- cursor default
11
- opacity .3
12
- box-shadow none
13
- &:hover
14
- opacity .3
15
- &--icon
16
- &:not(.btn--link):not(.btn--link-primary):not(.btn--link-info):not(.btn--link-flex):not(.btn--link-flex-info):not(.btn--group):not(.btn--sidebar-link)
17
- sq()
18
- btn()
19
- justify-content center
20
- padding 0
21
- &.btn--loading
22
- padding 0
23
- .icon
24
- sq(2.4)
25
- &.btn--small
26
- buttonSmall()
27
- width $buttonHeightSmall
28
- &.btn--mini
29
- buttonMini()
30
- width $buttonHeightMini
31
- &.btn--large
32
- buttonLarge()
33
- width $buttonHeightLarge
34
- &.btn--primary
35
- &:disabled
36
- &:hover
37
- background-color $primary
38
- .icon
39
- fill $light
40
- &.btn--loading
41
- &:hover
42
- background-color $primary
43
- &.btn--secondary
44
- &:disabled
45
- &:hover
46
- background-color transparent
47
- border-color $inputBorderColor
48
- .icon
49
- fill $secondary
50
- &.btn--important
51
- &:disabled
52
- &:hover
53
- background-color $error
54
- .icon
55
- fill $light
56
- &.btn--has-icon
57
- &:not(.btn--small):not(.btn--large)
58
- mbi(.4)
59
- &.btn--icon
60
- flex-shrink 0
61
- .icon
62
- flex-shrink 0
63
- &--primary
64
- &--important
65
- btn()
66
- textShadow()
67
- color $light
68
- .icon
69
- fill $light
70
- trans()
71
- &.btn--loading:not(.btn--small):not(.btn--large)
72
- disableHoverEffect()
73
- .icon
74
- margin-right .3rem
75
- sq(2.2)
76
- &.btn--has-icon
77
- &:not(.btn--small):not(.btn--large)
78
- mbi(.4)
79
- &.btn--icon
80
- flex-shrink 0
81
- .icon
82
- flex-shrink 0
83
- &--primary
84
- background-color $primary
85
- &:disabled
86
- &:hover
87
- background-color $primary
88
- &--important
89
- background-color $error
90
- &:disabled
91
- &:hover
92
- background-color $error
93
- &--secondary
94
- btn()
95
- color $secondary
96
- background-color $light
97
- border .1rem solid $inputBorderColor
98
- .icon
99
- fill $secondary
100
- trans()
101
- &.btn--has-icon
102
- mbi(.4)
103
- &.btn--icon
104
- flex-shrink 0
105
- .icon
106
- flex-shrink 0
107
- &:hover
108
- border-color $success
109
- &.btn--loading
110
- &:hover
111
- background-color transparent
112
- color $secondary
113
- cursor default
114
- border-color $inputBorderColor
115
- .icon
116
- fill $secondary
117
- &:disabled
118
- opacity .4
119
- cursor default
120
- &:disabled
121
- &:hover
122
- opacity .4
123
- background-color transparent
124
- color $secondary
125
- border-color $inputBorderColor
126
- .icon
127
- fill $secondary
128
- &--inverse
129
- btn()
130
- background-color transparent
131
- border .1rem solid $light
132
- color $light
133
- .icon
134
- fill $light
135
- &.btn--has-icon
136
- mbi(.4)
137
- &.btn--icon
138
- flex-shrink 0
139
- .icon
140
- flex-shrink 0
141
- &:hover
142
- border-color $success
143
- color $light
144
- .icon
145
- fill $light
146
- &:disabled
147
- opacity .3
148
- &:hover
149
- cursor default
150
- border-color $success
151
- color $light
152
- .icon
153
- fill $light
154
- &--link-flex
155
- &--link-flex-info
156
- &--link
157
- &--link-primary
158
- &--link-info
159
- focus()
160
- trans()
161
- height auto
162
- padding 0
163
- line-height $fontSize
164
- color $secondary
165
- vertical-align baseline
166
- position relative
167
- .btn__label
168
- line-height $fontSize
169
- vertical-align baseline
170
- &:hover
171
- text-decoration underline
172
- color $primary
173
- .icon
174
- fill $primary
175
- &:disabled
176
- cursor default
177
- opacity .3
178
- &:hover
179
- color inherit
180
- opacity .3
181
- text-decoration underline
182
- .icon
183
- fill inherit
184
- .label &
185
- &:hover
186
- .icon
187
- fill $light
188
- &.btn--icon
189
- padding 0
190
- text-decoration none
191
- &.btn--has-icon
192
- &:not(.btn--icon-right)
193
- .icon
194
- margin-right .3rem
195
- &.btn--icon-right
196
- .icon
197
- margin-left .3rem
198
- &--link
199
- &--link-primary
200
- &--link-info
201
- .icon
202
- trans()
203
- position relative
204
- top .7rem
205
- &:not(.btn--icon-right)
206
- .icon
207
- left -.3rem
208
- &.btn--small
209
- .icon
210
- top .5rem
211
- left -.3rem
212
- &.btn--large
213
- .icon
214
- top 1.2rem
215
- left -.3rem
216
- &.btn--icon-right
217
- .icon
218
- right -.3rem
219
- &.btn--small
220
- .icon
221
- top .5rem
222
- rigth -.3rem
223
- &.btn--large
224
- .icon
225
- top 1.2rem
226
- rigth -.3rem
227
- &--link-flex
228
- &--link-flex-info
229
- display flex
230
- align-items center
231
- &.btn--no-label
232
- display flex
233
- align-items center
234
- justify-content center
235
- &.btn--large
236
- &.btn--small
237
- height auto
238
- padding 0 !important
239
- &--link-flex-info
240
- &:hover
241
- color $primary
242
- text-decoration none
243
- .icon
244
- fill $primary
245
- &:disabled
246
- &:hover
247
- color $primary
248
- text-decoration none
249
- .icon
250
- fill $primary
251
- &--link
252
- &--link-flex
253
- &.btn--light-color
254
- color $secondary-medium40
255
- .icon
256
- trans()
257
- fill $secondary-medium40
258
- &:hover
259
- color $primary
260
- .icon
261
- fill $primary
262
- &--link-primary
263
- color $primary
264
- .icon
265
- fill $primary
266
- &:disabled
267
- &:hover
268
- color $primary
269
- text-decoration none
270
- .icon
271
- fill $primary
272
- &--link-info
273
- &--link-flex-info
274
- color $info
275
- .icon
276
- fill $info
277
- &:hover
278
- color $primary
279
- text-decoration underline
280
- .icon
281
- fill $primary
282
- &--link-info
283
- &--link-flex-info
284
- &--link-flex
285
- transition none
286
- .icon
287
- trans()
288
- .btn__label
289
- trans()
290
-
291
- &--has-icon
292
- &:not(.btn--icon):not(.btn--link):not(.btn--link-primary):not(.btn--link-info):not(.btn--link-flex):not(.btn--link-flex-info):not(.btn--loading):not(.btn--mini):not(.btn--small):not(.btn--large):not(.btn--dropdown-item):not(.btn--tab):not(.btn--sidebar-link):not(.btn--icon-right)
293
- padding 0 $padding 0 $padding - .6
294
- &:not(.btn--icon):not(.btn--link):not(.btn--link-primary):not(.btn--link-info):not(.btn--link-flex):not(.btn--link-flex-info):not(.btn--loading):not(.btn--mini):not(.btn--small):not(.btn--large):not(.btn--dropdown-item):not(.btn--tab):not(.btn--sidebar-link)
295
- &.btn--icon-right
296
- padding 0 $padding - .6 0 $padding
297
- &--loading
298
- &:not(.btn--icon):not(.btn--small):not(.btn--large):not(.btn--sidebar-link)
299
- padding-left $padding - .4
300
- &:hover
301
- &.btn--important
302
- background-color $error
303
- .icon
304
- sq(2.2)
305
-
306
-
307
- &--small
308
- buttonSmall()
309
- &.btn--group
310
- &.btn--switch
311
- buttonSmall()
312
- &.btn--icon
313
- width auto
314
- img
315
- max-width 2.2rem
316
- &:not(.btn--custom-icon-size)
317
- .icon
318
- sq(1.8)
319
- &:not(.btn--icon)
320
- .icon
321
- margin-right .4rem
322
- &.btn--has-icon
323
- padding-left $padding - .5
324
- &.btn--loading
325
- padding-left $padding - .4
326
- disableHoverEffect()
327
- .icon
328
- sq(1.8)
329
- &--large
330
- buttonLarge()
331
- &:not(.btn--custom-icon-size)
332
- .icon
333
- sq(3.2)
334
- &:not(.btn--icon)
335
- .icon
336
- margin-right .6rem
337
- &.btn--has-icon
338
- padding-left $padding - .4
339
- &.btn--loading
340
- padding-left $padding
341
- disableHoverEffect()
342
- .icon
343
- sq(3.2)
344
- &--group
345
- btn()
346
- color $secondary-medium40
347
- background-color $light
348
- border .1rem solid $inputBorderColor
349
- &.btn--has-icon
350
- &:not(.btn--mini):not(.btn--small):not(.btn--large)
351
- mbi(.4)
352
- &.btn--icon
353
- flex-shrink 0
354
- .icon
355
- flex-shrink 0
356
- &:hover
357
- color $secondary
358
- background-color $primary10
359
- &.active
360
- color $light
361
- border-color $secondary
362
- background-color $secondary
363
- .icon
364
- fill $light
365
- &:hover
366
- background-color $secondary
367
- &:disabled
368
- background-color $secondary60
369
- border-color $secondary-medium15
370
- color $light70
371
- .icon
372
- fill $light70
373
- &:disabled:not(.active)
374
- color $secondary30
375
- cursor default
376
- .icon
377
- fill $secondary30
378
- &:hover
379
- border-color $inputBorderColor
380
- color $secondary30
381
- background-color transparent
382
- .icon
383
- fill $secondary30
384
- &-container
385
- flexMiddle()
386
- .btn
387
- &:first-child
388
- border-radius $borderRadius 0 0 $borderRadius
389
- border-width .1rem 0 .1rem .1rem
390
- &:not(:first-child):not(:last-child)
391
- border-width .1rem 0 .1rem .1rem
392
- border-radius 0
393
- &:last-child
394
- border-radius 0 $borderRadius $borderRadius 0
395
- border-width .1rem
396
- &--light
397
- .btn
398
- &.active
399
- border-color $inputBorderColor
400
- background-color $primary20
401
- color $secondary
402
- &:hover
403
- background-color $primary20
404
- &--btn-tooltip
405
- .tooltip
406
- &:first-child
407
- .btn
408
- border-radius $borderRadius 0 0 $borderRadius
409
- &:not(:first-child):not(:last-child)
410
- .btn
411
- border-width .1rem .1rem .1rem 0
412
- border-radius 0
413
- &:last-child
414
- .btn
415
- border-radius 0 $borderRadius $borderRadius 0
416
- border-width .1rem .1rem .1rem 0
@@ -1,287 +0,0 @@
1
-
2
- // Main colors
3
- $logo1 = rgba(79, 195, 247, 1) // #4fc3f7
4
- $logo2 = rgba(85, 134, 255, 1) // #5586ff
5
- $logo3 = rgba(61, 90, 254, 1) // #3d5afe
6
- $logo4 = rgba(57, 73, 171, 1) // #3949ab
7
- $logo5 = rgba(197, 17, 98, 1) // #c51162
8
- $logo6 = rgba(245, 0, 87, 1) // #f50057
9
- $logo7 = rgba(255, 82, 82, 1) // #ff5252
10
- $logo8 = rgba(255, 171, 0, 1) // #ffab00
11
-
12
- $linkColorDark = #01b3ff
13
- $linkColor = $logo3
14
-
15
- $primary = $logo3 // 3d5afe
16
- $primary90 = rgba(61, 90, 254, .9)
17
- $primary80 = rgba(61, 90, 254, .8)
18
- $primary70 = rgba(61, 90, 254, .7)
19
- $primary60 = rgba(61, 90, 254, .6)
20
- $primary50 = rgba(61, 90, 254, .5)
21
- $primary40 = rgba(61, 90, 254, .4)
22
- $primary30 = rgba(61, 90, 254, .3)
23
- $primary25 = rgba(61, 90, 254, .25)
24
- $primary20 = rgba(61, 90, 254, .2)
25
- $primary15 = rgba(61, 90, 254, .15)
26
- $primary14 = rgba(61, 90, 254, .14)
27
- $primary13 = rgba(61, 90, 254, .13)
28
- $primary12 = rgba(61, 90, 254, .12)
29
- $primary11 = rgba(61, 90, 254, .11)
30
- $primary10 = rgba(61, 90, 254, .1)
31
- $primary9 = rgba(61, 90, 254, .09)
32
- $primary8 = rgba(61, 90, 254, .08)
33
- $primary7 = rgba(61, 90, 254, .07)
34
- $primary6 = rgba(61, 90, 254, .06)
35
- $primary5 = rgba(61, 90, 254, .05)
36
- $primary4 = rgba(61, 90, 254, .04)
37
- $primary3 = rgba(61, 90, 254, .03)
38
- $primary2 = rgba(61, 90, 254, .02)
39
- $primary1 = rgba(61, 90, 254, .01)
40
-
41
-
42
- $secondary = #252525
43
- $secondary-medium60 = $secondary
44
- $secondary-medium40 = $secondary
45
- $secondary-medium30 = $secondary
46
- $secondary-medium25 = $secondary
47
-
48
- $bodyColor = #F8FAFD
49
- // Texts & Components
50
- $textColor = $secondary
51
-
52
- $category = #A6A9B4
53
-
54
- $darkGradient1 = #262D3E
55
- $darkGradient2 = #31436C
56
-
57
- $coloredGradient1 = $logo3
58
- $coloredGradient2 = $logo6
59
- $coloredGradient3 = $logo8
60
-
61
- $buttonHover = $success2
62
- $buttonBorderColor = #454545
63
- $borderColor = #ebebed
64
-
65
- $special = #FF368B
66
- $special2 = #ff3260
67
- $special3 = #46cebc
68
- $focus = #3633ff
69
-
70
- $favorite = #ffc200
71
-
72
- $modalBg = rgba(0, 11, 31, .85)
73
-
74
- //new version of demos
75
- $inputDemoBgColor = #f6f7f8
76
- $inputDemoBorderColor = #bcc4d7
77
- $inputDemoPlaceholderColor = #818ca5
78
-
79
- $activeColor = #7f98b3
80
- $activeColorDark = #4c657e
81
-
82
- // Labels
83
- $labelBlue = #52a6e2
84
- $labelMauve = #7d74c7
85
- $labelGreen = #47bb90
86
- $labelGrey = #7a86a7
87
- $labelOrange = #dc9d40
88
- $labelRed = #dc4e7e
89
-
90
- // Metric
91
- $metricsProjects = rgba(71, 72, 107, 1) // #47486b
92
- $metricsProjects80 = rgba(71, 72, 107, .8) // #47486b
93
- $metricsProjects60 = rgba(71, 72, 107, .6) // #47486b
94
- $metricsProjects20 = rgba(71, 72, 107, .2) // #47486b
95
- $metricsProjects10 = rgba(71, 72, 107, .1) // #47486b
96
- $metricsProjects5 = rgba(71, 72, 107, .05) // #47486b
97
- $metricsAssets = $metricsProjects
98
- $metricsMembers = rgba(100, 107, 142, 1) // #646b8e
99
- $metricsMembers20 = rgba(100, 107, 142, .2) // #646b8e
100
- $metricsMembers10 = rgba(100, 107, 142, .1) // #646b8e
101
- $metricsMembers5 = rgba(100, 107, 142, .05) // #646b8e
102
- $metricsTeams = #839ba7
103
-
104
- $metricsTopProjects = rgba(237, 247, 249, 1) // #edf7f9
105
- $metricsLastCreatedProjects = rgba(233, 249, 242, 1) // #e9f9f2
106
-
107
- $apiKey = #595390
108
-
109
- // Privilege
110
- $superuser = #277ed7
111
- $staff = #ec4a8e
112
- $owner = #4e6d94
113
- $co-owner = #6fbb8a
114
-
115
- // Plans
116
- $free = #72b3a7
117
- $standard = #4b7bd3
118
- $enterprise = #c3417d
119
-
120
- // Alerts
121
- $success2 = rgba(14, 206, 170, 1)// #0eceaa
122
-
123
- $success = rgba(47, 188, 114, 1)
124
- $success-light = #0ff1c6
125
- $success-dark = #0cc7a4
126
-
127
- $success80 = rgba(47, 188, 114, .8)
128
- $success70 = rgba(47, 188, 114, .7)
129
- $success60 = rgba(47, 188, 114, .6)
130
- $success50 = rgba(47, 188, 114, .5)
131
- $success20 = rgba(47, 188, 114, .2)
132
- $success50 = rgba(47, 188, 114, .5)
133
-
134
- $error = rgba(220, 55, 71, 1) // #FF1744
135
- $error-light = #ff6785
136
- $error-dark = #ca0f33
137
-
138
- $error50 = rgba(220, 55, 71, 5)
139
- $error12 = rgba(220, 55, 71, .12)
140
- $error30 = rgba(220, 55, 71, .3)
141
-
142
- $info = rgba(0, 124, 255, 1) // #00B0FF
143
- $info12 = rgba(0, 124, 255, .12)
144
- $info30 = rgba(0, 124, 255, .3)
145
-
146
- $warning = rgba(240, 116, 34, 1) // #ff6a00
147
- $warning12 = rgba(240, 116, 34, .12)
148
- $warning30 = rgba(240, 116, 34, .3)
149
-
150
- $tip = rgba(240, 186, 34, 1) // #f0ba22
151
- $tip12 = rgba(240, 186, 34, .12)
152
- $tip50 = rgba(240, 186, 34, .5)
153
- $tipInverse = rgba(223, 169, 16, 1)
154
-
155
-
156
- $flashError = $error
157
- $flashBgError = $error12
158
- $flashBorderError = $error30
159
-
160
- $flashSuccess = $success
161
- $flashBgSuccess = $success20
162
- $flashBorderSuccess = $success50
163
-
164
- $flashInfo = $info
165
- $flashBgInfo = $info12
166
- $flashBorderInfo = $info30
167
-
168
- $flashWarning = $warning
169
- $flashBgWarning = $warning12
170
- $flashBorderWarning = $warning30
171
-
172
-
173
- $flashTip = $tip
174
- $flashBgTip = $tip12
175
- $flashBorderTip = $tip50
176
- $flashTipInverse = $tipInverse
177
-
178
- $flashHowto = $howto
179
- $flashBgHowto = $howtoLight
180
- $flashBorderHowto = $howtoDark
181
-
182
- // Switch
183
- $switch-inactive=$dark40
184
- $switch-disabled= $dark10
185
- $switch-active= $success2
186
- $switch-focus= $primary
187
-
188
-
189
- // Tabs
190
-
191
-
192
- // DEMO
193
- $demoWrapper = $primary5
194
- $demoWrapper2 = $primary20
195
- $demoWrapperBorder = $light
196
- $result = $tabContent
197
- $resultDark = $tabHeaderDark
198
- $resultMatch = #ffe000
199
-
200
-
201
- // Inputs
202
- $inputBorderColor =$buttonBorderColor
203
- $placeHolderColor = #a4a4a4
204
-
205
-
206
- $dark = rgba(0, 0, 0, 1)
207
- $dark90 = rgba(0, 0, 0, .9)
208
- $dark80 = rgba(0, 0, 0, .8)
209
- $dark70 = rgba(0, 0, 0, .7)
210
- $dark60 = rgba(0, 0, 0, .6)
211
- $dark50 = rgba(0, 0, 0, .5)
212
- $dark40 = rgba(0, 0, 0, .4)
213
- $dark35 = rgba(0, 0, 0, .35)
214
- $dark30 = rgba(0, 0, 0, .3)
215
- $dark25 = rgba(0, 0, 0, .25)
216
- $dark20 = rgba(0, 0, 0, .2)
217
- $dark15 = rgba(0, 0, 0, .15)
218
- $dark14 = rgba(0, 0, 0, .14)
219
- $dark13 = rgba(0, 0, 0, .13)
220
- $dark12 = rgba(0, 0, 0, .12)
221
- $dark11 = rgba(0, 0, 0, .11)
222
- $dark10 = rgba(0, 0, 0, .1)
223
- $dark9 = rgba(0, 0, 0, .09)
224
- $dark8 = rgba(0, 0, 0, .08)
225
- $dark7 = rgba(0, 0, 0, .07)
226
- $dark6 = rgba(0, 0, 0, .06)
227
- $dark5 = rgba(0, 0, 0, .05)
228
- $dark4 = rgba(0, 0, 0, .04)
229
- $dark3 = rgba(0, 0, 0, .03)
230
- $dark2 = rgba(0, 0, 0, .02)
231
- $dark1 = rgba(0, 0, 0, .01)
232
-
233
- $light = rgba(255, 255, 255, 1)
234
- $light90 = rgba(255, 255, 255, .9)
235
- $light80 = rgba(255, 255, 255, .8)
236
- $light70 = rgba(255, 255, 255, .7)
237
- $light60 = rgba(255, 255, 255, .6)
238
- $light50 = rgba(255, 255, 255, .5)
239
- $light40 = rgba(255, 255, 255, .4)
240
- $light30 = rgba(255, 255, 255, .3)
241
- $light20 = rgba(255, 255, 255, .2)
242
- $light10 = rgba(255, 255, 255, .1)
243
- $light9 = rgba(255, 255, 255, .09)
244
- $light8 = rgba(255, 255, 255, .08)
245
- $light7 = rgba(255, 255, 255, .07)
246
- $light6 = rgba(255, 255, 255, .06)
247
- $light5 = rgba(255, 255, 255, .05)
248
- $light4 = rgba(255, 255, 255, .04)
249
- $light3 = rgba(255, 255, 255, .03)
250
- $light2 = rgba(255, 255, 255, .02)
251
- $light1 = rgba(255, 255, 255, .01)
252
-
253
-
254
-
255
- // Products
256
-
257
- $localitiesDark = rgba(0, 152, 220, 1) // #00b0ff
258
- $localities = rgba(0, 176, 255, 1) // #00B0FF
259
- $localities10 = rgba(0, 176, 255, .1)
260
-
261
- $geolocationDark = rgba(1, 175, 73, 1) // #01af49
262
- $geolocation = rgba(0, 200, 83, 1) // #00c853
263
- $geolocation10 = rgba(0, 200, 83, .1)
264
-
265
- $distanceDark = rgba(255, 115, 0, 1) // #FF7300
266
- $distance = rgba(255, 145, 0, 1) // #FF9100
267
- $distance10 = rgba(255, 145, 0, .1)
268
-
269
- $storesDark = rgba(37, 109, 212, 1) // #256dd4
270
- $stores = rgba(56, 138, 255, 1) // #388aff
271
- $stores10 = rgba(56, 138, 255, .1)
272
-
273
- $addressDark = rgba(59, 179, 195, 1) // #38b3c3
274
- $address = rgba(77, 208, 255, 1) // #4dd0ff
275
- $address10 = rgba(77, 208, 255, .1)
276
-
277
- $mapDark = rgba(134, 106, 96, 1) // #866a60
278
- $map = rgba(161, 136, 127, 1) // #A1887F
279
- $map10 = rgba(161, 136, 127, .1)
280
-
281
- $merchantDark = rgba(81, 107, 119, 1) // #516b77
282
- $merchant = rgba(120, 144, 156, 1) // #78909C
283
- $merchant10 = rgba(120, 144, 156, .1)
284
-
285
- $trafficDark = rgba(2165, 46, 111, 1)// #D82E6F
286
- $traffic = rgba(255, 124, 129, 1) // #ff7c81
287
- $traffic10 = rgba(255, 124, 129, .1)