@shohojdhara/atomix 0.3.3 → 0.3.5
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 +46 -28
- package/dist/atomix.css +15 -9
- package/dist/atomix.css.map +1 -0
- package/dist/atomix.min.css +15108 -11
- package/dist/atomix.min.css.map +1 -0
- package/dist/charts.d.ts +1929 -0
- package/dist/charts.js +6482 -0
- package/dist/charts.js.map +1 -0
- package/dist/core.d.ts +1289 -0
- package/dist/core.js +3357 -0
- package/dist/core.js.map +1 -0
- package/dist/forms.d.ts +1085 -0
- package/dist/forms.js +2450 -0
- package/dist/forms.js.map +1 -0
- package/dist/heavy.d.ts +636 -0
- package/dist/heavy.js +4550 -0
- package/dist/heavy.js.map +1 -0
- package/dist/index.d.ts +5196 -4618
- package/dist/index.esm.js +4240 -2776
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4057 -2571
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/layout.d.ts +300 -0
- package/dist/layout.js +336 -0
- package/dist/layout.js.map +1 -0
- package/dist/theme.d.ts +1992 -0
- package/dist/theme.js +5348 -0
- package/dist/theme.js.map +1 -0
- package/package.json +63 -68
- package/scripts/atomix-cli.js +879 -15
- package/scripts/cli/__tests__/cli-commands.test.js +204 -0
- package/scripts/cli/__tests__/utils.test.js +201 -0
- package/scripts/cli/__tests__/vitest.config.js +26 -0
- package/scripts/cli/interactive-init.js +37 -45
- package/scripts/cli/theme-bridge.js +129 -0
- package/scripts/cli/token-manager.js +32 -7
- package/scripts/cli/utils.js +347 -0
- package/scripts/sync-theme-config.js +22 -22
- package/src/components/Accordion/Accordion.tsx +5 -54
- package/src/components/Accordion/index.ts +1 -1
- package/src/components/Avatar/Avatar.tsx +3 -3
- package/src/components/Badge/Badge.tsx +3 -3
- package/src/components/Breadcrumb/Breadcrumb.tsx +3 -3
- package/src/components/Button/Button.tsx +36 -1
- package/src/components/Card/ElevationCard.tsx +1 -1
- package/src/components/Chart/AnimatedChart.tsx +19 -17
- package/src/components/Chart/AreaChart.tsx +5 -1
- package/src/components/Chart/BarChart.tsx +1 -0
- package/src/components/Chart/BubbleChart.tsx +6 -5
- package/src/components/Chart/ChartToolbar.tsx +1 -0
- package/src/components/Chart/FunnelChart.tsx +1 -1
- package/src/components/Chart/RadarChart.tsx +19 -12
- package/src/components/Chart/ScatterChart.tsx +3 -3
- package/src/components/Chart/TreemapChart.tsx +2 -1
- package/src/components/Chart/WaterfallChart.tsx +0 -1
- package/src/components/Chart/types.ts +12 -2
- package/src/components/Chart/utils.ts +4 -3
- package/src/components/DataTable/DataTable.tsx +3 -3
- package/src/components/Dropdown/Dropdown.tsx +12 -9
- package/src/components/Footer/FooterSection.tsx +3 -3
- package/src/components/Form/Checkbox.tsx +3 -3
- package/src/components/Form/Input.tsx +4 -2
- package/src/components/Form/Radio.tsx +3 -3
- package/src/components/Form/Select.tsx +3 -3
- package/src/components/Form/Textarea.tsx +4 -2
- package/src/components/List/List.stories.tsx +3 -3
- package/src/components/List/List.tsx +3 -3
- package/src/components/List/ListGroup.tsx +3 -1
- package/src/components/Modal/Modal.tsx +3 -3
- package/src/components/Navigation/Menu/MegaMenu.tsx +9 -3
- package/src/components/Navigation/Menu/Menu.tsx +9 -3
- package/src/components/Pagination/Pagination.tsx +6 -5
- package/src/components/PhotoViewer/PhotoViewerImage.tsx +2 -2
- package/src/components/Popover/Popover.tsx +4 -4
- package/src/components/Progress/Progress.tsx +6 -2
- package/src/components/Rating/Rating.tsx +5 -2
- package/src/components/Slider/Slider.tsx +10 -9
- package/src/components/Spinner/Spinner.tsx +3 -3
- package/src/components/Tabs/Tabs.tsx +3 -3
- package/src/components/Tooltip/Tooltip.tsx +3 -3
- package/src/components/index.ts +5 -2
- package/src/layouts/MasonryGrid/MasonryGrid.tsx +2 -2
- package/src/lib/composables/useChartPerformance.ts +102 -78
- package/src/lib/composables/useChartScale.ts +10 -0
- package/src/lib/composables/useHero.ts +9 -2
- package/src/lib/composables/useHeroBackgroundSlider.ts +5 -3
- package/src/lib/composables/useSideMenu.ts +1 -0
- package/src/lib/composables/useVideoPlayer.ts +3 -2
- package/src/lib/config/index.ts +275 -0
- package/src/lib/config/loader.ts +147 -0
- package/src/lib/hooks/index.ts +0 -1
- package/src/lib/hooks/useComponentCustomization.ts +10 -14
- package/src/lib/hooks/usePerformanceMonitor.ts +149 -0
- package/src/lib/index.ts +1 -0
- package/src/lib/patterns/index.ts +2 -2
- package/src/lib/patterns/slots.tsx +2 -2
- package/src/lib/theme/composeTheme.ts +1 -6
- package/src/lib/theme/config/index.ts +1 -1
- package/src/lib/theme/config/loader.ts +75 -41
- package/src/lib/theme/config/types.ts +21 -7
- package/src/lib/theme/config/validator.ts +1 -1
- package/src/lib/theme/constants.ts +12 -2
- package/src/lib/theme/core/ThemeEngine.ts +8 -0
- package/src/lib/theme/core/ThemeValidator.ts +5 -2
- package/src/lib/theme/createTheme.ts +0 -1
- package/src/lib/theme/createThemeFromConfig.ts +132 -0
- package/src/lib/theme/devtools/CLI.ts +161 -76
- package/src/lib/theme/devtools/Comparator.tsx +343 -0
- package/src/lib/theme/devtools/IMPROVEMENTS.md +429 -0
- package/src/lib/theme/devtools/Inspector.tsx +22 -7
- package/src/lib/theme/devtools/LiveEditor.tsx +399 -0
- package/src/lib/theme/devtools/README.md +433 -0
- package/src/lib/theme/devtools/index.ts +12 -11
- package/src/lib/theme/generateCSSVariables.ts +80 -39
- package/src/lib/theme/i18n/rtl.ts +2 -1
- package/src/lib/theme/index.ts +18 -2
- package/src/lib/theme/runtime/ThemeApplicator.ts +28 -11
- package/src/lib/theme/runtime/ThemeErrorBoundary.tsx +3 -3
- package/src/lib/theme/runtime/ThemeManager.test.ts +17 -1
- package/src/lib/theme/runtime/ThemeManager.ts +11 -7
- package/src/lib/theme/types.ts +42 -43
- package/src/lib/theme-tools.ts +8 -68
- package/src/lib/types/components.ts +252 -109
- package/src/lib/types/partProps.ts +0 -16
- package/src/lib/utils/fontPreloader.ts +148 -0
- package/src/lib/utils/index.ts +11 -0
- package/src/lib/utils/memoryMonitor.ts +189 -0
- package/src/styles/01-settings/_settings.fonts.scss +2 -5
- package/src/styles/01-settings/_settings.navbar.scss +1 -1
- package/src/styles/03-generic/_generated-root.css +26 -0
- package/src/styles/06-components/_components.navbar.scss +6 -5
- package/src/themes/README.md +1 -2
- package/src/themes/themes.config.js +30 -181
- package/dist/themes/applemix.css +0 -16576
- package/dist/themes/applemix.css.map +0 -1
- package/dist/themes/applemix.min.css +0 -73
- package/dist/themes/boomdevs.css +0 -16007
- package/dist/themes/boomdevs.css.map +0 -1
- package/dist/themes/boomdevs.min.css +0 -406
- package/dist/themes/esrar.css +0 -18424
- package/dist/themes/esrar.css.map +0 -1
- package/dist/themes/esrar.min.css +0 -221
- package/dist/themes/flashtrade.css +0 -17596
- package/dist/themes/flashtrade.css.map +0 -1
- package/dist/themes/flashtrade.min.css +0 -196
- package/dist/themes/mashroom.css +0 -31082
- package/dist/themes/mashroom.css.map +0 -1
- package/dist/themes/mashroom.min.css +0 -450
- package/dist/themes/shaj-default.css +0 -17200
- package/dist/themes/shaj-default.css.map +0 -1
- package/dist/themes/shaj-default.min.css +0 -502
- package/scripts/build-themes.js +0 -208
- package/src/components/AtomixGlass/atomixGLass.old.tsx +0 -1263
- package/src/lib/theme/__tests__/ThemeBuilder.test.ts +0 -223
- package/src/lib/theme/builders/ThemeBuilder.ts +0 -372
- package/src/lib/theme/errors.test.ts +0 -207
- package/src/lib/theme/generators/CSSGenerator.ts +0 -311
- package/src/lib/theme/generators/ConfigGenerator.ts +0 -287
- package/src/lib/theme/generators/TypeGenerator.ts +0 -228
- package/src/lib/theme/generators/index.ts +0 -21
- package/src/lib/theme/monitoring/ThemeAnalytics.ts +0 -409
- package/src/lib/theme/monitoring/index.ts +0 -17
- package/src/lib/theme/overrides/ComponentOverrides.ts +0 -243
- package/src/lib/theme/overrides/index.ts +0 -15
- package/src/lib/theme/whitelabel/WhiteLabelManager.ts +0 -364
- package/src/lib/theme/whitelabel/index.ts +0 -13
- package/src/themes/THEME_CHECKLIST.md +0 -74
- package/src/themes/applemix/01-settings/_index.scss +0 -24
- package/src/themes/applemix/01-settings/_settings.animations.scss +0 -0
- package/src/themes/applemix/01-settings/_settings.background.scss +0 -6
- package/src/themes/applemix/01-settings/_settings.colors.scss +0 -75
- package/src/themes/applemix/01-settings/_settings.config.scss +0 -15
- package/src/themes/applemix/01-settings/_settings.typography.scss +0 -30
- package/src/themes/applemix/02-tools/_index.scss +0 -4
- package/src/themes/applemix/03-generic/_index.scss +0 -7
- package/src/themes/applemix/04-elements/_index.scss +0 -7
- package/src/themes/applemix/05-objects/_index.scss +0 -7
- package/src/themes/applemix/06-components/_index.scss +0 -15
- package/src/themes/applemix/99-utilities/_index.scss +0 -7
- package/src/themes/applemix/README.md +0 -378
- package/src/themes/applemix/index.scss +0 -33
- package/src/themes/boomdevs/01-settings/_index.scss +0 -38
- package/src/themes/boomdevs/01-settings/_settings.accordion.scss +0 -12
- package/src/themes/boomdevs/01-settings/_settings.animations.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.avatar.scss +0 -9
- package/src/themes/boomdevs/01-settings/_settings.badge.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.border-radius.scss +0 -16
- package/src/themes/boomdevs/01-settings/_settings.border.scss +0 -10
- package/src/themes/boomdevs/01-settings/_settings.box-shadow.scss +0 -14
- package/src/themes/boomdevs/01-settings/_settings.breadcrumb.scss +0 -13
- package/src/themes/boomdevs/01-settings/_settings.breakpoints.scss +0 -15
- package/src/themes/boomdevs/01-settings/_settings.button.scss +0 -9
- package/src/themes/boomdevs/01-settings/_settings.callout.scss +0 -9
- package/src/themes/boomdevs/01-settings/_settings.card.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.checkbox.scss +0 -9
- package/src/themes/boomdevs/01-settings/_settings.colors.scss +0 -145
- package/src/themes/boomdevs/01-settings/_settings.dropdown.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.grid.scss +0 -16
- package/src/themes/boomdevs/01-settings/_settings.input.scss +0 -14
- package/src/themes/boomdevs/01-settings/_settings.link.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.list.scss +0 -10
- package/src/themes/boomdevs/01-settings/_settings.modal.scss +0 -16
- package/src/themes/boomdevs/01-settings/_settings.navbar.scss +0 -16
- package/src/themes/boomdevs/01-settings/_settings.pagination.scss +0 -13
- package/src/themes/boomdevs/01-settings/_settings.progress.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.rating.scss +0 -10
- package/src/themes/boomdevs/01-settings/_settings.spacing.scss +0 -33
- package/src/themes/boomdevs/01-settings/_settings.spinner.scss +0 -11
- package/src/themes/boomdevs/01-settings/_settings.steps.scss +0 -12
- package/src/themes/boomdevs/01-settings/_settings.tabs.scss +0 -12
- package/src/themes/boomdevs/01-settings/_settings.todo.scss +0 -15
- package/src/themes/boomdevs/01-settings/_settings.toggle.scss +0 -14
- package/src/themes/boomdevs/01-settings/_settings.tooltip.scss +0 -13
- package/src/themes/boomdevs/01-settings/_settings.typography.scss +0 -58
- package/src/themes/boomdevs/01-settings/_settings.video-player.scss +0 -12
- package/src/themes/boomdevs/02-tools/_index.scss +0 -7
- package/src/themes/boomdevs/03-generic/_index.scss +0 -7
- package/src/themes/boomdevs/04-elements/_index.scss +0 -7
- package/src/themes/boomdevs/05-objects/_index.scss +0 -7
- package/src/themes/boomdevs/06-components/_components.button.scss +0 -11
- package/src/themes/boomdevs/06-components/_index.scss +0 -11
- package/src/themes/boomdevs/99-utilities/_index.scss +0 -7
- package/src/themes/boomdevs/index.scss +0 -26
- package/src/themes/esrar/01-settings/_index.scss +0 -15
- package/src/themes/esrar/01-settings/_settings.colors.scss +0 -91
- package/src/themes/esrar/02-tools/_index.scss +0 -8
- package/src/themes/esrar/02-tools/_tools.animations.scss +0 -342
- package/src/themes/esrar/06-components/_components.accordion.scss +0 -49
- package/src/themes/esrar/06-components/_components.avatar-group.scss +0 -14
- package/src/themes/esrar/06-components/_components.avatar.scss +0 -61
- package/src/themes/esrar/06-components/_components.badge.scss +0 -117
- package/src/themes/esrar/06-components/_components.breadcrumb.scss +0 -65
- package/src/themes/esrar/06-components/_components.btn-group.scss +0 -19
- package/src/themes/esrar/06-components/_components.button.scss +0 -224
- package/src/themes/esrar/06-components/_components.callout.scss +0 -51
- package/src/themes/esrar/06-components/_components.card.scss +0 -134
- package/src/themes/esrar/06-components/_components.chart.scss +0 -24
- package/src/themes/esrar/06-components/_components.checkbox-group.scss +0 -26
- package/src/themes/esrar/06-components/_components.checkbox.scss +0 -71
- package/src/themes/esrar/06-components/_components.color-mode-toggle.scss +0 -29
- package/src/themes/esrar/06-components/_components.countdown.scss +0 -67
- package/src/themes/esrar/06-components/_components.data-table.scss +0 -22
- package/src/themes/esrar/06-components/_components.datepicker.scss +0 -20
- package/src/themes/esrar/06-components/_components.dropdown.scss +0 -272
- package/src/themes/esrar/06-components/_components.edge-panel.scss +0 -10
- package/src/themes/esrar/06-components/_components.form-group.scss +0 -15
- package/src/themes/esrar/06-components/_components.form.scss +0 -66
- package/src/themes/esrar/06-components/_components.hero.scss +0 -251
- package/src/themes/esrar/06-components/_components.icon.scss +0 -33
- package/src/themes/esrar/06-components/_components.image-gallery.scss +0 -29
- package/src/themes/esrar/06-components/_components.input.scss +0 -91
- package/src/themes/esrar/06-components/_components.list-group.scss +0 -26
- package/src/themes/esrar/06-components/_components.modal.scss +0 -148
- package/src/themes/esrar/06-components/_components.notification.scss +0 -80
- package/src/themes/esrar/06-components/_components.pagination.scss +0 -84
- package/src/themes/esrar/06-components/_components.popover.scss +0 -10
- package/src/themes/esrar/06-components/_components.progress.scss +0 -64
- package/src/themes/esrar/06-components/_components.rating.scss +0 -26
- package/src/themes/esrar/06-components/_components.skeleton.scss +0 -15
- package/src/themes/esrar/06-components/_components.slider.scss +0 -90
- package/src/themes/esrar/06-components/_components.spinner.scss +0 -71
- package/src/themes/esrar/06-components/_components.steps.scss +0 -76
- package/src/themes/esrar/06-components/_components.tab.scss +0 -58
- package/src/themes/esrar/06-components/_components.tag.scss +0 -21
- package/src/themes/esrar/06-components/_components.timeline.scss +0 -19
- package/src/themes/esrar/06-components/_components.toast.scss +0 -91
- package/src/themes/esrar/06-components/_components.toggle.scss +0 -74
- package/src/themes/esrar/06-components/_components.tooltip.scss +0 -45
- package/src/themes/esrar/06-components/_components.upload.scss +0 -102
- package/src/themes/esrar/06-components/_index.scss +0 -42
- package/src/themes/esrar/index.scss +0 -30
- package/src/themes/flashtrade/01-settings/_index.scss +0 -19
- package/src/themes/flashtrade/01-settings/_settings.animations.scss +0 -11
- package/src/themes/flashtrade/01-settings/_settings.background.scss +0 -9
- package/src/themes/flashtrade/01-settings/_settings.colors.scss +0 -79
- package/src/themes/flashtrade/01-settings/_settings.config.scss +0 -16
- package/src/themes/flashtrade/01-settings/_settings.typography.scss +0 -35
- package/src/themes/flashtrade/02-tools/_index.scss +0 -8
- package/src/themes/flashtrade/03-generic/_index.scss +0 -8
- package/src/themes/flashtrade/04-elements/_index.scss +0 -12
- package/src/themes/flashtrade/05-objects/_index.scss +0 -8
- package/src/themes/flashtrade/06-components/_components.badge.scss +0 -156
- package/src/themes/flashtrade/06-components/_components.button.scss +0 -135
- package/src/themes/flashtrade/06-components/_components.card.scss +0 -214
- package/src/themes/flashtrade/06-components/_components.navbar.scss +0 -227
- package/src/themes/flashtrade/06-components/_index.scss +0 -13
- package/src/themes/flashtrade/99-utilities/_index.scss +0 -9
- package/src/themes/flashtrade/99-utilities/_utilities.trading.scss +0 -187
- package/src/themes/flashtrade/README.md +0 -386
- package/src/themes/flashtrade/demo.html +0 -272
- package/src/themes/flashtrade/index.scss +0 -36
- package/src/themes/mashroom/01-settings/_index.scss +0 -69
- package/src/themes/mashroom/01-settings/_settings.accordion.scss +0 -32
- package/src/themes/mashroom/01-settings/_settings.animations.scss +0 -26
- package/src/themes/mashroom/01-settings/_settings.avatar-group.scss +0 -22
- package/src/themes/mashroom/01-settings/_settings.avatar.scss +0 -57
- package/src/themes/mashroom/01-settings/_settings.badge.scss +0 -19
- package/src/themes/mashroom/01-settings/_settings.border-radius.scss +0 -24
- package/src/themes/mashroom/01-settings/_settings.border.scss +0 -14
- package/src/themes/mashroom/01-settings/_settings.box-shadow.scss +0 -40
- package/src/themes/mashroom/01-settings/_settings.breadcrumb.scss +0 -0
- package/src/themes/mashroom/01-settings/_settings.breakpoints.scss +0 -17
- package/src/themes/mashroom/01-settings/_settings.btn-group.scss +0 -5
- package/src/themes/mashroom/01-settings/_settings.button.scss +0 -50
- package/src/themes/mashroom/01-settings/_settings.callout.scss +0 -81
- package/src/themes/mashroom/01-settings/_settings.card.scss +0 -52
- package/src/themes/mashroom/01-settings/_settings.checkbox-group.scss +0 -5
- package/src/themes/mashroom/01-settings/_settings.checkbox.scss +0 -23
- package/src/themes/mashroom/01-settings/_settings.color-mode.scss +0 -7
- package/src/themes/mashroom/01-settings/_settings.colors.scss +0 -180
- package/src/themes/mashroom/01-settings/_settings.config.scss +0 -4
- package/src/themes/mashroom/01-settings/_settings.countdown.scss +0 -20
- package/src/themes/mashroom/01-settings/_settings.data-table.scss +0 -56
- package/src/themes/mashroom/01-settings/_settings.datepicker.scss +0 -45
- package/src/themes/mashroom/01-settings/_settings.design-tokens.scss +0 -3
- package/src/themes/mashroom/01-settings/_settings.dropdown.scss +0 -45
- package/src/themes/mashroom/01-settings/_settings.edge-panel.scss +0 -24
- package/src/themes/mashroom/01-settings/_settings.fonts.scss +0 -8
- package/src/themes/mashroom/01-settings/_settings.form-group.scss +0 -14
- package/src/themes/mashroom/01-settings/_settings.form.scss +0 -6
- package/src/themes/mashroom/01-settings/_settings.grid.scss +0 -23
- package/src/themes/mashroom/01-settings/_settings.hero.scss +0 -41
- package/src/themes/mashroom/01-settings/_settings.input.scss +0 -51
- package/src/themes/mashroom/01-settings/_settings.link.scss +0 -13
- package/src/themes/mashroom/01-settings/_settings.list-group.scss +0 -16
- package/src/themes/mashroom/01-settings/_settings.list.scss +0 -13
- package/src/themes/mashroom/01-settings/_settings.masonry-grid.scss +0 -23
- package/src/themes/mashroom/01-settings/_settings.menu.scss +0 -50
- package/src/themes/mashroom/01-settings/_settings.messages.scss +0 -98
- package/src/themes/mashroom/01-settings/_settings.modal.scss +0 -41
- package/src/themes/mashroom/01-settings/_settings.nav.scss +0 -20
- package/src/themes/mashroom/01-settings/_settings.navbar.scss +0 -54
- package/src/themes/mashroom/01-settings/_settings.pagination.scss +0 -30
- package/src/themes/mashroom/01-settings/_settings.photoviewer.scss +0 -45
- package/src/themes/mashroom/01-settings/_settings.popover.scss +0 -20
- package/src/themes/mashroom/01-settings/_settings.position.scss +0 -9
- package/src/themes/mashroom/01-settings/_settings.progress.scss +0 -17
- package/src/themes/mashroom/01-settings/_settings.rating.scss +0 -11
- package/src/themes/mashroom/01-settings/_settings.river.scss +0 -50
- package/src/themes/mashroom/01-settings/_settings.sectionintro.scss +0 -31
- package/src/themes/mashroom/01-settings/_settings.select.scss +0 -47
- package/src/themes/mashroom/01-settings/_settings.side-menu.scss +0 -79
- package/src/themes/mashroom/01-settings/_settings.skeleton.scss +0 -24
- package/src/themes/mashroom/01-settings/_settings.spacing.scss +0 -66
- package/src/themes/mashroom/01-settings/_settings.spinner.scss +0 -34
- package/src/themes/mashroom/01-settings/_settings.steps.scss +0 -33
- package/src/themes/mashroom/01-settings/_settings.tabs.scss +0 -33
- package/src/themes/mashroom/01-settings/_settings.testimonials.scss +0 -24
- package/src/themes/mashroom/01-settings/_settings.todo.scss +0 -52
- package/src/themes/mashroom/01-settings/_settings.toggle.scss +0 -49
- package/src/themes/mashroom/01-settings/_settings.tooltip.scss +0 -20
- package/src/themes/mashroom/01-settings/_settings.typography.scss +0 -95
- package/src/themes/mashroom/01-settings/_settings.upload.scss +0 -96
- package/src/themes/mashroom/01-settings/_settings.z-layers.scss +0 -19
- package/src/themes/mashroom/02-tools/_index.scss +0 -8
- package/src/themes/mashroom/02-tools/_tools.psychedelic-gradients.scss +0 -78
- package/src/themes/mashroom/02-tools/_tools.trippy-effects.scss +0 -114
- package/src/themes/mashroom/03-generic/_index.scss +0 -6
- package/src/themes/mashroom/04-elements/_index.scss +0 -6
- package/src/themes/mashroom/05-objects/_index.scss +0 -6
- package/src/themes/mashroom/06-components/_components.accordion.scss +0 -187
- package/src/themes/mashroom/06-components/_components.avatar-group.scss +0 -276
- package/src/themes/mashroom/06-components/_components.avatar.scss +0 -114
- package/src/themes/mashroom/06-components/_components.badge.scss +0 -152
- package/src/themes/mashroom/06-components/_components.breadcrumb.scss +0 -162
- package/src/themes/mashroom/06-components/_components.btn-group.scss +0 -404
- package/src/themes/mashroom/06-components/_components.button.scss +0 -160
- package/src/themes/mashroom/06-components/_components.callout.scss +0 -140
- package/src/themes/mashroom/06-components/_components.card.scss +0 -225
- package/src/themes/mashroom/06-components/_components.checkbox.scss +0 -186
- package/src/themes/mashroom/06-components/_components.color-mode-toggle.scss +0 -308
- package/src/themes/mashroom/06-components/_components.countdown.scss +0 -402
- package/src/themes/mashroom/06-components/_components.data-table.scss +0 -354
- package/src/themes/mashroom/06-components/_components.datepicker.scss +0 -349
- package/src/themes/mashroom/06-components/_components.dropdown.scss +0 -334
- package/src/themes/mashroom/06-components/_components.edge-panel.scss +0 -413
- package/src/themes/mashroom/06-components/_components.form-group.scss +0 -433
- package/src/themes/mashroom/06-components/_components.form.scss +0 -358
- package/src/themes/mashroom/06-components/_components.hero.scss +0 -151
- package/src/themes/mashroom/06-components/_components.input.scss +0 -147
- package/src/themes/mashroom/06-components/_components.list-group.scss +0 -456
- package/src/themes/mashroom/06-components/_components.list.scss +0 -145
- package/src/themes/mashroom/06-components/_components.menu.scss +0 -497
- package/src/themes/mashroom/06-components/_components.messages.scss +0 -277
- package/src/themes/mashroom/06-components/_components.modal.scss +0 -264
- package/src/themes/mashroom/06-components/_components.nav.scss +0 -181
- package/src/themes/mashroom/06-components/_components.navbar.scss +0 -538
- package/src/themes/mashroom/06-components/_components.pagination.scss +0 -400
- package/src/themes/mashroom/06-components/_components.photoviewer.scss +0 -498
- package/src/themes/mashroom/06-components/_components.popover.scss +0 -383
- package/src/themes/mashroom/06-components/_components.product-review.scss +0 -408
- package/src/themes/mashroom/06-components/_components.progress.scss +0 -249
- package/src/themes/mashroom/06-components/_components.rating.scss +0 -300
- package/src/themes/mashroom/06-components/_components.river.scss +0 -570
- package/src/themes/mashroom/06-components/_components.sectionintro.scss +0 -546
- package/src/themes/mashroom/06-components/_components.select.scss +0 -455
- package/src/themes/mashroom/06-components/_components.side-menu.scss +0 -635
- package/src/themes/mashroom/06-components/_components.skeleton.scss +0 -447
- package/src/themes/mashroom/06-components/_components.slider.scss +0 -414
- package/src/themes/mashroom/06-components/_components.spinner.scss +0 -198
- package/src/themes/mashroom/06-components/_components.steps.scss +0 -350
- package/src/themes/mashroom/06-components/_components.tabs.scss +0 -269
- package/src/themes/mashroom/06-components/_components.testimonials.scss +0 -561
- package/src/themes/mashroom/06-components/_components.toggle.scss +0 -231
- package/src/themes/mashroom/06-components/_components.tooltip.scss +0 -167
- package/src/themes/mashroom/06-components/_components.upload.scss +0 -537
- package/src/themes/mashroom/06-components/_components.video-player.scss +0 -560
- package/src/themes/mashroom/06-components/_index.scss +0 -55
- package/src/themes/mashroom/99-utilities/_index.scss +0 -6
- package/src/themes/mashroom/index.scss +0 -26
- package/src/themes/shaj-default/01-settings/_index.scss +0 -69
- package/src/themes/shaj-default/01-settings/_settings.accordion.scss +0 -38
- package/src/themes/shaj-default/01-settings/_settings.animations.scss +0 -32
- package/src/themes/shaj-default/01-settings/_settings.avatar-group.scss +0 -28
- package/src/themes/shaj-default/01-settings/_settings.avatar.scss +0 -63
- package/src/themes/shaj-default/01-settings/_settings.badge.scss +0 -25
- package/src/themes/shaj-default/01-settings/_settings.border-radius.scss +0 -24
- package/src/themes/shaj-default/01-settings/_settings.border.scss +0 -20
- package/src/themes/shaj-default/01-settings/_settings.box-shadow.scss +0 -46
- package/src/themes/shaj-default/01-settings/_settings.breadcrumb.scss +0 -0
- package/src/themes/shaj-default/01-settings/_settings.breakpoints.scss +0 -23
- package/src/themes/shaj-default/01-settings/_settings.btn-group.scss +0 -11
- package/src/themes/shaj-default/01-settings/_settings.button.scss +0 -56
- package/src/themes/shaj-default/01-settings/_settings.callout.scss +0 -87
- package/src/themes/shaj-default/01-settings/_settings.card.scss +0 -52
- package/src/themes/shaj-default/01-settings/_settings.checkbox-group.scss +0 -11
- package/src/themes/shaj-default/01-settings/_settings.checkbox.scss +0 -29
- package/src/themes/shaj-default/01-settings/_settings.color-mode.scss +0 -13
- package/src/themes/shaj-default/01-settings/_settings.colors.scss +0 -91
- package/src/themes/shaj-default/01-settings/_settings.config.scss +0 -4
- package/src/themes/shaj-default/01-settings/_settings.countdown.scss +0 -26
- package/src/themes/shaj-default/01-settings/_settings.data-table.scss +0 -62
- package/src/themes/shaj-default/01-settings/_settings.datepicker.scss +0 -51
- package/src/themes/shaj-default/01-settings/_settings.design-tokens.scss +0 -9
- package/src/themes/shaj-default/01-settings/_settings.dropdown.scss +0 -51
- package/src/themes/shaj-default/01-settings/_settings.edge-panel.scss +0 -30
- package/src/themes/shaj-default/01-settings/_settings.fonts.scss +0 -13
- package/src/themes/shaj-default/01-settings/_settings.form-group.scss +0 -20
- package/src/themes/shaj-default/01-settings/_settings.form.scss +0 -12
- package/src/themes/shaj-default/01-settings/_settings.grid.scss +0 -29
- package/src/themes/shaj-default/01-settings/_settings.hero.scss +0 -47
- package/src/themes/shaj-default/01-settings/_settings.input.scss +0 -57
- package/src/themes/shaj-default/01-settings/_settings.link.scss +0 -19
- package/src/themes/shaj-default/01-settings/_settings.list-group.scss +0 -22
- package/src/themes/shaj-default/01-settings/_settings.list.scss +0 -19
- package/src/themes/shaj-default/01-settings/_settings.masonry-grid.scss +0 -29
- package/src/themes/shaj-default/01-settings/_settings.menu.scss +0 -56
- package/src/themes/shaj-default/01-settings/_settings.messages.scss +0 -104
- package/src/themes/shaj-default/01-settings/_settings.modal.scss +0 -47
- package/src/themes/shaj-default/01-settings/_settings.nav.scss +0 -26
- package/src/themes/shaj-default/01-settings/_settings.navbar.scss +0 -60
- package/src/themes/shaj-default/01-settings/_settings.pagination.scss +0 -36
- package/src/themes/shaj-default/01-settings/_settings.photoviewer.scss +0 -51
- package/src/themes/shaj-default/01-settings/_settings.popover.scss +0 -26
- package/src/themes/shaj-default/01-settings/_settings.position.scss +0 -15
- package/src/themes/shaj-default/01-settings/_settings.progress.scss +0 -23
- package/src/themes/shaj-default/01-settings/_settings.rating.scss +0 -17
- package/src/themes/shaj-default/01-settings/_settings.river.scss +0 -56
- package/src/themes/shaj-default/01-settings/_settings.sectionintro.scss +0 -37
- package/src/themes/shaj-default/01-settings/_settings.select.scss +0 -53
- package/src/themes/shaj-default/01-settings/_settings.side-menu.scss +0 -85
- package/src/themes/shaj-default/01-settings/_settings.skeleton.scss +0 -30
- package/src/themes/shaj-default/01-settings/_settings.spacing.scss +0 -72
- package/src/themes/shaj-default/01-settings/_settings.spinner.scss +0 -24
- package/src/themes/shaj-default/01-settings/_settings.steps.scss +0 -39
- package/src/themes/shaj-default/01-settings/_settings.tabs.scss +0 -39
- package/src/themes/shaj-default/01-settings/_settings.testimonials.scss +0 -30
- package/src/themes/shaj-default/01-settings/_settings.todo.scss +0 -58
- package/src/themes/shaj-default/01-settings/_settings.toggle.scss +0 -55
- package/src/themes/shaj-default/01-settings/_settings.tooltip.scss +0 -26
- package/src/themes/shaj-default/01-settings/_settings.typography.scss +0 -101
- package/src/themes/shaj-default/01-settings/_settings.upload.scss +0 -102
- package/src/themes/shaj-default/01-settings/_settings.z-layers.scss +0 -25
- package/src/themes/shaj-default/02-tools/_index.scss +0 -0
- package/src/themes/shaj-default/03-generic/_generic.root.scss +0 -0
- package/src/themes/shaj-default/03-generic/_index.scss +0 -2
- package/src/themes/shaj-default/04-elements/_index.scss +0 -0
- package/src/themes/shaj-default/05-objects/_index.scss +0 -0
- package/src/themes/shaj-default/06-components/_components.button.scss +0 -55
- package/src/themes/shaj-default/06-components/_components.card.scss +0 -57
- package/src/themes/shaj-default/06-components/_components.input.scss +0 -58
- package/src/themes/shaj-default/06-components/_components.navbar.scss +0 -99
- package/src/themes/shaj-default/06-components/_components.tooltip.scss +0 -0
- package/src/themes/shaj-default/06-components/_index.scss +0 -13
- package/src/themes/shaj-default/99-utilities/_index.scss +0 -0
- package/src/themes/shaj-default/index.scss +0 -25
- package/theme.config.ts +0 -360
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
@use '../02-tools/tools.trippy-effects' as trippy;
|
|
2
|
-
@use '../02-tools/tools.psychedelic-gradients' as gradients;
|
|
3
|
-
@use '../01-settings/settings.colors' as colors;
|
|
4
|
-
@use '../01-settings/settings.config' as config;
|
|
5
|
-
|
|
6
|
-
// Psychedelic accordion animations
|
|
7
|
-
@keyframes accordion-float {
|
|
8
|
-
0%,
|
|
9
|
-
100% {
|
|
10
|
-
transform: translateY(0px);
|
|
11
|
-
}
|
|
12
|
-
50% {
|
|
13
|
-
transform: translateY(-5px);
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@keyframes accordion-glow-pulse {
|
|
18
|
-
0%,
|
|
19
|
-
100% {
|
|
20
|
-
box-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
|
|
21
|
-
}
|
|
22
|
-
50% {
|
|
23
|
-
box-shadow:
|
|
24
|
-
0 0 20px rgba(157, 0, 255, 0.8),
|
|
25
|
-
0 0 30px rgba(255, 32, 133, 0.6),
|
|
26
|
-
0 0 40px rgba(255, 187, 0, 0.4);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
@keyframes accordion-expand {
|
|
31
|
-
0% {
|
|
32
|
-
opacity: 0;
|
|
33
|
-
transform: scaleY(0);
|
|
34
|
-
}
|
|
35
|
-
100% {
|
|
36
|
-
opacity: 1;
|
|
37
|
-
transform: scaleY(1);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.c-accordion {
|
|
42
|
-
$root: &;
|
|
43
|
-
// Apply psychedelic border with glow effect
|
|
44
|
-
@include trippy.trippy-glow(colors.$primary-6, 10px);
|
|
45
|
-
|
|
46
|
-
// Add color shift for extra psychedelic effect
|
|
47
|
-
@include trippy.color-shift();
|
|
48
|
-
|
|
49
|
-
// Add floating animation
|
|
50
|
-
@include trippy.float-animation();
|
|
51
|
-
animation-duration: 6s;
|
|
52
|
-
|
|
53
|
-
// Add pulse animation
|
|
54
|
-
animation: accordion-glow-pulse 3s infinite;
|
|
55
|
-
|
|
56
|
-
&__header {
|
|
57
|
-
@include gradients.mushroom-cap-gradient();
|
|
58
|
-
|
|
59
|
-
// Add pulse effect to header
|
|
60
|
-
@include trippy.psychedelic-pulse(colors.$primary-4);
|
|
61
|
-
|
|
62
|
-
// Add a subtle pattern
|
|
63
|
-
background-image:
|
|
64
|
-
radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
|
|
65
|
-
radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
|
|
66
|
-
background-size: 30px 30px;
|
|
67
|
-
|
|
68
|
-
// Add floating effect
|
|
69
|
-
@include trippy.float-animation();
|
|
70
|
-
animation-duration: 4s;
|
|
71
|
-
|
|
72
|
-
// Add psychedelic border
|
|
73
|
-
border: 1px solid rgba(157, 0, 255, 0.3);
|
|
74
|
-
|
|
75
|
-
&:hover {
|
|
76
|
-
@include gradients.psychedelic-linear-gradient(colors.$primary-6, colors.$blue-6);
|
|
77
|
-
transform: scale(1.01) rotate(1deg);
|
|
78
|
-
@include trippy.trippy-glow(colors.$red-4, 15px);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
// Active state
|
|
82
|
-
&--active {
|
|
83
|
-
@include gradients.rainbow-gradient();
|
|
84
|
-
background-size: 300% 300%;
|
|
85
|
-
animation: rainbow-shift 4s ease infinite;
|
|
86
|
-
border: 1px solid rgba(255, 187, 0, 0.5);
|
|
87
|
-
|
|
88
|
-
&:hover {
|
|
89
|
-
animation: rainbow-shift 2s ease infinite;
|
|
90
|
-
@include trippy.trippy-glow(colors.$yellow-4, 20px);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
&__body {
|
|
96
|
-
@include gradients.mushroom-stem-gradient();
|
|
97
|
-
border-top: 1px solid colors.$primary-3;
|
|
98
|
-
|
|
99
|
-
// Add animation when expanding
|
|
100
|
-
animation: accordion-expand 0.3s ease-out;
|
|
101
|
-
|
|
102
|
-
// Add a subtle sparkle effect
|
|
103
|
-
&::before {
|
|
104
|
-
content: '';
|
|
105
|
-
position: absolute;
|
|
106
|
-
top: 0;
|
|
107
|
-
left: 0;
|
|
108
|
-
right: 0;
|
|
109
|
-
bottom: 0;
|
|
110
|
-
background:
|
|
111
|
-
radial-gradient(1px 1px at 20px 30px, var(--atomix-body-color), rgba(255, 255, 255, 0)),
|
|
112
|
-
radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
|
|
113
|
-
background-repeat: repeat;
|
|
114
|
-
background-size: 50px 50px;
|
|
115
|
-
animation: sparkle 3s linear infinite;
|
|
116
|
-
opacity: 0.3;
|
|
117
|
-
pointer-events: none;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
@keyframes sparkle {
|
|
121
|
-
from {
|
|
122
|
-
background-position: 0 0;
|
|
123
|
-
}
|
|
124
|
-
to {
|
|
125
|
-
background-position: 50px 50px;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
// Psychedelic variant
|
|
131
|
-
&--psychedelic {
|
|
132
|
-
@include gradients.rainbow-gradient();
|
|
133
|
-
background-size: 400% 400%;
|
|
134
|
-
animation: rainbow-shift 6s ease infinite;
|
|
135
|
-
border: 2px solid transparent;
|
|
136
|
-
border-radius: 10px;
|
|
137
|
-
|
|
138
|
-
#{$root}__header {
|
|
139
|
-
@include gradients.rainbow-gradient();
|
|
140
|
-
background-size: 300% 300%;
|
|
141
|
-
animation: rainbow-shift 4s ease infinite;
|
|
142
|
-
border: none;
|
|
143
|
-
border-radius: 8px 8px 0 0;
|
|
144
|
-
|
|
145
|
-
&:hover {
|
|
146
|
-
animation: rainbow-shift 2s ease infinite;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
&--active {
|
|
150
|
-
@include gradients.rainbow-gradient();
|
|
151
|
-
background-size: 300% 300%;
|
|
152
|
-
animation: rainbow-shift 3s ease infinite;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
#{$root}__body {
|
|
157
|
-
@include gradients.spore-gradient();
|
|
158
|
-
border-top: none;
|
|
159
|
-
border-radius: 0 0 8px 8px;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
// Floating variant
|
|
164
|
-
&--floating {
|
|
165
|
-
@include trippy.float-animation();
|
|
166
|
-
animation-duration: 5s;
|
|
167
|
-
|
|
168
|
-
#{$root}__header {
|
|
169
|
-
@include trippy.float-animation();
|
|
170
|
-
animation-duration: 3s;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
// Glowing variant
|
|
175
|
-
&--glow {
|
|
176
|
-
@include trippy.trippy-glow(colors.$purple-4, 20px);
|
|
177
|
-
animation: accordion-glow-pulse 2s infinite;
|
|
178
|
-
|
|
179
|
-
#{$root}__header {
|
|
180
|
-
@include trippy.trippy-glow(colors.$red-4, 15px);
|
|
181
|
-
|
|
182
|
-
&--active {
|
|
183
|
-
@include trippy.trippy-glow(colors.$yellow-4, 25px);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
}
|
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Mashroom Theme Avatar Group Component
|
|
3
|
-
* Psychedelic mushroom-inspired theme with trippy visuals
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
// Import required tools and settings
|
|
7
|
-
@use '../02-tools/tools.trippy-effects' as trippy;
|
|
8
|
-
@use '../02-tools/tools.psychedelic-gradients' as gradients;
|
|
9
|
-
@use '../01-settings/settings.colors' as *;
|
|
10
|
-
|
|
11
|
-
// Psychedelic avatar group animations
|
|
12
|
-
@keyframes avatar-group-float {
|
|
13
|
-
0%,
|
|
14
|
-
100% {
|
|
15
|
-
transform: translateY(0px);
|
|
16
|
-
}
|
|
17
|
-
50% {
|
|
18
|
-
transform: translateY(-5px);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@keyframes avatar-group-glow-pulse {
|
|
23
|
-
0%,
|
|
24
|
-
100% {
|
|
25
|
-
box-shadow: 0 0 6px rgba(157, 0, 255, 0.4);
|
|
26
|
-
}
|
|
27
|
-
50% {
|
|
28
|
-
box-shadow:
|
|
29
|
-
0 0 12px rgba(157, 0, 255, 0.7),
|
|
30
|
-
0 0 24px rgba(255, 32, 133, 0.5);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
@keyframes avatar-group-pulse {
|
|
35
|
-
0%,
|
|
36
|
-
100% {
|
|
37
|
-
transform: scale(1);
|
|
38
|
-
}
|
|
39
|
-
50% {
|
|
40
|
-
transform: scale(1.05);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.c-avatar-group {
|
|
45
|
-
$root: &;
|
|
46
|
-
|
|
47
|
-
// Individual avatars in group
|
|
48
|
-
.c-avatar {
|
|
49
|
-
border: 2px solid rgba(157, 0, 255, 0.3);
|
|
50
|
-
transition: all 0.3s ease;
|
|
51
|
-
@include trippy.color-shift();
|
|
52
|
-
|
|
53
|
-
// Add floating animation
|
|
54
|
-
@include trippy.float-animation();
|
|
55
|
-
animation-duration: 4s;
|
|
56
|
-
|
|
57
|
-
&:hover {
|
|
58
|
-
transform: translateY(-2px) scale(1.1);
|
|
59
|
-
z-index: 2;
|
|
60
|
-
@include trippy.trippy-glow($yellow-4, 8px);
|
|
61
|
-
@include trippy.psychedelic-pulse($yellow-4);
|
|
62
|
-
@include gradients.psychedelic-linear-gradient($purple-4, $yellow-4);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// Overlap styling
|
|
67
|
-
&--overlap {
|
|
68
|
-
.c-avatar {
|
|
69
|
-
margin-right: -1rem;
|
|
70
|
-
|
|
71
|
-
&:hover {
|
|
72
|
-
margin-right: 0;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// Spaced variant
|
|
78
|
-
&--spaced {
|
|
79
|
-
.c-avatar {
|
|
80
|
-
margin-right: 0.5rem;
|
|
81
|
-
@include trippy.float-animation();
|
|
82
|
-
animation-duration: 3s;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
// Remaining count
|
|
87
|
-
&__remaining {
|
|
88
|
-
background: linear-gradient(45deg, $purple-4, $red-4);
|
|
89
|
-
border: 2px solid rgba(157, 0, 255, 0.3);
|
|
90
|
-
|
|
91
|
-
// Trippy glow effect
|
|
92
|
-
@include trippy.trippy-glow(rgba(157, 0, 255, 0.4), 6px);
|
|
93
|
-
@include trippy.color-shift();
|
|
94
|
-
@include gradients.rainbow-gradient();
|
|
95
|
-
|
|
96
|
-
// Add floating animation
|
|
97
|
-
@include trippy.float-animation();
|
|
98
|
-
animation-duration: 3s;
|
|
99
|
-
|
|
100
|
-
// Add pulse animation
|
|
101
|
-
animation: avatar-group-pulse 2s ease-in-out infinite;
|
|
102
|
-
|
|
103
|
-
&:hover {
|
|
104
|
-
transform: translateY(-2px) scale(1.1);
|
|
105
|
-
@include trippy.trippy-glow($yellow-4, 10px);
|
|
106
|
-
@include trippy.psychedelic-pulse($yellow-4);
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// Floating animation
|
|
111
|
-
&--animated {
|
|
112
|
-
.c-avatar {
|
|
113
|
-
animation: avatarFloat 3s ease-in-out infinite;
|
|
114
|
-
@include trippy.color-shift();
|
|
115
|
-
|
|
116
|
-
&:nth-child(2) {
|
|
117
|
-
animation-delay: 0.2s;
|
|
118
|
-
}
|
|
119
|
-
&:nth-child(3) {
|
|
120
|
-
animation-delay: 0.4s;
|
|
121
|
-
}
|
|
122
|
-
&:nth-child(4) {
|
|
123
|
-
animation-delay: 0.6s;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
#{$root}__remaining {
|
|
128
|
-
animation: avatarFloat 3s ease-in-out infinite 0.8s;
|
|
129
|
-
@include trippy.color-shift();
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
@keyframes avatarFloat {
|
|
133
|
-
0%,
|
|
134
|
-
100% {
|
|
135
|
-
transform: translateY(0px) rotate(0deg);
|
|
136
|
-
}
|
|
137
|
-
25% {
|
|
138
|
-
transform: translateY(-5px) rotate(2deg);
|
|
139
|
-
}
|
|
140
|
-
50% {
|
|
141
|
-
transform: translateY(-3px) rotate(0deg);
|
|
142
|
-
}
|
|
143
|
-
75% {
|
|
144
|
-
transform: translateY(-7px) rotate(-2deg);
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
// Hover reveal effect
|
|
150
|
-
&--hover-reveal {
|
|
151
|
-
.c-avatar {
|
|
152
|
-
opacity: 0.7;
|
|
153
|
-
transition: all 0.3s ease;
|
|
154
|
-
@include trippy.trippy-glow(rgba(157, 0, 255, 0.3), 4px);
|
|
155
|
-
|
|
156
|
-
// Add floating animation
|
|
157
|
-
@include trippy.float-animation();
|
|
158
|
-
animation-duration: 5s;
|
|
159
|
-
|
|
160
|
-
&:hover {
|
|
161
|
-
opacity: 1;
|
|
162
|
-
transform: scale(1.2) rotate(5deg);
|
|
163
|
-
z-index: 3;
|
|
164
|
-
@include gradients.psychedelic-radial-gradient($yellow-4, $red-4, $purple-4);
|
|
165
|
-
@include trippy.psychedelic-pulse($yellow-4);
|
|
166
|
-
box-shadow: 0 0 20px rgba(255, 187, 0, 0.7);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
// Psychedelic variant
|
|
172
|
-
&--psychedelic {
|
|
173
|
-
.c-avatar {
|
|
174
|
-
border-color: rgba(255, 187, 0, 0.4);
|
|
175
|
-
background: linear-gradient(45deg, $purple-4, $red-4, $green-4);
|
|
176
|
-
animation: psychedelicAvatar 3s ease-in-out infinite;
|
|
177
|
-
@include trippy.trippy-glow(rgba(157, 0, 255, 0.5), 6px);
|
|
178
|
-
box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
|
|
179
|
-
|
|
180
|
-
&:hover {
|
|
181
|
-
@include gradients.rainbow-gradient();
|
|
182
|
-
background-size: 400% 400%;
|
|
183
|
-
animation:
|
|
184
|
-
rainbow-shift 4s ease infinite,
|
|
185
|
-
avatarPulse 2s ease-in-out infinite;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
#{$root}__remaining {
|
|
190
|
-
background: linear-gradient(45deg, $yellow-4, $purple-4, $red-4);
|
|
191
|
-
border-color: rgba(255, 187, 0, 0.4);
|
|
192
|
-
animation: psychedelicAvatar 3s ease-in-out infinite 0.5s;
|
|
193
|
-
@include trippy.trippy-glow(rgba(255, 187, 0, 0.5), 8px);
|
|
194
|
-
box-shadow: 0 0 20px rgba(255, 187, 0, 0.5);
|
|
195
|
-
|
|
196
|
-
&:hover {
|
|
197
|
-
@include gradients.rainbow-gradient();
|
|
198
|
-
background-size: 400% 400%;
|
|
199
|
-
animation:
|
|
200
|
-
rainbow-shift 4s ease infinite,
|
|
201
|
-
avatarPulse 2s ease-in-out infinite;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
@keyframes psychedelicAvatar {
|
|
206
|
-
0%,
|
|
207
|
-
100% {
|
|
208
|
-
background-position: 0% 50%;
|
|
209
|
-
border-color: rgba(255, 187, 0, 0.4);
|
|
210
|
-
transform: rotate(0deg);
|
|
211
|
-
}
|
|
212
|
-
25% {
|
|
213
|
-
background-position: 50% 100%;
|
|
214
|
-
border-color: rgba(0, 255, 136, 0.4);
|
|
215
|
-
transform: rotate(2deg);
|
|
216
|
-
}
|
|
217
|
-
50% {
|
|
218
|
-
background-position: 100% 50%;
|
|
219
|
-
border-color: rgba(255, 32, 133, 0.4);
|
|
220
|
-
transform: rotate(0deg);
|
|
221
|
-
}
|
|
222
|
-
75% {
|
|
223
|
-
background-position: 50% 0%;
|
|
224
|
-
border-color: rgba(0, 255, 255, 0.4);
|
|
225
|
-
transform: rotate(-2deg);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
@keyframes avatarPulse {
|
|
230
|
-
0%,
|
|
231
|
-
100% {
|
|
232
|
-
transform: scale(1);
|
|
233
|
-
}
|
|
234
|
-
50% {
|
|
235
|
-
transform: scale(1.1);
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
// Glowing variant
|
|
241
|
-
&--glow {
|
|
242
|
-
.c-avatar {
|
|
243
|
-
@include trippy.trippy-glow($purple-4, 10px);
|
|
244
|
-
animation: avatar-group-glow-pulse 2s infinite;
|
|
245
|
-
border-color: rgba(157, 0, 255, 0.5);
|
|
246
|
-
|
|
247
|
-
&:hover {
|
|
248
|
-
@include trippy.trippy-glow($yellow-4, 15px);
|
|
249
|
-
animation: avatar-group-glow-pulse 0.5s infinite;
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
#{$root}__remaining {
|
|
254
|
-
@include trippy.trippy-glow($red-4, 12px);
|
|
255
|
-
animation: avatar-group-glow-pulse 2s infinite;
|
|
256
|
-
|
|
257
|
-
&:hover {
|
|
258
|
-
@include trippy.trippy-glow($yellow-4, 18px);
|
|
259
|
-
animation: avatar-group-glow-pulse 0.5s infinite;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
// Floating variant
|
|
265
|
-
&--floating {
|
|
266
|
-
.c-avatar {
|
|
267
|
-
@include trippy.float-animation();
|
|
268
|
-
animation-duration: 3s;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
#{$root}__remaining {
|
|
272
|
-
@include trippy.float-animation();
|
|
273
|
-
animation-duration: 4s;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
}
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Mashroom Theme Avatar Component
|
|
3
|
-
* Psychedelic mushroom-inspired theme with trippy visuals
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
// Import required tools and settings
|
|
7
|
-
@use '../02-tools/tools.trippy-effects' as trippy;
|
|
8
|
-
@use '../02-tools/tools.psychedelic-gradients' as gradients;
|
|
9
|
-
@use '../01-settings/settings.colors' as *;
|
|
10
|
-
|
|
11
|
-
// Psychedelic avatar animations
|
|
12
|
-
@keyframes avatar-pulse {
|
|
13
|
-
0%,
|
|
14
|
-
100% {
|
|
15
|
-
box-shadow:
|
|
16
|
-
0 0 5px rgba(157, 0, 255, 0.5),
|
|
17
|
-
0 0 10px rgba(157, 0, 255, 0.3);
|
|
18
|
-
}
|
|
19
|
-
50% {
|
|
20
|
-
box-shadow:
|
|
21
|
-
0 0 15px rgba(157, 0, 255, 0.8),
|
|
22
|
-
0 0 25px rgba(255, 32, 133, 0.6),
|
|
23
|
-
0 0 35px rgba(255, 187, 0, 0.4);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@keyframes avatar-rotate {
|
|
28
|
-
0% {
|
|
29
|
-
transform: rotate(0deg);
|
|
30
|
-
}
|
|
31
|
-
100% {
|
|
32
|
-
transform: rotate(360deg);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.c-avatar {
|
|
37
|
-
// Add psychedelic glow effect
|
|
38
|
-
@include trippy.trippy-glow($primary-6, 8px);
|
|
39
|
-
|
|
40
|
-
// Add floating animation for a magical effect
|
|
41
|
-
@include trippy.float-animation();
|
|
42
|
-
|
|
43
|
-
// Add color shift for extra psychedelic effect
|
|
44
|
-
@include trippy.color-shift();
|
|
45
|
-
|
|
46
|
-
// Add subtle breathing effect
|
|
47
|
-
@include trippy.psychedelic-breathing();
|
|
48
|
-
|
|
49
|
-
// Add pulse animation
|
|
50
|
-
animation: avatar-pulse 2s infinite;
|
|
51
|
-
|
|
52
|
-
// Apply rainbow gradient border
|
|
53
|
-
border: 2px solid transparent;
|
|
54
|
-
background:
|
|
55
|
-
linear-gradient(white, white) padding-box,
|
|
56
|
-
linear-gradient(90deg, #9d00ff, #d080ff, #00ff9d, #ffbb00, #ff2085, #9d00ff) border-box;
|
|
57
|
-
background-size: 300% 300%;
|
|
58
|
-
|
|
59
|
-
// Hover state with enhanced psychedelic effects
|
|
60
|
-
&:hover {
|
|
61
|
-
@include trippy.trippy-glow($red-4, 15px);
|
|
62
|
-
transform: scale(1.1) rotate(5deg);
|
|
63
|
-
transition: all 0.3s ease;
|
|
64
|
-
background:
|
|
65
|
-
linear-gradient(white, white) padding-box,
|
|
66
|
-
linear-gradient(90deg, #ff2085, #ffbb00, #00ff9d, #d080ff, #9d00ff, #ff2085) border-box;
|
|
67
|
-
animation:
|
|
68
|
-
avatar-pulse 0.5s infinite,
|
|
69
|
-
avatar-rotate 2s linear infinite;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// Grouped avatars
|
|
73
|
-
.c-avatar-group & {
|
|
74
|
-
border-color: rgba($black, 0.2);
|
|
75
|
-
box-shadow: 0 0 5px rgba($primary-6, 0.5);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
// Psychedelic variant
|
|
79
|
-
&--psychedelic {
|
|
80
|
-
@include gradients.rainbow-gradient();
|
|
81
|
-
background-size: 400% 400%;
|
|
82
|
-
border: 2px solid transparent;
|
|
83
|
-
animation:
|
|
84
|
-
rainbow-shift 3s ease infinite,
|
|
85
|
-
avatar-rotate 10s linear infinite;
|
|
86
|
-
|
|
87
|
-
&:hover {
|
|
88
|
-
animation:
|
|
89
|
-
rainbow-shift 1s ease infinite,
|
|
90
|
-
avatar-rotate 2s linear infinite;
|
|
91
|
-
@include trippy.trippy-glow(white, 20px);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
// Glowing variant
|
|
96
|
-
&--glow {
|
|
97
|
-
@include trippy.trippy-glow($purple-4, 20px);
|
|
98
|
-
animation: avatar-pulse 1s infinite;
|
|
99
|
-
|
|
100
|
-
&:hover {
|
|
101
|
-
@include trippy.trippy-glow($yellow-4, 30px);
|
|
102
|
-
animation: avatar-pulse 0.3s infinite;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
// Circular variant with rotation
|
|
107
|
-
&--circular {
|
|
108
|
-
border-radius: 50%;
|
|
109
|
-
|
|
110
|
-
&:hover {
|
|
111
|
-
animation: avatar-rotate 1s linear infinite;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
@use '../02-tools/tools.trippy-effects' as trippy;
|
|
2
|
-
@use '../02-tools/tools.psychedelic-gradients' as gradients;
|
|
3
|
-
@use '../01-settings/settings.colors' as colors;
|
|
4
|
-
@use '../01-settings/settings.config' as config;
|
|
5
|
-
|
|
6
|
-
// Psychedelic badge animations
|
|
7
|
-
@keyframes psychedelic-badge-shift {
|
|
8
|
-
0% {
|
|
9
|
-
filter: hue-rotate(0deg);
|
|
10
|
-
}
|
|
11
|
-
25% {
|
|
12
|
-
filter: hue-rotate(90deg);
|
|
13
|
-
}
|
|
14
|
-
50% {
|
|
15
|
-
filter: hue-rotate(180deg);
|
|
16
|
-
}
|
|
17
|
-
75% {
|
|
18
|
-
filter: hue-rotate(270deg);
|
|
19
|
-
}
|
|
20
|
-
100% {
|
|
21
|
-
filter: hue-rotate(360deg);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@keyframes badge-glow-pulse {
|
|
26
|
-
0%,
|
|
27
|
-
100% {
|
|
28
|
-
box-shadow:
|
|
29
|
-
0 0 5px var(--atomix-tag-color),
|
|
30
|
-
0 0 10px rgba(157, 0, 255, 0.5);
|
|
31
|
-
}
|
|
32
|
-
50% {
|
|
33
|
-
box-shadow:
|
|
34
|
-
0 0 15px var(--atomix-tag-color),
|
|
35
|
-
0 0 30px rgba(157, 0, 255, 0.8),
|
|
36
|
-
0 0 50px rgba(255, 32, 133, 0.6);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@keyframes badge-float {
|
|
41
|
-
0%,
|
|
42
|
-
100% {
|
|
43
|
-
transform: translateY(0px) rotate(0deg);
|
|
44
|
-
}
|
|
45
|
-
25% {
|
|
46
|
-
transform: translateY(-3px) rotate(1deg);
|
|
47
|
-
}
|
|
48
|
-
50% {
|
|
49
|
-
transform: translateY(2px) rotate(-1deg);
|
|
50
|
-
}
|
|
51
|
-
75% {
|
|
52
|
-
transform: translateY(-1px) rotate(0.5deg);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.c-badge {
|
|
57
|
-
@include gradients.psychedelic-linear-gradient(
|
|
58
|
-
var(--atomix-tag-bg-color),
|
|
59
|
-
var(--atomix-tag-color)
|
|
60
|
-
);
|
|
61
|
-
@include trippy.trippy-glow(var(--atomix-tag-color), 20px);
|
|
62
|
-
@include trippy.float-animation();
|
|
63
|
-
|
|
64
|
-
// Add psychedelic animations
|
|
65
|
-
animation:
|
|
66
|
-
psychedelic-badge-shift 4s infinite linear,
|
|
67
|
-
badge-glow-pulse 2s infinite,
|
|
68
|
-
badge-float 3s ease-in-out infinite;
|
|
69
|
-
|
|
70
|
-
border: 1px solid var(--atomix-tag-color);
|
|
71
|
-
position: relative;
|
|
72
|
-
overflow: hidden;
|
|
73
|
-
border-radius: 20px;
|
|
74
|
-
|
|
75
|
-
&:hover {
|
|
76
|
-
@include trippy.trippy-glow(colors.$primary-6, 20px);
|
|
77
|
-
transform: scale(1.1) rotate(5deg);
|
|
78
|
-
|
|
79
|
-
// Enhance animations on hover
|
|
80
|
-
animation:
|
|
81
|
-
psychedelic-badge-shift 1s infinite linear,
|
|
82
|
-
badge-glow-pulse 0.5s infinite,
|
|
83
|
-
badge-float 1s ease-in-out infinite;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
&::after {
|
|
87
|
-
content: '';
|
|
88
|
-
position: absolute;
|
|
89
|
-
top: -50%;
|
|
90
|
-
left: -60%;
|
|
91
|
-
width: 20%;
|
|
92
|
-
height: 200%;
|
|
93
|
-
background: rgba(255, 255, 255, 0.3);
|
|
94
|
-
transform: rotate(25deg);
|
|
95
|
-
animation: shine 3s infinite linear;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
@keyframes shine {
|
|
99
|
-
0% {
|
|
100
|
-
left: -60%;
|
|
101
|
-
}
|
|
102
|
-
20% {
|
|
103
|
-
left: 20%;
|
|
104
|
-
}
|
|
105
|
-
40% {
|
|
106
|
-
left: 40%;
|
|
107
|
-
}
|
|
108
|
-
60% {
|
|
109
|
-
left: 60%;
|
|
110
|
-
}
|
|
111
|
-
80% {
|
|
112
|
-
left: 80%;
|
|
113
|
-
}
|
|
114
|
-
100% {
|
|
115
|
-
left: 120%;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// Psychedelic variant
|
|
120
|
-
&--psychedelic {
|
|
121
|
-
@include gradients.rainbow-gradient();
|
|
122
|
-
background-size: 300% 300%;
|
|
123
|
-
animation: rainbow-shift 3s ease infinite;
|
|
124
|
-
border: none;
|
|
125
|
-
|
|
126
|
-
&:hover {
|
|
127
|
-
animation: rainbow-shift 1s linear infinite;
|
|
128
|
-
transform: scale(1.2) rotate(10deg);
|
|
129
|
-
@include trippy.trippy-glow(white, 30px);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// Glowing variant
|
|
134
|
-
&--glow {
|
|
135
|
-
@include trippy.trippy-glow(var(--atomix-tag-bg-color), 30px);
|
|
136
|
-
animation: badge-glow-pulse 1s infinite;
|
|
137
|
-
|
|
138
|
-
&:hover {
|
|
139
|
-
@include trippy.trippy-glow(var(--atomix-tag-bg-color), 50px);
|
|
140
|
-
animation: badge-glow-pulse 0.3s infinite;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
// Floating variant
|
|
145
|
-
&--floating {
|
|
146
|
-
animation: badge-float 2s ease-in-out infinite;
|
|
147
|
-
|
|
148
|
-
&:hover {
|
|
149
|
-
animation: badge-float 0.5s ease-in-out infinite;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|