@latte-macchiat-io/latte-vanilla-components 0.0.201 → 0.0.203

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 (71) hide show
  1. package/package.json +1 -1
  2. package/src/components/Actions/index.tsx +3 -6
  3. package/src/components/Actions/stories.tsx +7 -1
  4. package/src/components/Button/export.tsx +2 -5
  5. package/src/components/Button/index.tsx +19 -14
  6. package/src/components/Button/stories.tsx +12 -219
  7. package/src/components/Button/theme.ts +149 -0
  8. package/src/components/Carousel/export.tsx +2 -4
  9. package/src/components/Carousel/index.tsx +159 -191
  10. package/src/components/Carousel/theme.ts +102 -0
  11. package/src/components/Columns/export.tsx +2 -5
  12. package/src/components/Columns/index.tsx +10 -15
  13. package/src/components/Columns/styles.css.ts +3 -1
  14. package/src/components/Columns/theme.ts +24 -0
  15. package/src/components/ConsentCookie/export.tsx +2 -4
  16. package/src/components/ConsentCookie/index.tsx +104 -0
  17. package/src/components/Footer/export.tsx +1 -4
  18. package/src/components/Footer/index.tsx +1 -8
  19. package/src/components/Footer/theme.ts +51 -0
  20. package/src/components/Form/export.tsx +17 -3
  21. package/src/components/Header/export.tsx +1 -4
  22. package/src/components/Header/index.tsx +19 -35
  23. package/src/components/Header/styles.css.ts +2 -2
  24. package/src/components/Header/theme.ts +51 -0
  25. package/src/components/Heading/export.tsx +1 -0
  26. package/src/components/Heading/index.tsx +3 -8
  27. package/src/components/Icon/export.tsx +1 -4
  28. package/src/components/Icon/index.tsx +4 -5
  29. package/src/components/Icon/theme.ts +17 -0
  30. package/src/components/KeyNumber/export.tsx +2 -4
  31. package/src/components/KeyNumber/index.tsx +3 -3
  32. package/src/components/KeyNumber/theme.ts +22 -0
  33. package/src/components/LanguageSwitcher/export.tsx +2 -4
  34. package/src/components/LanguageSwitcher/index.tsx +37 -63
  35. package/src/components/Logo/export.tsx +1 -4
  36. package/src/components/Logo/index.tsx +2 -5
  37. package/src/components/Logo/styles.css.ts +2 -2
  38. package/src/components/Main/export.tsx +1 -4
  39. package/src/components/Main/index.tsx +1 -9
  40. package/src/components/Main/theme.ts +19 -0
  41. package/src/components/Modal/export.tsx +2 -4
  42. package/src/components/Modal/index.tsx +4 -5
  43. package/src/components/Modal/theme.ts +31 -0
  44. package/src/components/Nav/export.tsx +1 -4
  45. package/src/components/Nav/index.tsx +6 -14
  46. package/src/components/Nav/styles.css.ts +3 -1
  47. package/src/components/Nav/theme.ts +24 -0
  48. package/src/components/NavLegal/export.tsx +1 -4
  49. package/src/components/NavLegal/index.tsx +1 -7
  50. package/src/components/NavLegal/theme.ts +24 -0
  51. package/src/components/NavSocial/export.tsx +2 -5
  52. package/src/components/NavSocial/index.tsx +14 -18
  53. package/src/components/NavSocial/theme.ts +34 -0
  54. package/src/components/Section/export.tsx +2 -6
  55. package/src/components/Section/index.tsx +4 -8
  56. package/src/components/Section/theme.ts +40 -0
  57. package/src/components/Video/export.tsx +2 -2
  58. package/src/components/Video/index.tsx +78 -83
  59. package/src/components/Video/theme.ts +104 -0
  60. package/src/index.ts +19 -51
  61. package/src/theme/baseThemeValues.ts +46 -965
  62. package/src/theme/contract.css.ts +0 -16
  63. package/src/utils/useWindowSize.ts +29 -0
  64. package/src/components/ConsentCookie/ConsentCookie.tsx +0 -200
  65. package/src/components/Header/HeaderOverlay/index.tsx +0 -32
  66. package/src/components/Header/HeaderOverlay/styles.css.ts +0 -33
  67. package/src/components/Header/ToggleNav/index.tsx +0 -29
  68. package/src/components/Header/ToggleNav/styles.css.ts +0 -40
  69. package/src/components/ThemeTest/ThemeTest.css.ts +0 -11
  70. package/src/components/ThemeTest/ThemeTest.tsx +0 -12
  71. /package/src/components/ConsentCookie/{ConsentCookie.css.ts → styles.css.ts} +0 -0
