The Hyvä theme addresses Magento’s long-standing front-end performance issues by significantly reducing page weight and improving load times. Built with Alpine.js and Tailwind CSS, it offers a modern, lean architecture that enhances user experience and developer productivity. This leads to improved performance, faster development, and simpler maintenance for long-term scalability.
This article explores what the Hyvä theme is, how it differs from traditional Magento themes, and the measurable benefits it offers. Through an assessment of case studies and performance metrics, we will assist you in determining whether Hyvä represents the optimal solution for your Magento store's specific requirements and long-term strategic objectives.
What is Hyvä theme, and how is its adoption accelerating?
Hyvä theme is a modern frontend framework for Magento 2, purpose-built to deliver faster performance and simpler development using Magento’s native templating system. It is developed independently of Magento’s default themes and provides a clean, minimal foundation for building custom storefronts. Hyvä supports Magento Open Source and Adobe Commerce, and is fully aligned with Magento 2.4.3 and later.
Launched in February 2021 by a Netherlands-based company, Hyvä has gained traction among merchants and developers for its lean codebase and alignment with modern development practices.
The Hyvä theme has seen impressive growth in recent years:
- 127% more stores are now using Hyvä, with over 4,900 live stores compared to 2023.
- The number of agencies using Hyvä has grown by 21%, reaching 850 agencies with at least one theme license.
- Hyvä now supports over 1,600 modules, a 40% increase from before, demonstrating the growing range of tools it can integrate with.
These signals indicate growing trust in Hyvä as a reliable and modern frontend solution for Magento stores.
What makes Hyvä theme different?
Lean codebase built from the ground up
Hyvä stands out because it’s not just a modified version of Magento’s existing themes — it’s a complete rebuild. Instead of using Magento’s complex and layered frontend structure, Hyvä uses a simplified approach based on plain PHP templates and clean HTML.
Magento’s default themes (like Luma) use a layered frontend structure, which means the visual output of a page — what the customer sees — is generated through multiple layers of abstraction. To render a single element (like a product tile or the cart icon), Magento often involves:
- XML layout files – Define the structure of the page by specifying which blocks (like headers, product listings, etc.) should appear and where.
- UI Components – A framework combining XML and JavaScript to build interactive features like forms, filters, and dynamic content areas.
- Knockout.js – A JavaScript library used for real-time data binding, enabling dynamic updates in the UI (e.g. live cart totals, product price changes).
- RequireJS – Manages how JavaScript files are loaded asynchronously to support modular frontend logic, often powering UI Components and Knockout-based features.
- PHTML templates – Magento’s PHP-based template files that generate the final HTML output displayed in the browser.
This architecture offers flexibility, but introduces complexity. Because logic and layout are spread across XML, JavaScript, and template files, a developer often has to navigate four or five places just to make a small change, which slows down development and increases the chance of errors.
Magento layered structure also increases the number of files and scripts the browser must load and process. This extra weight and complexity slow down how quickly pages appear and respond, especially on mobile devices. As a result, stores built with Magento’s default themes often experience longer load times and lower performance scores.
Hyvä removes these layered dependencies and replaces them with a straightforward architecture that simplifies how the frontend is built:
- Pages are built using plain PHP (PHTML) templates: In Hyvä, the structure and content of each page are defined directly in Magento’s standard PHP-based templates (PHTML). HTML is rendered straight from the template, without relying on Magento’s XML layout files or UI Components. There’s no hidden layout logic in separate configuration files — what’s written in the template is what appears on the page.
In Luma, these templates are only one part of a more layered system—Layout is first defined in XML files, and rendering behaviour is often controlled by JavaScript-based systems. - Interactivity is handled with lightweight, inline JavaScript, not external frameworks: Hyvä uses Alpine.js, a minimal JavaScript tool that lets developers define behaviour (like dropdowns or tabs) directly within the HTML. There’s no need to load large libraries or manage separate script files.
In Luma, interactivity relies on RequireJS to load JavaScript modules and Knockout.js for real-time UI updates, which adds more complexity and browser overhead.
This streamlined approach keeps Hyvä’s codebase lean and easy to manage. It reduces file loading, simplifies customisations, and gives developers full control over what appears on the page. All of these contribute to faster development and improved site performance.
Removing Magento’s legacy stack while preserving its templating system
Building a lean codebase from the ground up means more than starting fresh — it means making intentional choices about what to leave behind. Hyvä’s simplified structure is made possible by removing several legacy technologies used in Magento’s default themes:
What Hyvä removes:
- RequireJS & Knockout.js: Magento’s default themes rely on RequireJS and Knockout.js to handle JavaScript loading and UI data binding. RequireJS breaks JavaScript into hundreds of small files loaded asynchronously, leading to excessive network requests. Knockout.js adds further weight and complexity through its data-binding logic. Together, they increase browser workload and slow down how quickly a page becomes interactive.
Hyvä removes both RequireJS and Knockout, which dramatically reduces the JavaScript payload. This change speeds up page loads and improves responsiveness, especially on mobile. - jQuery: A large library loaded by default in Luma, even when unused. This adds unnecessary weight to every page and can slow down site performance. Hyvä removes jQuery entirely to reduce page load time and simplify the frontend.
- LESS: Magento uses LESS for styling, which requires compiling before styles appear in the browser. As customisations grow, LESS becomes harder to manage and slows down development.
Hyvä replaces it with Tailwind CSS, simplifying the styling process and reducing the complexity of managing frontend design. - UI Components: Magento’s UI Components are a framework used to build complex frontend features such as filters, product listings, and form elements. UI Components are often seen as overly complicated, difficult to customise, and a common source of performance issues.
Hyvä removes UI Components entirely, simplifying the way frontend features are built.
While Hyvä rebuilds the frontend from the ground up, it still follows Magento’s core templating architecture.
What Hyvä keeps:
- PHTML templates: Magento’s standard template files are used to control page structure and content. Hyvä keeps them to maintain familiar rendering logic and simplify layout changes.
- Layout XML: Controls which blocks are loaded on a page, their order, and where they appear within containers. Hyvä keeps this system so developers can manage page structure using Magento’s standard layout instructions.
- Blocks and ViewModels: Hyvä retains the backend logic that connects data to frontend templates, so business logic remains fully integrated.
- Magento admin compatibility: All CMS and admin tools remain unchanged, so content and configuration stay manageable through the standard interface.
Hyvä replaces Magento’s legacy stack with a simpler, faster approach — but keeps the parts that matter most. This makes it easier to adopt, quicker to develop on, and fully compatible with Magento’s core architecture.
Using Magento-optimised tools
Hyvä uses a carefully selected set of modern, lightweight tools to replace Magento’s complex and resource-heavy frontend stack. These tools simplify styling, interactivity, and feature development—laying the foundation for better performance and easier customisation.
- Tailwind CSS for styling: Tailwind CSS defines the visual style of a storefront, including layout, colours, spacing, and fonts. It’s a utility-based framework, which means developers use ready-made style options directly in the code instead of writing custom CSS. This makes it faster to design pages and easier to customise templates. It also creates smaller CSS files, which helps your site load faster.
- Alpine.js for interactivity: Alpine.js powers interactive elements on Magento sites that respond to customers’ actions like clicks, taps, or toggles.
It enables developers to write behaviour directly within HTML templates with no complex setup or separate JavaScript files. This simplifies both development and customisation, allowing developers to work faster and with less effort. Alpine.js is also extremely lightweight (significantly smaller than Knockout.js), which helps reduce JavaScript overhead and improves page loading speed. - Modular interface components: Hyvä provides a growing library of pre-built components, such as buttons, forms, product tiles, and filters. These are built using clean HTML and Alpine.js, making them lightweight and easy to customise. This modular setup allows development teams to implement new features or customise the store’s design or functionality faster.
- Built-in performance enhancements: Hyvä includes native performance features, such as image lazy loading, which can be enabled directly in the Magento Admin (from version 1.3.10). These features reduce the initial page load time by deferring non-critical content until it's needed. In contrast, Magento’s default theme (Luma) does not natively support lazy loading and often requires custom development to enable it.
Comprehensive ecosystem and community support
Hyvä offers more than just technical improvements, it delivers a comprehensive ecosystem and community support with tangible business benefits.
- Full-featured commerce toolkit: Hyvä offers a complete frontend solution—including a base theme, UI component library, and checkout system—designed to work seamlessly together. This reduces the need to assemble separate third-party solutions, streamlines setup, and ensures consistency across the storefront.
- Module compatibility infrastructure: Hyvä is built to support Magento’s rich module ecosystem, with over 1,600 compatible modules and more being added regularly. This minimises the need for redevelopment when transitioning to a new frontend, reducing compatibility risks and enabling businesses to retain existing modules.
- Active community and support: Hyvä is supported by a strong global community, with over 5,500 developers active on Slack and more than 8,000 contributors on GitLab. This extensive network encourages collaboration, with members regularly sharing compatibility modules, implementation guides, and technical solutions.
In addition, more than 850 agencies across 79 countries now work with Hyvä, giving you access to experienced professionals for building and optimising your Magento storefront. This vibrant ecosystem helps accelerate development, reduce troubleshooting time, and ensure reliable support as your store grows.
The most valuable benefits of using Hyvä theme
Hyvä introduces core differences that deliver clear benefits for both merchants and developers. Its lean codebase, with the removal of Magento legacy stacks, improves site speed and performance by reducing page weight and load times. The use of modern development tools like Tailwind CSS and Alpine.js streamlines the build process, helping reduce development time and cost. Finally, Hyvä’s growing ecosystem and active developer community make it easier to maintain and extend the storefront over time.


