@manamerge/mana-atomic-ui 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -38
- package/dist/index.js +90 -129
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/Manamerge.ts +648 -0
- package/dist/themes/themes/ManamergeTheme.ts +0 -39
- package/dist/themes/themes/davidWeb.ts +648 -0
- package/dist/themes/themes/manamerge/atoms/button.ts +45 -43
- package/dist/themes/themes/manamerge/atoms/divider.ts +5 -3
- package/dist/themes/themes/manamerge/atoms/gradient.ts +7 -6
- package/dist/themes/themes/manamerge/atoms/heading.ts +164 -24
- package/dist/themes/themes/manamerge/atoms/link.ts +82 -34
- package/dist/themes/themes/manamerge/atoms/text.ts +46 -20
- package/dist/themes/themes/manamerge/fonts/Gilmer/Gilmer-Bold.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer/Gilmer-Heavy.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer/Gilmer-Light.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer/Gilmer-Medium.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer/Gilmer-Regular.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Springwood/SpringwoodBrush-Italic.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Springwood/SpringwoodBrush-Regular.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/index.js +10 -7
- package/dist/themes/themes/manamerge/miscellaneous/colorpalette.ts +38 -0
- package/dist/themes/themes/manamerge/miscellaneous/fontsizes.ts +13 -0
- package/dist/themes/themes/manamerge/molecules/accordion.ts +2 -2
- package/dist/themes/themes/manamerge/molecules/breakerTape.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/cardBanner.ts +7 -6
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +2 -2
- package/dist/themes/themes/manamerge/molecules/cardTeaser.ts +3 -3
- package/dist/themes/themes/manamerge/molecules/footer.ts +2 -2
- package/dist/themes/themes/manamerge/molecules/header.ts +6 -14
- package/dist/themes/themes/manamerge/molecules/navigation.ts +1 -1
- package/dist/types/components/Atoms/Button/Button.css.d.ts +1 -28
- package/dist/types/components/Atoms/Button/Button.d.ts +0 -23
- package/dist/types/components/Atoms/Button/Button.stories.d.ts +1 -2
- package/dist/types/components/Atoms/CDNImage/blurhash.worker.d.ts +1 -0
- package/dist/types/components/Atoms/CDNImage/blurhashWorkerWrapper.d.ts +1 -0
- package/dist/types/components/Atoms/Heading/Heading.d.ts +1 -11
- package/dist/types/components/Atoms/Link/Link.d.ts +1 -5
- package/dist/types/components/Atoms/Text/Text.d.ts +4 -0
- package/dist/types/components/Molecules/CardBanner/CardBanner.css.d.ts +0 -3
- package/dist/types/components/Molecules/Header/Header.css.d.ts +0 -6
- package/dist/types/themes/Manamerge.d.ts +1442 -0
- package/dist/types/themes/ManamergeTheme.d.ts +466 -172
- package/dist/types/themes/davidWeb.d.ts +1442 -0
- package/dist/types/themes/manamerge/atoms/button.d.ts +19 -21
- package/dist/types/themes/manamerge/atoms/divider.d.ts +3 -3
- package/dist/types/themes/manamerge/atoms/gradient.d.ts +6 -6
- package/dist/types/themes/manamerge/atoms/heading.d.ts +162 -24
- package/dist/types/themes/manamerge/atoms/link.d.ts +75 -30
- package/dist/types/themes/manamerge/atoms/text.d.ts +37 -15
- package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +36 -0
- package/dist/types/themes/manamerge/miscellaneous/fontsizes.d.ts +12 -0
- package/dist/types/themes/manamerge/molecules/cardBanner.d.ts +2 -3
- package/dist/types/themes/manamerge/molecules/header.d.ts +0 -8
- package/dist/web-worker-0.js +21 -0
- package/dist/workers/workers/blurhash.worker.ts +8 -0
- package/package.json +1 -1
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +0 -11
|
@@ -0,0 +1,648 @@
|
|
|
1
|
+
// Breakpoints
|
|
2
|
+
import breakpoints from "./manamerge/miscellaneous/breakpoints";
|
|
3
|
+
|
|
4
|
+
// Atoms
|
|
5
|
+
import text from "./manamerge/atoms/text";
|
|
6
|
+
import link from "./manamerge/atoms/link";
|
|
7
|
+
import heading from "./manamerge/atoms/heading";
|
|
8
|
+
import button from "./manamerge/atoms/button";
|
|
9
|
+
import checkbox from "./manamerge/atoms/checkbox";
|
|
10
|
+
import icon from "./manamerge/atoms/icon";
|
|
11
|
+
import gradient from "./manamerge/atoms/gradient";
|
|
12
|
+
import divider from "./manamerge/atoms/divider";
|
|
13
|
+
|
|
14
|
+
// Molecules
|
|
15
|
+
import header from "./manamerge/molecules/header";
|
|
16
|
+
import navigation from "./manamerge/molecules/navigation";
|
|
17
|
+
import footer from "./manamerge/molecules/footer";
|
|
18
|
+
import cardTeaser from "./manamerge/molecules/cardTeaser";
|
|
19
|
+
import cardSimpleRender from "./manamerge/molecules/cardSimpleRender";
|
|
20
|
+
import cardBanner from "./manamerge/molecules/cardBanner";
|
|
21
|
+
|
|
22
|
+
// Styling
|
|
23
|
+
// import filterListTheme from "./manamerge/styling/filter-list-theme.css.js";
|
|
24
|
+
// import chatTheme from "./manamerge/styling/chat-theme.css.js";
|
|
25
|
+
// import notificationsTheme from "./manamerge/styling/notification-theme.css.js";
|
|
26
|
+
|
|
27
|
+
// Icons
|
|
28
|
+
// import playIcon from "./manamerge/images/icons/playbutton.svg";
|
|
29
|
+
// import heartEmoji from "./manamerge/images/emojis/heart.png";
|
|
30
|
+
// import fireEmoji from "./manamerge/images/emojis/fire.png";
|
|
31
|
+
// import clapEmoji from "./manamerge/images/emojis/clap.png";
|
|
32
|
+
// import smileEmoji from "./manamerge/images/emojis/smile.png";
|
|
33
|
+
// import plusoneEmoji from "./manamerge/images/emojis/plusone.png";
|
|
34
|
+
// import manamergeprideEmoji from "./manamerge/images/emojis/manapride.png";
|
|
35
|
+
// import manaEmoji from "./manamerge/images/emojis/mana.png";
|
|
36
|
+
import notificationArrow from "./manamerge/images/icons/notificationArrow.svg";
|
|
37
|
+
|
|
38
|
+
import navBarLogoDark from "./manamerge/images/logo/icon-manaconf.svg";
|
|
39
|
+
import navigationBackIcon from "./manamerge/images/icons/navigation/back.svg";
|
|
40
|
+
import navigationForwardIcon from "./manamerge/images/icons/navigation/forward.svg";
|
|
41
|
+
import closeIcon from "./manamerge/images/icons/close.svg";
|
|
42
|
+
import deleteIcon from "./manamerge/images/icons/delete.svg";
|
|
43
|
+
import calendarIcon from "./manamerge/images/icons/calendar.svg";
|
|
44
|
+
import addToCalendarIcon from "./manamerge/images/icons/addToCalendarIcon.svg";
|
|
45
|
+
import trashIcon from "./manamerge/images/icons/trash.svg";
|
|
46
|
+
import plusIcon from "./manamerge/images/icons/plus.svg";
|
|
47
|
+
import addedIcon from "./manamerge/images/icons/added.svg";
|
|
48
|
+
import arrowDown from "./manamerge/images/icons/arrow-down.svg";
|
|
49
|
+
import infoIcon from "./manamerge/images/icons/info.svg";
|
|
50
|
+
import SectionLogoIcon from "./manamerge/images/icons/sectionlogo.svg";
|
|
51
|
+
import selectBoxIconArrow from "./manamerge/images/icons/selectBox/arrow-down.svg";
|
|
52
|
+
import selectBoxIconArrowLight from "./manamerge/images/icons/selectBox/arrow-down-light.svg";
|
|
53
|
+
|
|
54
|
+
// Images
|
|
55
|
+
import defaultAvatar from "./manamerge/images/misc/terraform.svg";
|
|
56
|
+
|
|
57
|
+
// Social icons
|
|
58
|
+
import linkedin_lightgrey from "./manamerge/social/lightgrey/linkedin.svg";
|
|
59
|
+
import facebook_lightgrey from "./manamerge/social/lightgrey/facebook.svg";
|
|
60
|
+
import github_lightgrey from "./manamerge/social/lightgrey/github.svg";
|
|
61
|
+
import instagram_lightgrey from "./manamerge/social/lightgrey/instagram.svg";
|
|
62
|
+
import twitter_lightgrey from "./manamerge/social/lightgrey/twitter.svg";
|
|
63
|
+
import website_lightgrey from "./manamerge/social/lightgrey/website.svg";
|
|
64
|
+
import youtube_lightgrey from "./manamerge/social/lightgrey/youtube.svg";
|
|
65
|
+
|
|
66
|
+
import linkedin_white from "./manamerge/social/white/linkedin.svg";
|
|
67
|
+
import facebook_white from "./manamerge/social/white/facebook.svg";
|
|
68
|
+
import github_white from "./manamerge/social/white/github.svg";
|
|
69
|
+
import instagram_white from "./manamerge/social/white/instagram.svg";
|
|
70
|
+
import twitter_white from "./manamerge/social/white/twitter.svg";
|
|
71
|
+
import website_white from "./manamerge/social/white/website.svg";
|
|
72
|
+
import breakerTape from "./manamerge/molecules/breakerTape";
|
|
73
|
+
|
|
74
|
+
// const customEmojis = [
|
|
75
|
+
// heartEmoji,
|
|
76
|
+
// fireEmoji,
|
|
77
|
+
// manaEmoji,
|
|
78
|
+
// smileEmoji,
|
|
79
|
+
// manamergeprideEmoji,
|
|
80
|
+
// clapEmoji,
|
|
81
|
+
// plusoneEmoji
|
|
82
|
+
// ];
|
|
83
|
+
|
|
84
|
+
const {
|
|
85
|
+
tinyMobileUp,
|
|
86
|
+
smallMobileUp,
|
|
87
|
+
mobileUp,
|
|
88
|
+
mobileLandscapeUp,
|
|
89
|
+
largeMobileUp,
|
|
90
|
+
tabletPortraitUp,
|
|
91
|
+
tabletLandscapeUp,
|
|
92
|
+
desktopUp,
|
|
93
|
+
largeDesktopUp,
|
|
94
|
+
superLargeDesktopUp
|
|
95
|
+
} = breakpoints;
|
|
96
|
+
|
|
97
|
+
export const manamergeTheme = {
|
|
98
|
+
// Atoms
|
|
99
|
+
link,
|
|
100
|
+
heading,
|
|
101
|
+
button,
|
|
102
|
+
text,
|
|
103
|
+
breakpoints,
|
|
104
|
+
icon,
|
|
105
|
+
headingStyles: heading,
|
|
106
|
+
gradient,
|
|
107
|
+
divider,
|
|
108
|
+
|
|
109
|
+
// Molecules
|
|
110
|
+
header,
|
|
111
|
+
navigation,
|
|
112
|
+
footer,
|
|
113
|
+
cardTeaser,
|
|
114
|
+
breakerTape,
|
|
115
|
+
cardSimpleRender,
|
|
116
|
+
cardBanner,
|
|
117
|
+
|
|
118
|
+
// Breakpoints
|
|
119
|
+
media: {
|
|
120
|
+
tinyMobileUp: `@media only screen and (min-width: ${tinyMobileUp}px)`,
|
|
121
|
+
smallMobileUp: `@media only screen and (min-width: ${smallMobileUp}px)`,
|
|
122
|
+
mobileUp: `@media only screen and (min-width: ${mobileUp}px)`,
|
|
123
|
+
mobileLandscapeUp: `@media only screen and (min-width: ${mobileLandscapeUp}px)`,
|
|
124
|
+
largeMobileUp: `@media only screen and (min-width: ${largeMobileUp}px)`,
|
|
125
|
+
tabletPortraitUp: `@media only screen and (min-width: ${tabletPortraitUp}px)`,
|
|
126
|
+
tabletLandscapeUp: `@media only screen and (min-width: ${tabletLandscapeUp}px)`,
|
|
127
|
+
desktopUp: `@media only screen and (min-width: ${desktopUp}px)`,
|
|
128
|
+
largeDesktopUp: `@media only screen and (min-width: ${largeDesktopUp}px)`,
|
|
129
|
+
superLargeDesktopUp: `@media only screen and (min-width: ${superLargeDesktopUp}px)`
|
|
130
|
+
},
|
|
131
|
+
|
|
132
|
+
colors: {
|
|
133
|
+
light: "#212324",
|
|
134
|
+
white: "#ffffff",
|
|
135
|
+
grey: "#CCCCCC",
|
|
136
|
+
accent: "#000",
|
|
137
|
+
active: "#1D1E23",
|
|
138
|
+
affirmative: "#AC72F0",
|
|
139
|
+
affirmativeDark: "#AC72F0",
|
|
140
|
+
affirmativeAlternate: "#AC72F0",
|
|
141
|
+
cta: "#AC72F0",
|
|
142
|
+
dark: "#000",
|
|
143
|
+
separator: "#76767D",
|
|
144
|
+
disabledBg: "#212324",
|
|
145
|
+
disabledText: "#343536",
|
|
146
|
+
divider: "#0f0",
|
|
147
|
+
error: "#F25054",
|
|
148
|
+
errorHoverBack: "#0f0",
|
|
149
|
+
hover: "#212324",
|
|
150
|
+
lightBack: "#131414",
|
|
151
|
+
navigateText: "#0f0",
|
|
152
|
+
notice: "#69696F",
|
|
153
|
+
outline: "#00A1F1",
|
|
154
|
+
primary: "#76767D",
|
|
155
|
+
primaryDark: "#1D1E23",
|
|
156
|
+
primaryDarker: "#131414",
|
|
157
|
+
readMore: "#AC72F0",
|
|
158
|
+
secondary: "#343536",
|
|
159
|
+
// secondaryLighter: '#343536',
|
|
160
|
+
secondaryLighter: "#727274",
|
|
161
|
+
socialIcon: "transparent",
|
|
162
|
+
socialIconSecondary: "#1a1",
|
|
163
|
+
text: "#212324",
|
|
164
|
+
textAccent: "#fff",
|
|
165
|
+
textLight: "#FFFFFF",
|
|
166
|
+
border: "#343536",
|
|
167
|
+
signedUp: "#f0f",
|
|
168
|
+
borderError: "#F25054",
|
|
169
|
+
borderHover: "#343536"
|
|
170
|
+
},
|
|
171
|
+
pages: {
|
|
172
|
+
vod: {
|
|
173
|
+
top: {
|
|
174
|
+
text: "#f2f3f3",
|
|
175
|
+
desktop: `#131414`,
|
|
176
|
+
tablet: `#131414`,
|
|
177
|
+
mobile: `#131414`
|
|
178
|
+
},
|
|
179
|
+
main: {
|
|
180
|
+
background: "#000000",
|
|
181
|
+
text: "#f2f3f3",
|
|
182
|
+
columns: 3,
|
|
183
|
+
gap: {
|
|
184
|
+
mobile: "32px",
|
|
185
|
+
tablet: "21px",
|
|
186
|
+
desktop: "48px 32px"
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
meetups: {}
|
|
191
|
+
},
|
|
192
|
+
components: {
|
|
193
|
+
meetupCard: {
|
|
194
|
+
backgroundColor: "#000",
|
|
195
|
+
typeColor: "#fff",
|
|
196
|
+
dateColor: "#9d9d9e",
|
|
197
|
+
titleColor: "#fff",
|
|
198
|
+
descriptionColor: "#f2f2f3",
|
|
199
|
+
buttonVariant: "dark",
|
|
200
|
+
reversedButtons: true,
|
|
201
|
+
fullTextColor: "#BFBFC0",
|
|
202
|
+
fullBackground: "#727274"
|
|
203
|
+
},
|
|
204
|
+
textArea: {
|
|
205
|
+
default: "#fff",
|
|
206
|
+
active: "#fff",
|
|
207
|
+
hover: "#BFBFC0",
|
|
208
|
+
disabledText: "#BFBFC0"
|
|
209
|
+
},
|
|
210
|
+
qnAList: {
|
|
211
|
+
buttonVariant: "secondary",
|
|
212
|
+
titleColor: "#fff",
|
|
213
|
+
textColor: "#F2F2F3",
|
|
214
|
+
disabledBackground: `linear-gradient(
|
|
215
|
+
180deg,
|
|
216
|
+
rgba(59, 60, 63, 0.6) 0%,
|
|
217
|
+
rgba(38, 38, 38, 0.8) 43.75%
|
|
218
|
+
),
|
|
219
|
+
rgba(59, 60, 63, 0.8);`
|
|
220
|
+
},
|
|
221
|
+
qnACard: {
|
|
222
|
+
voteButtonIcon: true,
|
|
223
|
+
background: "#000",
|
|
224
|
+
textColor: "#F2F2F3",
|
|
225
|
+
footerFlexDirection: "row-reverse",
|
|
226
|
+
buttonVariant: "dark",
|
|
227
|
+
scrollbar: {
|
|
228
|
+
width: "2px"
|
|
229
|
+
},
|
|
230
|
+
scrollbarThumb: {
|
|
231
|
+
background: "#858687"
|
|
232
|
+
},
|
|
233
|
+
scrollbarTrack: {
|
|
234
|
+
boxShadow: "inset 0 0 5px #373942",
|
|
235
|
+
borderRadius: "10px"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
toolTip: {
|
|
239
|
+
textColor: "#dbdbdc",
|
|
240
|
+
toolTipTextColor: "#fff",
|
|
241
|
+
toolTipBackgroundColor: "#343536",
|
|
242
|
+
textTransform: "uppercase"
|
|
243
|
+
},
|
|
244
|
+
formLabel: {
|
|
245
|
+
labelColor: "#fff",
|
|
246
|
+
requiredStarColor: "#fff"
|
|
247
|
+
},
|
|
248
|
+
selectBox: {
|
|
249
|
+
textColor: "#FFF",
|
|
250
|
+
selectedTextColor: "#FFF",
|
|
251
|
+
disabledText: "#76767D",
|
|
252
|
+
backgroundColor: "#131414",
|
|
253
|
+
hover: "#212324",
|
|
254
|
+
width: "20px",
|
|
255
|
+
height: "20px",
|
|
256
|
+
topOpen: "14px",
|
|
257
|
+
topClosed: "14px",
|
|
258
|
+
right: "15px",
|
|
259
|
+
selectBoxIconArrow: selectBoxIconArrow,
|
|
260
|
+
selectBoxIconArrowLight: selectBoxIconArrowLight,
|
|
261
|
+
borderColor: "#343536",
|
|
262
|
+
errorBorderColor: "#F25054"
|
|
263
|
+
},
|
|
264
|
+
modal: {
|
|
265
|
+
top: {
|
|
266
|
+
text: "#fff",
|
|
267
|
+
background: "#131414",
|
|
268
|
+
titleColor: "#fff",
|
|
269
|
+
mobileAlignCenter: true
|
|
270
|
+
},
|
|
271
|
+
bottom: {
|
|
272
|
+
text: "#fff",
|
|
273
|
+
background: "#131414"
|
|
274
|
+
},
|
|
275
|
+
greyText: "#9194A0",
|
|
276
|
+
selectedItem: "#00ACFF",
|
|
277
|
+
topBarColor: "#343536",
|
|
278
|
+
closeButtonMargin: "12px",
|
|
279
|
+
closeButtonColor: { desktop: "#fff", mobile: "#fff" },
|
|
280
|
+
categoryVariant: "dark"
|
|
281
|
+
},
|
|
282
|
+
notificationToast: {
|
|
283
|
+
background: "#fff",
|
|
284
|
+
footerLinkColor: "#3A9EF8",
|
|
285
|
+
closeButtonColor: { desktop: "#000", mobile: "#000" }
|
|
286
|
+
},
|
|
287
|
+
modalPlayer: {
|
|
288
|
+
closeButtonColor: { desktop: "#000", mobile: "#fff" }
|
|
289
|
+
},
|
|
290
|
+
modalSpeaker: {
|
|
291
|
+
nameHeadingVariant: "h1",
|
|
292
|
+
isJobTitleHeading: true,
|
|
293
|
+
aboutMeHeadingVariant: "h1",
|
|
294
|
+
textVariant: "large",
|
|
295
|
+
avatarSize: "large",
|
|
296
|
+
socialIconSpacing: "large",
|
|
297
|
+
hasMoreSpace: true,
|
|
298
|
+
socialIconColor: "white",
|
|
299
|
+
jobCompanySeperateLines: false
|
|
300
|
+
},
|
|
301
|
+
modalQuestion: {
|
|
302
|
+
padding: "0px 200px",
|
|
303
|
+
margin: "0 -70px",
|
|
304
|
+
buttonFullWidth: true,
|
|
305
|
+
questionLength: 250
|
|
306
|
+
},
|
|
307
|
+
modalQuestionSent: {
|
|
308
|
+
padding: "0px 200px",
|
|
309
|
+
margin: "0 -70px",
|
|
310
|
+
buttonFullWidth: true
|
|
311
|
+
},
|
|
312
|
+
modalShareHug: {
|
|
313
|
+
padding: "0px 200px",
|
|
314
|
+
margin: "0 -70px",
|
|
315
|
+
headingMargin: "0px 0 24px",
|
|
316
|
+
paddingModal: "56px 80px 140px"
|
|
317
|
+
},
|
|
318
|
+
modalVodDetail: {
|
|
319
|
+
topTitle: true,
|
|
320
|
+
title: {
|
|
321
|
+
textColor: "#fff",
|
|
322
|
+
background: "#131414",
|
|
323
|
+
categoryColor: "#76767D",
|
|
324
|
+
centered: true,
|
|
325
|
+
hasMoreSpace: true
|
|
326
|
+
},
|
|
327
|
+
description: {
|
|
328
|
+
headingVariant: "h1",
|
|
329
|
+
textVariant: "large"
|
|
330
|
+
},
|
|
331
|
+
speakers: {
|
|
332
|
+
headingVariant: "h1",
|
|
333
|
+
textColor: "#1D1E1F",
|
|
334
|
+
background: "#fff",
|
|
335
|
+
jobTitleColor: "#343536",
|
|
336
|
+
jobTitleSpacing: true,
|
|
337
|
+
socialIconColor: "lightgrey",
|
|
338
|
+
horizontalRulerColor: "#BFBFC0",
|
|
339
|
+
isJobTitleHeading: false,
|
|
340
|
+
avatarSize: "medium",
|
|
341
|
+
direction: "horizontal",
|
|
342
|
+
mobileAlignCenter: false,
|
|
343
|
+
mobileAvatarFullWidth: true
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
vodTop: {
|
|
347
|
+
titleHeadingVariant: "h3",
|
|
348
|
+
isLight: false,
|
|
349
|
+
showCategories: true,
|
|
350
|
+
showViewAllVideos: true,
|
|
351
|
+
hasMoreSpace: true
|
|
352
|
+
},
|
|
353
|
+
vodOverview: {
|
|
354
|
+
categoryVariant: "dark",
|
|
355
|
+
useCheckboxes: true,
|
|
356
|
+
titleHeadingVariant: "h3",
|
|
357
|
+
showCategories: true,
|
|
358
|
+
showFilter: true,
|
|
359
|
+
marginLeftWhenMobile: "auto"
|
|
360
|
+
},
|
|
361
|
+
vodDetail: {
|
|
362
|
+
topTitleColor: "#9194a0",
|
|
363
|
+
dateTimeColor: "#b6b8c2"
|
|
364
|
+
},
|
|
365
|
+
partnerOverview: {
|
|
366
|
+
showFilter: false,
|
|
367
|
+
showPromoOverview: false,
|
|
368
|
+
promoOverviewColor: "#FFF"
|
|
369
|
+
},
|
|
370
|
+
videoThumb: {
|
|
371
|
+
hoverEffect: "brighten",
|
|
372
|
+
titleColor: "#fff"
|
|
373
|
+
},
|
|
374
|
+
LiveThumb: {
|
|
375
|
+
textColor: "#fff"
|
|
376
|
+
},
|
|
377
|
+
schedule: {
|
|
378
|
+
background: "#131414",
|
|
379
|
+
textColor: "#fff",
|
|
380
|
+
trackTitleColor: "#fff",
|
|
381
|
+
timeLineTextColor: "#fff",
|
|
382
|
+
rowDividerColor: "#1D1E23",
|
|
383
|
+
dayColor: "#9d9d9e",
|
|
384
|
+
dayActiveColor: "#fff",
|
|
385
|
+
dayBorderColor: "#76767d",
|
|
386
|
+
trackColor: "#9D9D9E",
|
|
387
|
+
trackActiveColor: "#fff"
|
|
388
|
+
},
|
|
389
|
+
sessionCard: {
|
|
390
|
+
background: "#212324",
|
|
391
|
+
backgroundHover: "#292b2c",
|
|
392
|
+
categoryVariant: "light",
|
|
393
|
+
categoryTextColor: "#9D9D9E",
|
|
394
|
+
dateColor: "#f2f2f3",
|
|
395
|
+
titleColor: "#fff",
|
|
396
|
+
speakerColor: "#f2f3f3",
|
|
397
|
+
progressBarBackground: "#DC477D",
|
|
398
|
+
progressBar: "#343536",
|
|
399
|
+
heading: {
|
|
400
|
+
fontSize: "18px",
|
|
401
|
+
lineHeight: "24px"
|
|
402
|
+
},
|
|
403
|
+
processingTextColor: "#BDBEC2"
|
|
404
|
+
},
|
|
405
|
+
navigation: {
|
|
406
|
+
textColor: "#FFF",
|
|
407
|
+
backgroundColor: "#000",
|
|
408
|
+
navLink: "#76767D",
|
|
409
|
+
profileDropdown: {
|
|
410
|
+
textColor: "#FFF",
|
|
411
|
+
backgroundColor: "#131414",
|
|
412
|
+
backgroundColorHover: "#212324"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
faqToggle: {
|
|
416
|
+
textColor: "#FFF"
|
|
417
|
+
},
|
|
418
|
+
filter: {
|
|
419
|
+
textColor: "#F2F2F3",
|
|
420
|
+
background: "#000"
|
|
421
|
+
},
|
|
422
|
+
subMenu: {
|
|
423
|
+
textColor: "#FFF",
|
|
424
|
+
backgroundColor: "#000",
|
|
425
|
+
navLink: "#76767D"
|
|
426
|
+
},
|
|
427
|
+
trackFilter: {
|
|
428
|
+
textColor: "#DCDDE0",
|
|
429
|
+
navLink: "#9D9D9E"
|
|
430
|
+
},
|
|
431
|
+
scheduleSubMenu: {
|
|
432
|
+
backgroundColor: "#000"
|
|
433
|
+
},
|
|
434
|
+
sidePanel: {
|
|
435
|
+
textColor: "#fff",
|
|
436
|
+
background: "#000",
|
|
437
|
+
width: "590px",
|
|
438
|
+
backdropFilter: "none"
|
|
439
|
+
},
|
|
440
|
+
dateTime: {
|
|
441
|
+
useSuffixedDay: true
|
|
442
|
+
},
|
|
443
|
+
meetupSignups: {
|
|
444
|
+
textColor: "#727274",
|
|
445
|
+
textColorLastPic: "#fff",
|
|
446
|
+
pictureBackground: "#343536",
|
|
447
|
+
backgroundColor: "#000"
|
|
448
|
+
},
|
|
449
|
+
sessionQnA: {
|
|
450
|
+
textColor: "#fff",
|
|
451
|
+
background: "#212324"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
socialIcons: {
|
|
455
|
+
lightgrey: {
|
|
456
|
+
linkedin: linkedin_lightgrey,
|
|
457
|
+
facebook: facebook_lightgrey,
|
|
458
|
+
github: github_lightgrey,
|
|
459
|
+
instagram: instagram_lightgrey,
|
|
460
|
+
twitter: twitter_lightgrey,
|
|
461
|
+
website: website_lightgrey,
|
|
462
|
+
youtube: youtube_lightgrey
|
|
463
|
+
},
|
|
464
|
+
white: {
|
|
465
|
+
linkedin: linkedin_white,
|
|
466
|
+
facebook: facebook_white,
|
|
467
|
+
github: github_white,
|
|
468
|
+
instagram: instagram_white,
|
|
469
|
+
twitter: twitter_white,
|
|
470
|
+
website: website_white
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
fonts: {
|
|
474
|
+
default: "ManamergeGilmer, sans-serif"
|
|
475
|
+
},
|
|
476
|
+
borderRadius: {
|
|
477
|
+
button: "0",
|
|
478
|
+
input: "0",
|
|
479
|
+
countdown: "20px"
|
|
480
|
+
},
|
|
481
|
+
checkbox,
|
|
482
|
+
combination: {
|
|
483
|
+
light: {},
|
|
484
|
+
dark: {},
|
|
485
|
+
pulldown: {},
|
|
486
|
+
selected: {
|
|
487
|
+
background: "#131414",
|
|
488
|
+
text: "#ffffff"
|
|
489
|
+
},
|
|
490
|
+
error: {
|
|
491
|
+
text: "#F25054",
|
|
492
|
+
background: "#131414"
|
|
493
|
+
},
|
|
494
|
+
success: {},
|
|
495
|
+
header: {
|
|
496
|
+
text: "#f2f3f3",
|
|
497
|
+
background: "#131414",
|
|
498
|
+
orientation: "horizontal"
|
|
499
|
+
},
|
|
500
|
+
shade: {},
|
|
501
|
+
hover: {},
|
|
502
|
+
recommended: {}
|
|
503
|
+
},
|
|
504
|
+
sponsorMeeting: {
|
|
505
|
+
descriptionBackground: "#F3F3F3",
|
|
506
|
+
descriptionText: "#4E5054"
|
|
507
|
+
},
|
|
508
|
+
menu: {
|
|
509
|
+
light: {
|
|
510
|
+
background: "#FFFFFF",
|
|
511
|
+
text: "#333"
|
|
512
|
+
},
|
|
513
|
+
dark: {
|
|
514
|
+
background: "#333",
|
|
515
|
+
text: "#ffffff"
|
|
516
|
+
},
|
|
517
|
+
mobile: {
|
|
518
|
+
background: "#000",
|
|
519
|
+
text: "#FFFFFF",
|
|
520
|
+
textActive: "#FFFFFF"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
background: {
|
|
524
|
+
default: "#f4f4f4"
|
|
525
|
+
},
|
|
526
|
+
|
|
527
|
+
category: {
|
|
528
|
+
textLight: "#000",
|
|
529
|
+
textDark: "#000",
|
|
530
|
+
light: "#FFF",
|
|
531
|
+
dark: "#76767D",
|
|
532
|
+
hover: "#000",
|
|
533
|
+
active: "#000",
|
|
534
|
+
gap: "16px"
|
|
535
|
+
},
|
|
536
|
+
rowBackground: {
|
|
537
|
+
default: {
|
|
538
|
+
text: "inherit",
|
|
539
|
+
desktop: "transparent",
|
|
540
|
+
tablet: "transparent",
|
|
541
|
+
mobile: "transparent"
|
|
542
|
+
},
|
|
543
|
+
light: {
|
|
544
|
+
text: "#333",
|
|
545
|
+
desktop: "#FFF",
|
|
546
|
+
tablet: "#FFF",
|
|
547
|
+
mobile: "#FFF"
|
|
548
|
+
},
|
|
549
|
+
image1: {
|
|
550
|
+
text: "#FFF",
|
|
551
|
+
desktop: `#131414`,
|
|
552
|
+
tablet: `#131414`,
|
|
553
|
+
mobile: `#131414`
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
images: {
|
|
557
|
+
navBarLogoDark,
|
|
558
|
+
footerLogo: {}
|
|
559
|
+
},
|
|
560
|
+
ratingPopup: {
|
|
561
|
+
lowRating: "#ff0000",
|
|
562
|
+
mediumRating: "#FECB00",
|
|
563
|
+
highRating: "#427D00",
|
|
564
|
+
backgroundHover: "#EBEBEB",
|
|
565
|
+
ratingText: "#4A4D4E"
|
|
566
|
+
},
|
|
567
|
+
icons: {
|
|
568
|
+
arrowDown,
|
|
569
|
+
// play: playIcon,
|
|
570
|
+
navigationBack: navigationBackIcon,
|
|
571
|
+
navigationForward: navigationForwardIcon,
|
|
572
|
+
close: closeIcon,
|
|
573
|
+
delete: deleteIcon,
|
|
574
|
+
calendar: calendarIcon,
|
|
575
|
+
addToCalendar: addToCalendarIcon,
|
|
576
|
+
remove: trashIcon,
|
|
577
|
+
plus: plusIcon,
|
|
578
|
+
added: addedIcon,
|
|
579
|
+
info: infoIcon,
|
|
580
|
+
sectionLogoIcon: SectionLogoIcon,
|
|
581
|
+
defaultAvatar,
|
|
582
|
+
notificationArrow
|
|
583
|
+
},
|
|
584
|
+
iconColors: {
|
|
585
|
+
dark: "#212324",
|
|
586
|
+
noColor: "#131414;"
|
|
587
|
+
},
|
|
588
|
+
hero: {},
|
|
589
|
+
// header: {
|
|
590
|
+
// headerVariant: "h3",
|
|
591
|
+
// textVariant: "medium",
|
|
592
|
+
// buttonHeader: "secondary",
|
|
593
|
+
// headerButtonPosition: "right"
|
|
594
|
+
// },
|
|
595
|
+
pagination: {
|
|
596
|
+
buttonVariant: "icon-right",
|
|
597
|
+
iconRight: "rightArrow",
|
|
598
|
+
iconLeft: "leftArrow"
|
|
599
|
+
},
|
|
600
|
+
meetup: {
|
|
601
|
+
buttonVariant: "secondary-grey"
|
|
602
|
+
},
|
|
603
|
+
player_cta: {},
|
|
604
|
+
profile: {
|
|
605
|
+
card: {}
|
|
606
|
+
},
|
|
607
|
+
notifications: {
|
|
608
|
+
toast: {
|
|
609
|
+
buttonVariant: "secondary-borderless"
|
|
610
|
+
},
|
|
611
|
+
// notificationsTheme,
|
|
612
|
+
textColor: "#BDBEC2",
|
|
613
|
+
descriptionFontSize: "15px",
|
|
614
|
+
background: "#131414"
|
|
615
|
+
},
|
|
616
|
+
chat: {
|
|
617
|
+
// chatTheme,
|
|
618
|
+
// customEmojis,
|
|
619
|
+
pickerInline: true,
|
|
620
|
+
inputChat: {
|
|
621
|
+
background: "#212324",
|
|
622
|
+
border: "#212324"
|
|
623
|
+
},
|
|
624
|
+
chatList: {
|
|
625
|
+
scrollbar: {
|
|
626
|
+
width: "2px"
|
|
627
|
+
},
|
|
628
|
+
scrollbarThumb: {
|
|
629
|
+
background: "#858687"
|
|
630
|
+
},
|
|
631
|
+
scrollbarTrack: {
|
|
632
|
+
boxShadow: "inset 0 0 5px #373942",
|
|
633
|
+
borderRadius: "10px"
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
// filterListTheme,
|
|
638
|
+
partners: {},
|
|
639
|
+
|
|
640
|
+
maxWidth: "2600px",
|
|
641
|
+
navigationFontSize: "15px",
|
|
642
|
+
vodRowMaxHight: "800px",
|
|
643
|
+
inputField: {
|
|
644
|
+
height: "52px"
|
|
645
|
+
}
|
|
646
|
+
};
|
|
647
|
+
|
|
648
|
+
export default manamergeTheme;
|