@@ -0,0 +1,31 @@
1
+ const themeModalBase = {
2
+ modal: {
3
+ border: 'none',
4
+ overlayBlur: '0',
5
+ borderRadius: '30px',
6
+
7
+ closeButtonRightPosition: { mobile: '15px', sm: '15px', md: '30px', lg: '30px', xl: '50px', '2xl': '50px' },
8
+ closeButtonTopPosition: { mobile: '15px', sm: '15px', md: '30px', lg: '30px', xl: '50px', '2xl': '50px' },
9
+
10
+ gap: { mobile: '15px', sm: '15px', md: '30px', lg: '30px', xl: '50px', '2xl': '50px' },
11
+ width: { mobile: '100%', sm: '200px', md: '600px', lg: '600px', xl: '800px', '2xl': '800px' },
12
+ paddingTop: { mobile: '15px', sm: '15px', md: '30px', lg: '30px', xl: '50px', '2xl': '50px' },
13
+ paddingBottom: { mobile: '15px', sm: '15px', md: '30px', lg: '30px', xl: '50px', '2xl': '50px' },
14
+ },
15
+ };
16
+
17
+ export const themeModalLight = {
18
+ modal: {
19
+ ...themeModalBase.modal,
20
+ backgroundColor: '#000000',
21
+ overlayBackgroundColor: '#000000',
22
+ },
23
+ };
24
+
25
+ export const themeModalDark = {
26
+ modal: {
27
+ ...themeModalBase.modal,
28
+ backgroundColor: '#000000',
29
+ overlayBackgroundColor: '#000000',
30
+ },
31
+ };
@@ -1,4 +1 @@
1
- // export { Nav } from '.';
2
- // export type { NavProps } from '.';
3
-
4
- // export { styles as NavStyles } from './styles.css';
1
+ export { Nav, type NavProps } from './';
@@ -1,20 +1,12 @@
1
1
  'use client';
2
2
 
3
3
  import { clsx } from 'clsx';
4
- import { forwardRef } from 'react';
5
4
 
6
- import { navRecipe } from './styles.css';
5
+ import { navRecipe, NavVariants } from './styles.css';
7
6
 
8
- export type NavProps = React.HTMLAttributes<HTMLDivElement> & {
9
- css?: string;
10
- direction?: 'column' | 'row';
11
- children: React.ReactNode;
12
- };
7
+ export type NavProps = React.HTMLAttributes<HTMLDivElement> &
8
+ NavVariants & {
9
+ children: React.ReactNode;
10
+ };
13
11
 
14
- export const Nav = forwardRef<HTMLDivElement, NavProps>(({ children, css, className, direction = 'column' }, ref) => {
15
- return (
16
- <div ref={ref} className={clsx(navRecipe({ direction }), css, className)}>
17
- {children}
18
- </div>
19
- );
20
- });
12
+ export const Nav = ({ children, className, direction }: NavProps) => <div className={clsx(navRecipe({ direction }), className)}>{children}</div>;
@@ -1,4 +1,4 @@
1
- import { recipe } from '@vanilla-extract/recipes';
1
+ import { recipe, RecipeVariants } from '@vanilla-extract/recipes';
2
2
 
3
3
  import { themeContract } from '../../theme/contract.css';
4
4
  import { generateResponsiveMedia } from '../../utils/generateResponsiveMedia';
@@ -28,3 +28,5 @@ export const navRecipe = recipe({
28
28
  direction: 'column',
29
29
  },
30
30
  });
31
+
32
+ export type NavVariants = RecipeVariants<typeof navRecipe>;
@@ -0,0 +1,24 @@
1
+ const themeNavBase = {
2
+ nav: {
3
+ gap: {
4
+ mobile: '5px',
5
+ sm: '5px',
6
+ md: '10px',
7
+ lg: '10px',
8
+ xl: '15px',
9
+ '2xl': '15px',
10
+ },
11
+ },
12
+ };
13
+
14
+ export const themeNavLight = {
15
+ nav: {
16
+ ...themeNavBase.nav,
17
+ },
18
+ };
19
+
20
+ export const themeNavDark = {
21
+ nav: {
22
+ ...themeNavBase.nav,
23
+ },
24
+ };
@@ -1,4 +1 @@
1
- // export { NavLegal } from '.';
2
- // export type { NavLegalProps } from '.';
3
-
4
- // export { styles as NavLegalStyles } from './styles.css';
1
+ export { NavLegal, type NavLegalProps } from './';
@@ -1,15 +1,9 @@
1
1
  import { clsx } from 'clsx';