Significantly improved website performance
As outlined above in “Lean codebase built from the ground up”, Hyvä delivers major performance gains by removing Magento’s legacy frontend stack and replacing it with a lean, modern architecture. This shift leads to improved Magento website performance results as below:
- Better Core Web Vitals: Core Web Vitals are Google’s key performance metrics for real user experience, and they influence both search rankings and user engagement. Hyvä is designed to excel in these metrics by simplifying how pages are built and reducing the amount of code the browser has to load.
According to Google's data, Hyvä outperforms other Magento frontend alternatives by 250% in terms of passing Core Web Vitals (CWVs). Specifically, over 50% of Hyvä-powered stores meet CWV standards, compared to 19% for standard Magento themes, 6% for Vue Storefront, and 2.4% for PWA Studio. - Faster page load: Hyvä Theme delivers significantly faster load times by stripping away Magento’s legacy frontend bloat. Compared to Luma, Hyvä reduces page requests by 98% (from 230 to 5) and cuts page weight by 86% (from around 3MB to 0.4MB). These optimisations lead to real-world speed improvements: Stores transitioning to Hyvä achieve higher Google PageSpeed scores and faster load times.
- Mobile usability and responsiveness: Hyvä Theme dramatically enhances mobile usability and responsiveness for Magento 2 stores by leveraging Tailwind CSS's built-in responsive utilities. This approach eliminates the need for custom overrides and breakpoint management typical with Luma, streamlining development and ensuring consistent layouts across devices. Many Hyvä-powered stores are seeing substantial improvements in load times, responsiveness, and overall performance across both mobile and desktop.
- Accessibility performance: Accessibility is increasingly vital for eCommerce merchants, both to meet legal requirements and to ensure inclusivity for all users. Non-compliant websites risk excluding customers with disabilities, potentially violating regulations like WCAG 2.1 or the ADA, and harming brand reputation.
Hyvä theme addresses these concerns by integrating accessibility features directly into its core. Since version 1.3.0, the theme includes semantic HTML, ARIA attributes, keyboard navigation, and features like focus management for modals. These improvements make it easier to meet compliance goals, improve usability, and increase conversions through more inclusive design.
By optimising performance, using the Hyvä theme leads to improvements in both SEO and conversion rates.
- Enhanced SEO ranking: Stores using Hyvä theme often see measurable SEO improvements due to its direct impact on site speed, a key ranking factor in Google’s algorithm. The cleaner codebase also lowers the risk of technical SEO issues, such as slow server response times and bloated HTML, making it easier for search engines to index content accurately.
- Higher conversion rates: Improved load times and CWVs contribute to smoother shopping experiences, reducing bounce rates and increasing the likelihood of completing purchases, resulting in a higher conversion rate.
The impact of adopting Hyvä extends beyond technical optimisation, influencing core business metrics. Improvements in site performance, mobile usability, and accessibility help attract new customers while also reinforcing brand credibility. These factors contribute to stronger customer engagement, increase the likelihood of repeat purchases, and ultimately drive higher customer lifetime value. Together, these outcomes support more sustainable and profitable business growth over time.
Proven results with real-world case study: Temple Spa
TEMPLESPA, a luxury skincare and spa brand, initially struggled with slow loading times and poor CWV scores, affecting both user experience and organic search visibility. After transitioning to the Hyvä theme, the store saw a 65% reduction in load times and dramatic improvements in its Core Web Vitals scores. Conversion rates also increased within the first three months post-launch, especially on mobile devices.
Faster time to market and reduced development costs
Hyvä simplifies the Magento frontend build process through its HTML-first architecture and pre-built UI components. These efficiency gains translate directly into faster launches, lower development costs, and more predictable returns on frontend investment.
- Faster time-to-market: By eliminating Magento’s legacy UI components and replacing them with a leaner, more maintainable frontend stack, Hyvä reduces the time required to develop, customise, and deploy new features. Typical Hyvä builds are completed 30–50% faster than those using the Luma theme. This acceleration enables earlier launches of seasonal campaigns, redesigns, and product rollouts—an advantage that can be critical for businesses in fast-moving markets, as it strengthens competitive positioning and supports revenue growth.
- Reduced total project costs: By simplifying the frontend architecture, Hyvä reduces development complexity and shortens project timelines. This is particularly beneficial for complex builds or stores that require frequent updates, as it often lead to substantial cost savings across the project lifecycle.
- Faster return on investment: With shorter build cycles and earlier go-live dates, Hyvä allows businesses to start generating revenue sooner. A project launched 2–3 months earlier than its Luma equivalent can benefit from earlier traffic acquisition, faster feature monetisation, and a quicker payback period on development investment. This accelerated return is particularly valuable for startups, replatforming initiatives, and organisations with time-sensitive go-to-market strategies.
Proven results with real-world case studies
Hyvä's effectiveness in customising design and developing features is demonstrated through several case studies:
- Royal Dutch Post: This established postal service revamped its B2B online store selling packaging solutions in just 12 weeks by migrating from Shopware 6 to Magento 2 with Hyvä theme and Hyvä checkout. The rapid migration was made possible by Hyvä’s simplified architecture and component reuse, enabling a fast go-live for their B2B packaging store.
- JC-Electronics: Being a B2B business selling electronics equipment, JC-Electronics implemented Hyvä’s full suite, including theme, checkout, and enterprise, in 4 months with only two in-house Magento experts. This demonstrates Hyvä’s efficiency even with limited resources, allowing JC-Electronics to allocate resources to other strategic initiatives while still launching their enhanced store on schedule.
- Adopt Parfums: Adopt Parfums transitioned to Hyvä in 4 months with a lean team of four developers, handling over 2,000 active SKUs and frequent collection launches. Both the agency and the client estimated that using Hyvä halved the development time compared to other solutions, enabling the brand to capitalise on seasonal sales opportunities without compromising on quality.
- On Tap client case (TEMPLESPA): Hyvä reduced development time by 40%, resulting in faster delivery of new storefronts and cost savings across the entire build phase.
Easy maintenance and upgrade for long-term scalability
Hyvä enables long-term scalability by replacing Magento’s complex frontend stack with a simplified, modern architecture. Combined with a growing ecosystem and active community support, Hyvä reduces maintenance effort and makes it easier to upgrade, extend, and future-proof Magento storefronts.
This combination lowers ongoing maintenance expenses, enables efficient updates and allows teams to scale faster with fewer technical bottlenecks.
- Lower ongoing maintenance expenses: Hyvä’s simplified codebase reduces the time and effort required for routine tasks such as performance tuning, updates, and debugging. Compared to Luma-based themes, its streamlined architecture allows developers to resolve issues more efficiently and with fewer development hours.
In addition, Hyvä’s lean architecture significantly reduces page weight and the number of server requests required to load each page. As a result, sites can handle higher traffic levels without requiring additional infrastructure or maintain existing capacity at a lower cost, helping reduce ongoing operational expenses. - Efficient update pathways: Hyvä’s clean architecture and modern frontend stack reduce the complexity of making changes by improving code clarity and limiting interdependencies. This makes it easier for developers to update specific functionality without unintended side effects. As a result, updates—such as performance tuning, bug fixes, or security patches—can be applied more quickly and with less risk of introducing errors, reducing both the effort and cost of ongoing site maintenance.
Hyvä’s modern foundation not only accelerates initial development but also simplifies future updates and maintenance. This reduces technical debt and supports long-term growth strategies with lower resource overhead.
Proven results with real-world case studies
Megadental, a leading French B2B dental supplier, faced high complexity and limited flexibility with its previous Magento frontend. After switching to the Hyvä theme, the company enabled its in-house team to fully manage and evolve the storefront independently, removing reliance on external agencies. Hyvä’s clean, modern architecture allowed Megadental to allocate just 2 days per month to site upgrades and continuous improvements.
Things you should consider before using Hyvä theme