2
- import { forwardRef } from 'react';
3
2
 
4
3
  import { navLegalRecipe } from './styles.css';
5
4
 
6
5
  export type NavLegalProps = React.HTMLAttributes<HTMLDivElement> & {
7
- css?: string;
8
6
  children: React.ReactNode;
9
7
  };
10
8
 
11
- export const NavLegal = forwardRef<HTMLDivElement, NavLegalProps>(({ css, className, children }, ref) => (
12
- <div ref={ref} className={clsx(navLegalRecipe(), css, className)}>
13
- {children}
14
- </div>
15
- ));
9
+ export const NavLegal = ({ className, children }: NavLegalProps) => <div className={clsx(navLegalRecipe(), className)}>{children}</div>;
@@ -0,0 +1,24 @@
1
+ const themeNavLegalBase = {
2
+ navLegal: {
3
+ gap: {
4
+ mobile: '5px',
5
+ sm: '5px',
6
+ md: '10px',
7
+ lg: '10px',
8
+ xl: '15px',
9
+ '2xl': '15px',
10
+ },
11
+ },
12
+ };
13
+
14
+ export const themeNavLegalLight = {
15
+ navLegal: {
16
+ ...themeNavLegalBase.navLegal,
17
+ },
18
+ };
19
+
20
+ export const themeNavLegalDark = {
21
+ navLegal: {
22
+ ...themeNavLegalBase.navLegal,
23
+ },
24
+ };
@@ -1,5 +1,2 @@
1
- // export { NavSocial } from '.';
2
- // export type { NavSocialProps } from '.';
3
-
4
- // export type { Social as SocialType } from './types';
5
- // export { styles as NavSocialStyles } from './styles.css';
1
+ export { NavSocial, type NavSocialProps } from './';
2
+ export { type Social } from './types';
@@ -1,5 +1,4 @@
1
1
  import { clsx } from 'clsx';
2
- import { forwardRef } from 'react';
3
2
 
4
3
  import { navSocialLink, navSocialRecipe } from './styles.css';
5
4
  import { Social } from './types';
@@ -8,23 +7,20 @@ import icons from '../Icon/path';
8
7
 
9
8
  export type NavSocialProps = React.HTMLAttributes<HTMLDivElement> & {
10
9
  navSocial: { name: Social; link: string }[];
11
- css?: string;
12
10
  };
13
11
 
14
- export const NavSocial = forwardRef<HTMLDivElement, NavSocialProps>(({ navSocial, css, className }, ref) => {
15
- return (
16
- <div ref={ref} className={clsx(navSocialRecipe(), css, className)}>
17
- {navSocial?.map(({ name, link }, index) => {
18
- const capitalized = name[0].toUpperCase() + name.slice(1);
12
+ export const NavSocial = ({ navSocial, className }: NavSocialProps) => (
13
+ <div className={clsx(navSocialRecipe(), className)}>
14
+ {navSocial?.map(({ name, link }, index) => {
15
+ const capitalized = name[0].toUpperCase() + name.slice(1);
19
16
 
20
- return (
21
- <div key={`navSocialItem-${index}`} className={navSocialLink}>
22
- <a target="_blank" rel="noopener noreferrer" aria-label={name} href={link}>
23
- <Icon icon={`social${capitalized}` as keyof typeof icons} />
24
- </a>
25
- </div>
26
- );
27
- })}
28
- </div>
29
- );
30
- });
17
+ return (
18
+ <div key={`navSocialItem-${index}`} className={navSocialLink}>
19
+ <a target="_blank" rel="noopener noreferrer" aria-label={name} href={link}>
20
+ <Icon icon={`social${capitalized}` as keyof typeof icons} />
21
+ </a>
22
+ </div>
23
+ );
24
+ })}
25
+ </div>
26
+ );
@@ -0,0 +1,34 @@
1
+ const themeNavSocialBase = {
2
+ navSocial: {
3
+ transition: 'all 0.5s ease-in-out',
4
+
5
+ gap: {
6
+ mobile: '5px',
7
+ sm: '5px',
8
+ md: '10px',
9
+ lg: '10px',
10
+ xl: '15px',
11
+ '2xl': '15px',
12
+ },
13
+ },
14
+ };
15
+
16
+ export const themeNavSocialLight = {
17
+ navSocial: {
18
+ ...themeNavSocialBase.navSocial,
19
+ colors: {
20
+ defaultIcon: '#FF7377',
21
+ defaultIconHover: '#000000',
22
+ },
23
+ },
24
+ };
25
+
26
+ export const themeNavSocialDark = {
27
+ navSocial: {
28
+ ...themeNavSocialBase.navSocial,
29
+ colors: {
30
+ defaultIcon: '#FF7377',
31
+ defaultIconHover: '#000000',
32
+ },
33
+ },
34
+ };
@@ -1,6 +1,2 @@
1
- // export { Section } from '.';
2
- // export type { SectionProps } from '.';
3
- // export { Align as SectionAlign } from './types';
4
-
5
- // export * as allStyles from './styles.css';
6
- // export { styles as SectionStyles } from './styles.css';
1
+ export { Section, type SectionProps } from './';
2
+ export { type SectionVariants } from './styles.css';
@@ -1,18 +1,14 @@
1
1
  import { clsx } from 'clsx';