While Hyvä theme offers compelling benefits for Magento store owners, implementing it requires careful consideration of several key factors. Making an informed decision about adopting this frontend solution demands a thorough evaluation of costs, compatibility with your Magento version, and implementation capabilities.
Cost of using Hyvä
Hyvä requires a one-time licence fee of €1,000 for each Magento 2 installation. This includes unlimited domains and store views. While this is a notable upfront cost compared to Magento’s default Luma theme, the overall cost of building and maintaining a store with Hyvä often works out favourably over time.
Initial costs
- For new Magento stores: Aside from the licence fee, setting up a store with Hyvä involves the same core expenses as with Luma. You will need to budget for theme development, module integration, and custom design work. In most cases, the overall implementation cost is similar, with the Hyvä licence being the only added line item.
- For existing Magento stores migrating to Hyvä: Besides the licence fee, migration costs might include theme transition expenses, refactoring custom features, and potentially training developers unfamiliar with Hyvä's technologies. Yet, the learning curve is mild. Even for developers unfamiliar with Tailwind CSS and Alpine.js, most developers adapt quickly and become productive with Hyvä in a short period.
Ongoing expenses:
Hyvä’s clean, minimal architecture reduces complexity, making routine updates and customisations more efficient. Over time, this translates into lower maintenance costs, particularly when compared with the overhead of managing a Luma-based frontend.
Cost-benefit analysis
The decision to adopt Hyvä depends on your specific cost-benefit analysis. For new websites, Hyvä is often a worthwhile investment as it provides a solid foundation for future growth and profitability. For existing stores that consider migrating to the Hyvä theme, the decision to switch should be evaluated with a long-term view, considering factors such as development goals, migration costs, and potential performance improvements. By weighing these factors, you can determine if Hyvä aligns with their strategic objectives and provides the best return on investment.
It’s important to note that Hyvä’s lifetime updates apply only to the theme itself, while Magento core upgrades remain the merchant’s responsibility. Each new Adobe release requires upgrading the platform, reviewing and updating custom Hyvä code, checking module compatibility, and fully retesting the site. Because Adobe publishes new versions and security patches frequently, this cycle repeats throughout the year, creating ongoing time, effort, and cost for merchants.
To eliminate this recurring burden, On Tap provides Evergreen free lifetime upgrades after your first project. This significantly reduces long-term maintenance effort and total cost of ownership. Your store is fully optimised during the initial engagement, and our team then handles every scheduled Adobe release, keeping your Magento platform clean, current, and consistently high-performing without ongoing upgrade costs.
Magento version compatibility
Hyvä is fully compatible with Magento 2.4 and later, across both Adobe Commerce and Magento Open Source editions. The theme is actively maintained and updated to align with the latest Magento 2 releases, ensuring compatibility with new features and ongoing security patches.
Stores running on versions earlier than Magento 2.4 are not supported by Hyvä and would require an upgrade to adopt the theme. Upgrading to Magento 2.4 or higher not only enables Hyvä compatibility but also provides access to broader platform improvements, including enhanced security, better performance, and new functionality.
When considering this path, it’s important to weigh the costs and effort of upgrading against the long-term benefits of platform stability, extended support, and the performance gains associated with using Hyvä.
Developer capabilities
To fully leverage the benefits of the Hyvä theme, you need a team of experienced developers with specific skill sets:
- Experience with Magento 2 frontend development: Developers should have a strong foundation in Magento 2, particularly its theming structure, layout XML, and templating system.
- Proficiency in Tailwind CSS and Alpine.js: Developers should be confident working with Tailwind CSS and Alpine.js, which are central to Hyvä’s frontend stack. This includes the ability to structure responsive layouts using utility classes, manage component-level interactions with Alpine.js, and maintain clean, scalable code. Experience with these tools directly supports faster development cycles and streamlined maintenance.
- Understanding of performance best practices: Although Hyvä provides a fast foundation, optimal performance still depends on frontend implementation. Developers should be skilled in performance best practices such as lazy loading, minimising JavaScript, optimising asset delivery, and maintaining clean markup to achieve strong Core Web Vitals and user experience scores.
- Capability to integrate third-party modules: While Hyvä supports a growing number of compatible modules, some may require adaptation, particularly those with frontend components built for Luma. Developers must be capable of evaluating module compatibility and applying custom modifications without compromising performance or stability.
- Familiarity with the Hyvä ecosystem and tooling: Developers should also be comfortable navigating Hyvä’s developer documentation, GitHub repositories, and community forums. Access to official training materials, example implementations, and community support can significantly accelerate project onboarding and delivery.
In conclusion, while there may be an initial learning curve for developers new to the Hyvä ecosystem, the theme is gaining widespread adoption within the Magento community. It is backed by comprehensive documentation, regular updates, and an active developer community. This support structure enables developers to quickly leverage Hyvä’s performance benefits and integrate it into Magento projects.
Discover more: If you’re interested in taking your Magento store further, explore our Magento 2 development services for tailored solutions.
Conclusion
Hyvä theme offers a fundamentally different approach to Magento frontend development. Its simplified architecture—built on Tailwind CSS, Alpine.js, and clean HTML—eliminates legacy complexity and accelerates both delivery and performance. As highlighted throughout this guide, Hyvä delivers measurable business benefits: Improved website performance, reduced development cycles and project costs, and simplified upgrade and maintenance. These gains enable merchants to bring storefronts to market faster, achieve a faster return on investment and scale with less friction.
As a Hyvä silver partner, On Tap offers comprehensive Hyvä theme development services to help you unlock the full potential of the Hyvä theme and enhance your Magento storefronts. Our team has completed multiple successful Hyvä projects, demonstrating the ability to maximise the theme's performance benefits while efficiently managing the development process. Contact us for a free consultation today!
FAQs about the Hyvä theme
What is the cost of using the Hyvä theme?
The cost of using Hyvä Theme involves a one-time license fee of €1,000, which grants lifetime access to the theme, including unlimited updates and support through the Hyvä community. This fee is exclusive of VAT and applies to a single Magento 2 installation across all store views and domains. While there are no recurring charges, additional costs may arise from customisation and implementation services, depending on the complexity of the project.
It’s important to note that Hyvä’s lifetime updates apply only to the theme itself, while Magento core upgrades remain the merchant’s responsibility. Each new Adobe release requires upgrading the platform, reviewing and updating custom Hyvä code, checking module compatibility, and fully retesting the site. Because Adobe publishes new versions and security patches frequently, this cycle repeats throughout the year, creating ongoing time, effort, and cost for merchants.
To eliminate this recurring burden, On Tap provides Evergreen free lifetime upgrades after your first project. This significantly reduces long-term maintenance effort and total cost of ownership. Your store is fully optimised during the initial engagement, and our team then handles every scheduled Adobe release, keeping your Magento platform clean, current, and consistently high-performing without ongoing upgrade costs.
What is the migration/build time for Hyvä?
The migration or build time for the Hyvä theme varies based on the project's complexity. Basic implementations can take a few weeks, while more complex projects with extensive customisation may require several months. The time required also depends on the developer's familiarity with Hyvä's technologies, such as Tailwind CSS and Alpine.js.
Several factors influence the timeline:
- The complexity of your current design and functionality
- The number of third-party modules requiring compatibility solutions
- The extent of custom features that need reimplementation
- Your development team's familiarity with Hyvä's modern tech stack
Notably, whilst the initial migration requires significant effort, subsequent development and maintenance become much more efficient. Many Hyvä stores report up to 50% reduced time for implementing new features post-migration, making the initial investment worthwhile for stores planning long-term growth and ongoing development.
Carbon, an On Tap's Hyvä-based rapid deployment framework, enables Magento stores to launch in weeks rather than months. Its complete set of 100+ pre-integrated features, combined with On Tap handling all configuration and customisation, removes the lengthy development work normally required for a Magento rebuild.
Beyond the accelerated timeline, Carbon delivers a cleaner, faster and more consistent buying experience, shaped by nearly two decades of On Tap’s real-world UX and performance expertise.
Carbon comes with free lifetime upgrades, ensuring your Hyvä storefront stays compatible with future Magento and Adobe Commerce releases, without recurring upgrade costs.
What is the difference between Hyvä and Luma?
Hyvä Theme differs significantly from Magento's default Luma theme in several key areas.
- Performance: Hyvä is designed to be lightweight, using modern technologies like Tailwind CSS and Alpine.js to reduce unnecessary JavaScript and CSS files, resulting in faster page loads and better performance metrics.
- Development complexity: Hyvä simplifies development by eliminating complex tools like RequireJS and Knockout, making it easier for developers to create and maintain custom features.
- Cost: While Luma is free, Hyvä requires a one-time licence fee, but it offers long-term cost savings through reduced maintenance and development time. Overall, Hyvä provides a more streamlined and efficient frontend solution compared to Luma, making it a valuable choice for businesses seeking enhanced performance and scalability.