2
- import { forwardRef } from 'react';
3
2
 
4
3
  import { sectionContent, sectionRecipe, type SectionVariants } from './styles.css';
5
4
 
6
5
  export type SectionProps = React.HTMLAttributes<HTMLDivElement> &
7
6
  SectionVariants & {
8
- css?: string;
9
7
  children: React.ReactNode;
10
8
  };
11
9
 
12
- export const Section = forwardRef<HTMLElement, SectionProps>(
13
- ({ align, isDark, isFullHeight, withPaddingTop, withPaddingBottom, css, className, children }, ref) => (
14
- <section ref={ref} className={clsx(sectionRecipe({ align, isDark, isFullHeight, withPaddingTop, withPaddingBottom }), css, className)}>
15
- <div className={sectionContent}>{children}</div>
16
- </section>
17
- )
10
+ export const Section = ({ align, isDark, isFullHeight, withPaddingTop, withPaddingBottom, className, children }: SectionProps) => (
11
+ <section className={clsx(sectionRecipe({ align, isDark, isFullHeight, withPaddingTop, withPaddingBottom }), className)}>
12
+ <div className={sectionContent}>{children}</div>
13
+ </section>
18
14
  );
@@ -0,0 +1,40 @@
1
+ const themeSectionBase = {
2
+ section: {
3
+ gap: {
4
+ mobile: '15px',
5
+ sm: '15px',
6
+ md: '30px',
7
+ lg: '30px',
8
+ xl: '50px',
9
+ '2xl': '50px',
10
+ },
11
+ paddingTop: {
12
+ mobile: '15px',
13
+ sm: '15px',
14
+ md: '30px',
15
+ lg: '30px',
16
+ xl: '50px',
17
+ '2xl': '50px',
18
+ },
19
+ paddingBottom: {
20
+ mobile: '15px',
21
+ sm: '15px',
22
+ md: '30px',
23
+ lg: '30px',
24
+ xl: '50px',
25
+ '2xl': '50px',
26
+ },
27
+ },
28
+ };
29
+
30
+ export const themeSectionLight = {
31
+ section: {
32
+ ...themeSectionBase.section,
33
+ },
34
+ };
35
+
36
+ export const themeSectionDark = {
37
+ section: {
38
+ ...themeSectionBase.section,
39
+ },
40
+ };
@@ -1,2 +1,2 @@
1
- // export { Video } from '.';
2
- // export type { VideoProps } from '.';
1
+ export { Video, type VideoProps } from './';
2
+ export { type VideoVariants } from './styles.css';
@@ -1,7 +1,8 @@
1
1
  'use client';
2
2
 
3
3
  import { clsx } from 'clsx';
4
- import { forwardRef, useEffect, useRef, useState } from 'react';
4
+ import { useEffect, useRef, useState } from 'react';
5
+
5
6
  import {
6
7
  closeButton,
7
8
  pauseButton,
@@ -29,85 +30,79 @@ export type VideoProps = React.HTMLAttributes<HTMLDivElement> &
29
30
  onEnded?: () => void;
30
31
  };
31
32
 
32
- export const Video = forwardRef<HTMLDivElement, VideoProps>(
33
- (
34
- {
35
- video,
36
- poster,
37
- isAutoPlay = false,
38
- startMuted = false,
39
- showControls = false,
40
- hidePlayButton = false,
41
- isPlayingFullScreen = false,
42
- onPlay,
43
- onClose,
44
- onEnded,
45
- size,
46
- css,
47
- className,
48
- },
49
- ref
50
- ) => {
51
- const videoRef = useRef<HTMLVideoElement>(null);
52
- const [isPlaying, setIsPlaying] = useState(false);
53
- const [isMuted, setIsMuted] = useState(isAutoPlay || startMuted);
54
-
55
- const playVideo = () => {
56
- onPlay?.();
57
- videoRef.current?.play();
58
- setIsPlaying(true);
59
- };
60
-
61
- const closeVideo = () => {
62
- onClose?.();
63
- videoRef.current?.pause();
64
- setIsPlaying(false);
65
- };
66
-
67
- const pauseVideo = () => {
68
- videoRef.current?.pause();
69
- setIsPlaying(false);
70
- };
71
-
72
- const toggleMutedVideo = () => {
73
- const newIsMuted = !isMuted;
74
- setIsMuted(newIsMuted);
75
- if (videoRef.current) videoRef.current.muted = newIsMuted;
76
- };
77
-
78
- const handleVideoEnded = () => {
79
- onEnded?.();
80
- closeVideo();
81
- };
82
-
83
- useEffect(() => {
84
- if (videoRef.current) videoRef.current.muted = isMuted;
85
- }, [isMuted]);
86
-
87
- return (
88
- <div ref={ref} className={clsx(videoRecipe({ size }), css, className)}>
89
- <video ref={videoRef} className={videoElement} playsInline muted={isMuted} autoPlay={isAutoPlay} onEnded={handleVideoEnded}>
90
- <source src={video} type="video/mp4" />
91
- </video>
92
-
93
- {poster && (
94
- <div className={videoPoster} data-playing={isPlaying}>
95
- <img src={poster} alt="Video poster" className={posterImage} />
96
- </div>
97
- )}
98
-
99
- {!hidePlayButton && !isAutoPlay && (
100
- <button className={playButton} data-playing={isPlaying} onClick={playVideo} aria-label="Play video" type="button" />
101
- )}
102
-
103
- {isPlayingFullScreen && <button className={closeButton} onClick={closeVideo} aria-label="Close video" type="button" />}
104
-
105
- {isPlaying && showControls && <button className={pauseButton} onClick={pauseVideo} aria-label="Pause video" type="button" />}
106
-
107
- {showControls && (
108
- <button className={soundButton} onClick={toggleMutedVideo} aria-label={isMuted ? 'Unmute video' : 'Mute video'} type="button" />
109
- )}
110
- </div>
111
- );
112
- }
113
- );
33
+ export const Video = ({
34
+ video,
35
+ poster,
36
+ isAutoPlay = false,
37
+ startMuted = false,
38
+ showControls = false,
39
+ hidePlayButton = false,
40
+ isPlayingFullScreen = false,
41
+ onPlay,
42
+ onClose,
43
+ onEnded,
44
+ size,
45
+ className,
46
+ }: VideoProps) => {
47
+ const videoRef = useRef<HTMLVideoElement>(null);
48
+ const [isPlaying, setIsPlaying] = useState(false);
49
+ const [isMuted, setIsMuted] = useState(isAutoPlay || startMuted);
50
+
51
+ const playVideo = () => {
52
+ onPlay?.();
53
+ videoRef.current?.play();
54
+ setIsPlaying(true);
55
+ };
56
+
57
+ const closeVideo = () => {
58
+ onClose?.();
59
+ videoRef.current?.pause();
60
+ setIsPlaying(false);
61
+ };
62
+
63
+ const pauseVideo = () => {
64
+ videoRef.current?.pause();
65
+ setIsPlaying(false);
66
+ };
67
+
68
+ const toggleMutedVideo = () => {
69
+ const newIsMuted = !isMuted;
70
+ setIsMuted(newIsMuted);
71
+ if (videoRef.current) videoRef.current.muted = newIsMuted;
72
+ };
73
+
74
+ const handleVideoEnded = () => {
75
+ onEnded?.();
76
+ closeVideo();
77
+ };
78
+
79
+ useEffect(() => {
80
+ if (videoRef.current) videoRef.current.muted = isMuted;
81
+ }, [isMuted]);
82
+
83
+ return (
84
+ <div className={clsx(videoRecipe({ size }), className)}>
85
+ <video ref={videoRef} className={videoElement} playsInline muted={isMuted} autoPlay={isAutoPlay} onEnded={handleVideoEnded}>
86
+ <source src={video} type="video/mp4" />
87
+ </video>
88
+
89
+ {poster && (
90
+ <div className={videoPoster} data-playing={isPlaying}>
91
+ <img src={poster} alt="Video poster" className={posterImage} />
92
+ </div>
93
+ )}
94
+
95
+ {!hidePlayButton && !isAutoPlay && (
96
+ <button className={playButton} data-playing={isPlaying} onClick={playVideo} aria-label="Play video" type="button" />
97
+ )}
98
+
99
+ {isPlayingFullScreen && <button className={closeButton} onClick={closeVideo} aria-label="Close video" type="button" />}
100
+
101
+ {isPlaying && showControls && <button className={pauseButton} onClick={pauseVideo} aria-label="Pause video" type="button" />}
102
+
103
+ {showControls && (
104
+ <button className={soundButton} onClick={toggleMutedVideo} aria-label={isMuted ? 'Unmute video' : 'Mute video'} type="button" />
105
+ )}
106
+ </div>
107
+ );
108
+ };
@@ -0,0 +1,104 @@
1
+ const themeVideoBase = {
2
+ video: {
3
+ playButton: {
4
+ border: 'none',
5
+ borderRadius: '1000px',
6
+ iconColor: '#FF7377',
7
+ backgroundColor: '#FF7377',
8
+ width: {
9
+ mobile: '50px',
10
+ sm: '50px',
11
+ md: '50px',
12
+ lg: '75px',
13
+ xl: '75px',
14
+ '2xl': '75px',
15
+ },
16
+ height: {
17
+ mobile: '50px',
18
+ sm: '50px',
19
+ md: '50px',
20
+ lg: '75px',
21
+ xl: '75px',
22
+ '2xl': '75px',
23
+ },
24
+ },
25
+ pauseButton: {
26
+ border: 'none',
27
+ borderRadius: '1000px',
28
+ iconColor: '#FF7377',
29
+ backgroundColor: '#FF7377',
30
+ width: {
31
+ mobile: '50px',
32
+ sm: '50px',
33
+ md: '50px',
34
+ lg: '75px',
35
+ xl: '75px',
36
+ '2xl': '75px',
37
+ },
38
+ height: {
39
+ mobile: '50px',
40
+ sm: '50px',
41
+ md: '50px',
42
+ lg: '75px',
43
+ xl: '75px',
44
+ '2xl': '75px',
45
+ },
46
+ },
47
+ soundButton: {
48
+ border: 'none',
49
+ borderRadius: '1000px',
50
+ iconColor: '#FF7377',
51
+ backgroundColor: '#FF7377',
52
+ width: {
53
+ mobile: '50px',
54
+ sm: '50px',
55
+ md: '50px',
56
+ lg: '75px',
57
+ xl: '75px',
58
+ '2xl': '75px',
59
+ },
60
+ height: {
61
+ mobile: '50px',
62
+ sm: '50px',
63
+ md: '50px',
64
+ lg: '75px',
65
+ xl: '75px',
66
+ '2xl': '75px',
67
+ },
68
+ },
69
+ closeButton: {
70
+ border: 'none',
71
+ borderRadius: '1000px',
72
+ iconColor: '#FF7377',
73
+ backgroundColor: '#FF7377',
74
+ width: {
75
+ mobile: '50px',
76
+ sm: '50px',
77
+ md: '50px',
78
+ lg: '75px',
79
+ xl: '75px',
80
+ '2xl': '75px',
81
+ },
82
+ height: {
83
+ mobile: '50px',
84
+ sm: '50px',
85
+ md: '50px',
86
+ lg: '75px',
87
+ xl: '75px',
88
+ '2xl': '75px',
89
+ },
90
+ },
91
+ },
92
+ };
93
+
94
+ export const themeVideoLight = {
95
+ video: {
96
+ ...themeVideoBase.video,
97
+ },
98
+ };
99
+
100
+ export const themeVideoDark = {
101
+ video: {
102
+ ...themeVideoBase.video,
103
+ },
104
+ };