diff --git a/clarity_backend_theme_bits/__init__.py b/clarity_backend_theme_bits/__init__.py
new file mode 100644
index 0000000..72f4562
--- /dev/null
+++ b/clarity_backend_theme_bits/__init__.py
@@ -0,0 +1 @@
+from . import controller
\ No newline at end of file
diff --git a/clarity_backend_theme_bits/__manifest__.py b/clarity_backend_theme_bits/__manifest__.py
new file mode 100644
index 0000000..357a5b9
--- /dev/null
+++ b/clarity_backend_theme_bits/__manifest__.py
@@ -0,0 +1,65 @@
+{
+ "name": "Clarity Backend Theme for community",
+ "version": "18.0.1.0.2",
+ 'author': "Terabits Technolab",
+ 'summary': """
+ Clarity backend theme
+ Odoo Backend Theme, Odoo Community Backend Theme, Web backend Theme, Web Responsive Odoo Theme, New theme design, New design, Multi Level Menu,
+ Web Responsive , Odoo Theme, Odoo Modern Theme, Odoo Modern Backend Theme Odoo, Advance Theme Backend Advanced, Left sidebar menu,
+ All in one, New advanced Odoo Menu, Sidebar apps, Web menu, Odoo backend menu, Web Responsive menu, Sidebar dark,
+ Advance Menu Odoo App Menu Apps, Advanced Apps Menu, Elegant Menu, Web App Menu Backend, Menu Odoo Backend, Collapse Menu, Light Sidebar,
+ Expand Menu, Collapsed Menu, Expanded Menu, New Style Menus, Advanced Sidebar Menu, Advance Sidebar Menu, Responsive Menu Sidebar, Sidebar Theme,
+ Responsive Sidebar, Hide menu, Show Menu, Hide Sidebar, Show Sidebar, Toggle Menu, Toggle Sidebar, Menu Theme,
+ Quick Backend Menu, Dropdown Menu, Parent Menus, Shortcut Menus, Menu Icons, Collapsible menu Odoo,
+ Menu Dynamic Sidebar, Advanced Menu, Backend Odoo Web, Elegant Theme Simple, Advance List View Manager,
+ Arc Backend Theme, Fully Functional Theme, Flexible Backend Theme, Fast Backend Theme, Advance Material Backend Theme, Customizable Backend Theme,
+ Attractive Theme for Backend, Elegant Backend Theme, Responsive Web Client, Backend UI, Mobile Responsive for Odoo Community,
+ Flexible Enterprise Theme, Enterprise Backend Theme
+ """,
+ 'description': """
+ Clarity backend theme
+ Odoo Backend Theme, Odoo Community Backend Theme, Web backend Theme, Web Responsive Odoo Theme, New theme design, New design, Multi Level Menu,
+ Web Responsive , Odoo Theme, Odoo Modern Theme, Odoo Modern Backend Theme Odoo, Advance Theme Backend Advanced, Left sidebar menu,
+ All in one, New advanced Odoo Menu, Sidebar apps, Web menu, Odoo backend menu, Web Responsive menu, Sidebar dark,
+ Advance Menu Odoo App Menu Apps, Advanced Apps Menu, Elegant Menu, Web App Menu Backend, Menu Odoo Backend, Collapse Menu, Light Sidebar,
+ Expand Menu, Collapsed Menu, Expanded Menu, New Style Menus, Advanced Sidebar Menu, Advance Sidebar Menu, Responsive Menu Sidebar, Sidebar Theme,
+ Responsive Sidebar, Hide menu, Show Menu, Hide Sidebar, Show Sidebar, Toggle Menu, Toggle Sidebar, Menu Theme,
+ Quick Backend Menu, Dropdown Menu, Parent Menus, Shortcut Menus, Menu Icons, Collapsible menu Odoo,
+ Menu Dynamic Sidebar, Advanced Menu, Backend Odoo Web, Elegant Theme Simple, Advance List View Manager,
+ Arc Backend Theme, Fully Functional Theme, Flexible Backend Theme, Fast Backend Theme, Advance Material Backend Theme, Customizable Backend Theme,
+ Attractive Theme for Backend, Elegant Backend Theme, Responsive Web Client, Backend UI, Mobile Responsive for Odoo Community,
+ Flexible Enterprise Theme, Enterprise Backend Theme
+ """,
+ "sequence": 7,
+ "license": "OPL-1",
+ "category": "Themes/Backend",
+ "website": "https://www.terabits.xyz",
+ "depends": ["web"],
+ "data": [
+ 'views/res_config_setting.xml',
+ 'views/res_users.xml',
+ 'views/webclient_templates.xml'
+ ],
+ "assets": {
+ "web.assets_frontend": [
+ 'clarity_backend_theme_bits/static/src/scss/login.scss'
+ ],
+ "web.assets_backend": [
+ 'clarity_backend_theme_bits/static/src/xml/WebClient.xml',
+ 'clarity_backend_theme_bits/static/src/xml/navbar/sidebar.xml',
+ 'clarity_backend_theme_bits/static/src/xml/systray_items/user_menu.xml',
+ 'clarity_backend_theme_bits/static/src/js/SidebarBottom.js',
+ 'clarity_backend_theme_bits/static/src/js/WebClient.js',
+ 'clarity_backend_theme_bits/static/src/scss/layout.scss',
+ 'clarity_backend_theme_bits/static/src/scss/navbar.scss',
+ 'clarity_backend_theme_bits/static/src/js/navbar.js',
+ ],
+ },
+ 'installable': True,
+ 'application': True,
+ 'auto_install': False,
+ 'images': [
+ 'static/description/logo.gif',
+ 'static/description/theme_screenshot.gif',
+ ],
+}
diff --git a/clarity_backend_theme_bits/controller/__init__.py b/clarity_backend_theme_bits/controller/__init__.py
new file mode 100644
index 0000000..deec4a8
--- /dev/null
+++ b/clarity_backend_theme_bits/controller/__init__.py
@@ -0,0 +1 @@
+from . import main
\ No newline at end of file
diff --git a/clarity_backend_theme_bits/controller/main.py b/clarity_backend_theme_bits/controller/main.py
new file mode 100644
index 0000000..64e2485
--- /dev/null
+++ b/clarity_backend_theme_bits/controller/main.py
@@ -0,0 +1,17 @@
+import datetime
+import pytz
+from odoo import http, models, fields, api, tools
+from odoo.http import request
+
+class BackThemeBits(http.Controller):
+ @http.route(['/get/menu_data'], type='json', auth='public')
+ def get_irmenu_icondata(self, **kw):
+ menuobj = request.env['ir.ui.menu']
+ menu_recs = request.env['ir.ui.menu'].sudo().search(
+ [('id', 'in', kw.get('menu_ids'))])
+
+ app_menu_dict = {}
+ for menu in menu_recs:
+ menu_dict = menu.read(set(menuobj._fields))
+ app_menu_dict[menu.id] = menu_dict
+ return app_menu_dict
\ No newline at end of file
diff --git a/clarity_backend_theme_bits/static/description/icon.png b/clarity_backend_theme_bits/static/description/icon.png
new file mode 100644
index 0000000..873c613
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/icon.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/1.png b/clarity_backend_theme_bits/static/description/images/1.png
new file mode 100644
index 0000000..14725d0
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/1.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/2.png b/clarity_backend_theme_bits/static/description/images/2.png
new file mode 100644
index 0000000..b2774c6
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/2.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/3.png b/clarity_backend_theme_bits/static/description/images/3.png
new file mode 100644
index 0000000..c0c1ce1
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/3.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/4.png b/clarity_backend_theme_bits/static/description/images/4.png
new file mode 100644
index 0000000..8b22c4d
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/4.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/5.png b/clarity_backend_theme_bits/static/description/images/5.png
new file mode 100644
index 0000000..b728874
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/5.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/6.png b/clarity_backend_theme_bits/static/description/images/6.png
new file mode 100644
index 0000000..07b4536
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/6.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/7.png b/clarity_backend_theme_bits/static/description/images/7.png
new file mode 100644
index 0000000..9ce6851
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/7.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/8.png b/clarity_backend_theme_bits/static/description/images/8.png
new file mode 100644
index 0000000..c71be24
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/8.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/9.png b/clarity_backend_theme_bits/static/description/images/9.png
new file mode 100644
index 0000000..deeb181
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/9.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/analytix_banner.png b/clarity_backend_theme_bits/static/description/images/analytix_banner.png
new file mode 100644
index 0000000..ecf2412
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/analytix_banner.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/banner.png b/clarity_backend_theme_bits/static/description/images/banner.png
new file mode 100644
index 0000000..a37266e
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/banner.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/blog_feat_bg_02.png b/clarity_backend_theme_bits/static/description/images/blog_feat_bg_02.png
new file mode 100644
index 0000000..972b822
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/blog_feat_bg_02.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/blog_post_bg_01.png b/clarity_backend_theme_bits/static/description/images/blog_post_bg_01.png
new file mode 100644
index 0000000..1dbb707
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/blog_post_bg_01.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/blog_ss_bg_03.png b/clarity_backend_theme_bits/static/description/images/blog_ss_bg_03.png
new file mode 100644
index 0000000..a91b967
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/blog_ss_bg_03.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/blogpost_header_img.png b/clarity_backend_theme_bits/static/description/images/blogpost_header_img.png
new file mode 100644
index 0000000..e7d2162
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/blogpost_header_img.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/clarity_pro_banner.png b/clarity_backend_theme_bits/static/description/images/clarity_pro_banner.png
new file mode 100644
index 0000000..d6330b1
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/clarity_pro_banner.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/faqs_icon.png b/clarity_backend_theme_bits/static/description/images/faqs_icon.png
new file mode 100644
index 0000000..c453817
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/faqs_icon.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/icon_img.png b/clarity_backend_theme_bits/static/description/images/icon_img.png
new file mode 100644
index 0000000..12db9a7
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/icon_img.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/main-b.png b/clarity_backend_theme_bits/static/description/images/main-b.png
new file mode 100644
index 0000000..a988f5d
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/main-b.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/new-sam-banner.gif b/clarity_backend_theme_bits/static/description/images/new-sam-banner.gif
new file mode 100644
index 0000000..4feda0a
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/new-sam-banner.gif differ
diff --git a/clarity_backend_theme_bits/static/description/images/release_date_bg.png b/clarity_backend_theme_bits/static/description/images/release_date_bg.png
new file mode 100644
index 0000000..45df693
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/release_date_bg.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/release_icon.png b/clarity_backend_theme_bits/static/description/images/release_icon.png
new file mode 100644
index 0000000..6cd33e2
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/release_icon.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/simplify_banner_bg.png b/clarity_backend_theme_bits/static/description/images/simplify_banner_bg.png
new file mode 100644
index 0000000..1b35c61
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/simplify_banner_bg.png differ
diff --git a/clarity_backend_theme_bits/static/description/images/suggest-app-bg.png b/clarity_backend_theme_bits/static/description/images/suggest-app-bg.png
new file mode 100644
index 0000000..0459026
Binary files /dev/null and b/clarity_backend_theme_bits/static/description/images/suggest-app-bg.png differ
diff --git a/clarity_backend_theme_bits/static/description/index.html b/clarity_backend_theme_bits/static/description/index.html
new file mode 100644
index 0000000..df1b414
--- /dev/null
+++ b/clarity_backend_theme_bits/static/description/index.html
@@ -0,0 +1,757 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Clarity Backend Theme
+
+
+ Odoo community backend theme
+
+
+ The clarity backend theme have amazing appearance on any device and is easy to
+ switch between all screen sizes. Clicking on any menu is made simple with an
+ contemporary and modern sidebar. You can browse across different apps using
+ elegant sidebar menu.The theme is designed, keeping in mind the delivery of
+ great user experience and user-friendly interface to your users.
+
+
+
+
+
+
+
+
+ App Drawer design for Community Addition
+
+
+
+
+
+
+
+ Login & Signup Redesign
+
+
+
+
+
+
+
+ Customized Discuss view design
+
+
+
+
+
+
+
+ Show brand's logo in menu
+
+
+
+
+
+
+
+ Customzed List, Form, Kanban view design
+
+
+
+
+
+
+
+ Responsive sidebar design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom discuss view
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Interactive and clean design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom list view design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom kanban view design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom form view design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom sign up design
+
+
(The login/signup design will appear only the backend login/signup view.
+ It will not appear in the website login/signup view.)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom login design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Custom reset form design
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set company logo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Clarity Pro Backend Theme
+
+ The clarity backend theme have amazing appearance on any device and is easy to switch between all screen sizes.
+ The theme is designed, keeping in mind the delivery of great user experience and user-friendly interface to your users.
+
+
+
+
+ Main menu for community
+
+
+ Sidebar menu/top menu
+
+
+ Multi tabs management
+
+
+
+
+ Global search
+
+
+ Global search in record
+
+
+ Global search in menu
+
+
+
+
+ Multi font style
+
+
+ Multi icon style
+
+
+ Custom color schemes
+
+
+
+
+
diff --git a/jazzy_backend_theme/README.rst b/jazzy_backend_theme/README.rst
new file mode 100644
index 0000000..982eccd
--- /dev/null
+++ b/jazzy_backend_theme/README.rst
@@ -0,0 +1,47 @@
+.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg
+ :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
+ :alt: License: LGPL-3
+
+Jazzy Backend Theme
+===================
+* Jazzy Backend Theme module for Odoo 18 community editions. This is a Minimalist and Elegant Backend Theme for Odoo 17. This theme will change your Old Experience to a New Experience with Odoo.
+
+Configuration
+-------------
+ - www.odoo.com/documentation/18.0/setup/install.html
+ - Install our custom addon
+
+Company
+-------
+* `Cybrosys Techno Solutions `__
+
+License
+-------
+General Public License, Version 3 (LGPL v3).
+(https://www.gnu.org/licenses/lgpl-3.0-standalone.html)
+
+Credits
+-------
+Developer: (V17) Developer ADVAITH BG, Contact: odoo@cybrosys.com
+ (V18) Developer ATHIRA K, Contact: odoo@cybrosys.com
+Contacts
+--------
+* Mail Contact : odoo@cybrosys.com
+* Website : https://cybrosys.com
+
+Bug Tracker
+-----------
+Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
+
+Maintainer
+--------
+This module is maintained by Cybrosys Technologies.
+
+For support and more information, please visit https://www.cybrosys.com
+
+.. image:: https://cybrosys.com/images/logo.png
+ :target: https://cybrosys.com"
+
+Further information
+-----------------
+HTML Description: ``__
diff --git a/jazzy_backend_theme/__init__.py b/jazzy_backend_theme/__init__.py
new file mode 100644
index 0000000..6eeac83
--- /dev/null
+++ b/jazzy_backend_theme/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from . import models
diff --git a/jazzy_backend_theme/__manifest__.py b/jazzy_backend_theme/__manifest__.py
new file mode 100644
index 0000000..ef7d994
--- /dev/null
+++ b/jazzy_backend_theme/__manifest__.py
@@ -0,0 +1,58 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+{
+ "name": "Jazzy Backend Theme",
+ "version": "18.0.1.0.0",
+ "category": "Themes/Backend",
+ "summary": "Jazzy backed Theme is an attractive theme for backend",
+ "description": """Minimalist and elegant backend theme for Odoo Backend""",
+ "author": "Cybrosys Techno Solutions",
+ "company": "Cybrosys Techno Solutions",
+ "maintainer": "Cybrosys Techno Solutions",
+ "website": "https://www.cybrosys.com",
+ "depends": ["web", "mail"],
+ "data": [
+ 'views/layout_templates.xml',
+ 'views/res_config_settings_views.xml',
+ ],
+ 'assets': {
+ 'web.assets_backend': [
+ 'jazzy_backend_theme/static/src/components/app_menu/side_menu.xml',
+ 'jazzy_backend_theme/static/src/layout/style/layout_colors.scss',
+ 'jazzy_backend_theme/static/src/components/app_menu/menu_order.css',
+ 'jazzy_backend_theme/static/src/layout/style/layout_style.scss',
+ 'jazzy_backend_theme/static/src/layout/style/sidebar.scss',
+ 'jazzy_backend_theme/static/src/components/app_menu/search_apps.js',
+ ],
+ 'web.assets_frontend': [
+ 'jazzy_backend_theme/static/src/layout/style/login.scss'
+ ],
+ },
+ 'images': [
+ 'static/description/banner.jpg',
+ 'static/description/theme_screenshot.jpg',
+ ],
+ 'license': 'LGPL-3',
+ 'installable': True,
+ 'auto_install': False,
+ 'application': False,
+}
diff --git a/jazzy_backend_theme/doc/RELEASE_NOTES.md b/jazzy_backend_theme/doc/RELEASE_NOTES.md
new file mode 100644
index 0000000..854b921
--- /dev/null
+++ b/jazzy_backend_theme/doc/RELEASE_NOTES.md
@@ -0,0 +1,9 @@
+## Module
+
+#### 01.01.2025
+
+#### Version 18.0.1.0.0
+
+##### ADD
+
+- Initial commit for Jazzy Backend Theme
diff --git a/jazzy_backend_theme/models/__init__.py b/jazzy_backend_theme/models/__init__.py
new file mode 100644
index 0000000..33558f6
--- /dev/null
+++ b/jazzy_backend_theme/models/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from . import res_company
+from . import res_config_settings
diff --git a/jazzy_backend_theme/models/res_company.py b/jazzy_backend_theme/models/res_company.py
new file mode 100644
index 0000000..e8d909a
--- /dev/null
+++ b/jazzy_backend_theme/models/res_company.py
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from odoo import models, fields
+
+
+class ResCompany(models.Model):
+ """Inherits the Res Company Model"""
+ _inherit = 'res.company'
+
+ background_image = fields.Binary(string="Background Image", attachment=True,
+ help="Add Background image")
diff --git a/jazzy_backend_theme/models/res_config_settings.py b/jazzy_backend_theme/models/res_config_settings.py
new file mode 100644
index 0000000..995093a
--- /dev/null
+++ b/jazzy_backend_theme/models/res_config_settings.py
@@ -0,0 +1,85 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from odoo import models, fields
+
+
+class ResConfigSettings(models.TransientModel):
+ """Inherits the Configuration settings Model"""
+ _inherit = 'res.config.settings'
+
+ theme_background = fields.Binary(string="App menu Background",
+ related='company_id.background_image',
+ readonly=False,
+ help="Add background image")
+ app_bar_color = fields.Char(string='Appbar color',
+ config_parameter='jazzy_backend_theme.'
+ 'appbar_color',
+ default='#000000',
+ help="App bar color")
+ primary_accent = fields.Char(string="Navbar color",
+ config_parameter='jazzy_backend_theme.'
+ 'primary_accent_color',
+ default='#004589',
+ help="Navbar color")
+ primary_hover = fields.Char(string="Hover Primary Color",
+ config_parameter='jazzy_backend_theme.'
+ 'primary_hover',
+ default='#00376E',
+ help="Hover primary color")
+ appbar_text = fields.Char(string="Home Menu Text Color",
+ config_parameter='jazzy_backend_theme.'
+ 'appbar_text',
+ default='#ffffff',
+ help="App bar text color")
+ secondary_hover = fields.Char(string="AppBar Hover",
+ config_parameter='jazzy_backend_theme.'
+ 'secondary_hover',
+ default='#F2F2F3',
+ help="Appbar hover")
+ kanban_bg_color = fields.Char(string="Kanban Bg Color",
+ config_parameter='jazzy_backend_theme.'
+ 'kanban_bg_color',
+ default='#F7F7F7',
+ help="Kanban view background color")
+
+ def config_color_settings(self):
+ """Define the configuration color settings"""
+ colors = {
+ 'full_bg_img': self.env.user.company_id.background_image,
+ 'appbar_color': self.env[ 'ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.appbar_color'),
+ 'primary_accent': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.primary_accent_color'),
+ 'secondary_color': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.secondary_color'),
+ 'kanban_bg_color': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.kanban_bg_color'),
+ 'primary_hover': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.primary_hover'),
+ 'light_hover': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.light_hover'),
+ 'appbar_text': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.appbar_text'),
+ 'secondary_hover': self.env['ir.config_parameter'].sudo().get_param(
+ 'jazzy_backend_theme.secondary_hover')
+ }
+ return colors
diff --git a/jazzy_backend_theme/static/description/banner.jpg b/jazzy_backend_theme/static/description/banner.jpg
new file mode 100644
index 0000000..583744f
Binary files /dev/null and b/jazzy_backend_theme/static/description/banner.jpg differ
diff --git a/jazzy_backend_theme/static/description/icon.png b/jazzy_backend_theme/static/description/icon.png
new file mode 100644
index 0000000..f4e364c
Binary files /dev/null and b/jazzy_backend_theme/static/description/icon.png differ
diff --git a/jazzy_backend_theme/static/description/img/1.png b/jazzy_backend_theme/static/description/img/1.png
new file mode 100644
index 0000000..9d182ed
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/1.png differ
diff --git a/jazzy_backend_theme/static/description/img/18/app_bar.png b/jazzy_backend_theme/static/description/img/18/app_bar.png
new file mode 100644
index 0000000..9128cd6
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/app_bar.png differ
diff --git a/jazzy_backend_theme/static/description/img/18/desktop.gif b/jazzy_backend_theme/static/description/img/18/desktop.gif
new file mode 100644
index 0000000..9294d7c
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/desktop.gif differ
diff --git a/jazzy_backend_theme/static/description/img/18/employe.jpg b/jazzy_backend_theme/static/description/img/18/employe.jpg
new file mode 100644
index 0000000..c180290
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/employe.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/event.png b/jazzy_backend_theme/static/description/img/18/event.png
new file mode 100644
index 0000000..e939860
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/event.png differ
diff --git a/jazzy_backend_theme/static/description/img/18/kanban.png b/jazzy_backend_theme/static/description/img/18/kanban.png
new file mode 100644
index 0000000..0e00023
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/kanban.png differ
diff --git a/jazzy_backend_theme/static/description/img/18/mobile_form.jpg b/jazzy_backend_theme/static/description/img/18/mobile_form.jpg
new file mode 100644
index 0000000..e15724a
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/mobile_form.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/mobile_kanban01.jpg b/jazzy_backend_theme/static/description/img/18/mobile_kanban01.jpg
new file mode 100644
index 0000000..1482b7b
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/mobile_kanban01.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/mobile_lost.jpg b/jazzy_backend_theme/static/description/img/18/mobile_lost.jpg
new file mode 100644
index 0000000..2d80cab
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/mobile_lost.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/mobile_search.jpg b/jazzy_backend_theme/static/description/img/18/mobile_search.jpg
new file mode 100644
index 0000000..fefb3db
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/mobile_search.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/mobile_settings.jpg b/jazzy_backend_theme/static/description/img/18/mobile_settings.jpg
new file mode 100644
index 0000000..e3f9606
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/mobile_settings.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/mobile_view.gif b/jazzy_backend_theme/static/description/img/18/mobile_view.gif
new file mode 100644
index 0000000..7f7f3f0
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/mobile_view.gif differ
diff --git a/jazzy_backend_theme/static/description/img/18/responsive.jpg b/jazzy_backend_theme/static/description/img/18/responsive.jpg
new file mode 100644
index 0000000..4f5533b
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/responsive.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/18/sale_kanban.png b/jazzy_backend_theme/static/description/img/18/sale_kanban.png
new file mode 100644
index 0000000..f622e82
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/sale_kanban.png differ
diff --git a/jazzy_backend_theme/static/description/img/18/search.png b/jazzy_backend_theme/static/description/img/18/search.png
new file mode 100644
index 0000000..d420cf2
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/18/search.png differ
diff --git a/jazzy_backend_theme/static/description/img/2.png b/jazzy_backend_theme/static/description/img/2.png
new file mode 100644
index 0000000..3eb73c7
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/2.png differ
diff --git a/jazzy_backend_theme/static/description/img/3.png b/jazzy_backend_theme/static/description/img/3.png
new file mode 100644
index 0000000..164d35e
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/3.png differ
diff --git a/jazzy_backend_theme/static/description/img/3image.jpg b/jazzy_backend_theme/static/description/img/3image.jpg
new file mode 100644
index 0000000..30cd5d7
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/3image.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/4.png b/jazzy_backend_theme/static/description/img/4.png
new file mode 100644
index 0000000..2771280
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/4.png differ
diff --git a/jazzy_backend_theme/static/description/img/5.png b/jazzy_backend_theme/static/description/img/5.png
new file mode 100644
index 0000000..cca1fd5
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/5.png differ
diff --git a/jazzy_backend_theme/static/description/img/6.png b/jazzy_backend_theme/static/description/img/6.png
new file mode 100644
index 0000000..64329bd
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/6.png differ
diff --git a/jazzy_backend_theme/static/description/img/7.png b/jazzy_backend_theme/static/description/img/7.png
new file mode 100644
index 0000000..7acf13a
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/7.png differ
diff --git a/jazzy_backend_theme/static/description/img/8.png b/jazzy_backend_theme/static/description/img/8.png
new file mode 100644
index 0000000..a414d04
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/8.png differ
diff --git a/jazzy_backend_theme/static/description/img/app_bar.png b/jazzy_backend_theme/static/description/img/app_bar.png
new file mode 100644
index 0000000..13169af
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/app_bar.png differ
diff --git a/jazzy_backend_theme/static/description/img/arrows-repeat.svg b/jazzy_backend_theme/static/description/img/arrows-repeat.svg
new file mode 100644
index 0000000..1d7efab
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/arrows-repeat.svg
@@ -0,0 +1,10 @@
+
diff --git a/jazzy_backend_theme/static/description/img/banner-bg-1.svg b/jazzy_backend_theme/static/description/img/banner-bg-1.svg
new file mode 100644
index 0000000..7af9bab
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/banner-bg-1.svg
@@ -0,0 +1,66 @@
+
diff --git a/jazzy_backend_theme/static/description/img/banner.png b/jazzy_backend_theme/static/description/img/banner.png
new file mode 100644
index 0000000..76747bf
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/banner.png differ
diff --git a/jazzy_backend_theme/static/description/img/banner.svg b/jazzy_backend_theme/static/description/img/banner.svg
new file mode 100644
index 0000000..3d4ed7a
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/banner.svg
@@ -0,0 +1,49 @@
+
diff --git a/jazzy_backend_theme/static/description/img/check.svg b/jazzy_backend_theme/static/description/img/check.svg
new file mode 100644
index 0000000..1df6795
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/check.svg
@@ -0,0 +1,10 @@
+
diff --git a/jazzy_backend_theme/static/description/img/custom_form_view.png b/jazzy_backend_theme/static/description/img/custom_form_view.png
new file mode 100644
index 0000000..33ce846
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/custom_form_view.png differ
diff --git a/jazzy_backend_theme/static/description/img/customizable_ui.png b/jazzy_backend_theme/static/description/img/customizable_ui.png
new file mode 100644
index 0000000..93b65cd
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/customizable_ui.png differ
diff --git a/jazzy_backend_theme/static/description/img/customization_settings.png b/jazzy_backend_theme/static/description/img/customization_settings.png
new file mode 100644
index 0000000..f9d9dc3
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/customization_settings.png differ
diff --git a/jazzy_backend_theme/static/description/img/feature-star.svg b/jazzy_backend_theme/static/description/img/feature-star.svg
new file mode 100644
index 0000000..a913270
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/feature-star.svg
@@ -0,0 +1,13 @@
+
diff --git a/jazzy_backend_theme/static/description/img/gear.svg b/jazzy_backend_theme/static/description/img/gear.svg
new file mode 100644
index 0000000..0cc66b6
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/gear.svg
@@ -0,0 +1,10 @@
+
diff --git a/jazzy_backend_theme/static/description/img/hero.png b/jazzy_backend_theme/static/description/img/hero.png
new file mode 100644
index 0000000..87e4b66
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/hero.png differ
diff --git a/jazzy_backend_theme/static/description/img/hire-odoo.svg b/jazzy_backend_theme/static/description/img/hire-odoo.svg
new file mode 100644
index 0000000..e1ac089
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/hire-odoo.svg
@@ -0,0 +1,12 @@
+
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/discuss.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/discuss.png
new file mode 100644
index 0000000..13de707
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/discuss.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/error.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/error.png
new file mode 100644
index 0000000..60a0303
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/error.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/form.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/form.png
new file mode 100644
index 0000000..a622f69
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/form.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/front.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/front.png
new file mode 100644
index 0000000..ff91f0e
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/front.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/kanban.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/kanban.png
new file mode 100644
index 0000000..1194ed9
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/kanban.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/list.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/list.png
new file mode 100644
index 0000000..82110bd
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/list.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/products.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/products.png
new file mode 100644
index 0000000..b0542d4
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/products.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/search.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/search.png
new file mode 100644
index 0000000..5f177a5
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/search.png differ
diff --git a/jazzy_backend_theme/static/description/img/jazzy scrnsht/settings.png b/jazzy_backend_theme/static/description/img/jazzy scrnsht/settings.png
new file mode 100644
index 0000000..1cc71c3
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/jazzy scrnsht/settings.png differ
diff --git a/jazzy_backend_theme/static/description/img/kanban_view.png b/jazzy_backend_theme/static/description/img/kanban_view.png
new file mode 100644
index 0000000..2c4d47f
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/kanban_view.png differ
diff --git a/jazzy_backend_theme/static/description/img/life-ring-icon.svg b/jazzy_backend_theme/static/description/img/life-ring-icon.svg
new file mode 100644
index 0000000..3ae6e1d
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/life-ring-icon.svg
@@ -0,0 +1,13 @@
+
diff --git a/jazzy_backend_theme/static/description/img/odoo-consultancy.svg b/jazzy_backend_theme/static/description/img/odoo-consultancy.svg
new file mode 100644
index 0000000..e05f65b
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/odoo-consultancy.svg
@@ -0,0 +1,4 @@
+
diff --git a/jazzy_backend_theme/static/description/img/odoo-licencing.svg b/jazzy_backend_theme/static/description/img/odoo-licencing.svg
new file mode 100644
index 0000000..2606c88
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/odoo-licencing.svg
@@ -0,0 +1,3 @@
+
diff --git a/jazzy_backend_theme/static/description/img/patter.svg b/jazzy_backend_theme/static/description/img/patter.svg
new file mode 100644
index 0000000..25c9c0a
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/patter.svg
@@ -0,0 +1,9 @@
+
diff --git a/jazzy_backend_theme/static/description/img/puzzle-piece-icon.svg b/jazzy_backend_theme/static/description/img/puzzle-piece-icon.svg
new file mode 100644
index 0000000..3e9ad93
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/puzzle-piece-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/jazzy_backend_theme/static/description/img/responsive-backend-theme.png b/jazzy_backend_theme/static/description/img/responsive-backend-theme.png
new file mode 100644
index 0000000..a804ac4
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/responsive-backend-theme.png differ
diff --git a/jazzy_backend_theme/static/description/img/screenshot-1.svg b/jazzy_backend_theme/static/description/img/screenshot-1.svg
new file mode 100644
index 0000000..bf48f91
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/screenshot-1.svg
@@ -0,0 +1,28 @@
+
diff --git a/jazzy_backend_theme/static/description/img/screenshot-2.png b/jazzy_backend_theme/static/description/img/screenshot-2.png
new file mode 100644
index 0000000..e13b876
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/screenshot-2.png differ
diff --git a/jazzy_backend_theme/static/description/img/screenshot-3.png b/jazzy_backend_theme/static/description/img/screenshot-3.png
new file mode 100644
index 0000000..be1acdf
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/screenshot-3.png differ
diff --git a/jazzy_backend_theme/static/description/img/screenshot-4.png b/jazzy_backend_theme/static/description/img/screenshot-4.png
new file mode 100644
index 0000000..1d01e11
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/screenshot-4.png differ
diff --git a/jazzy_backend_theme/static/description/img/screenshot-5.svg b/jazzy_backend_theme/static/description/img/screenshot-5.svg
new file mode 100644
index 0000000..6b9b86f
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/screenshot-5.svg
@@ -0,0 +1,9 @@
+
diff --git a/jazzy_backend_theme/static/description/img/screenshot-img.png b/jazzy_backend_theme/static/description/img/screenshot-img.png
new file mode 100644
index 0000000..a425d9e
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/screenshot-img.png differ
diff --git a/jazzy_backend_theme/static/description/img/screenshot-main.png b/jazzy_backend_theme/static/description/img/screenshot-main.png
new file mode 100644
index 0000000..575f8e6
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/screenshot-main.png differ
diff --git a/jazzy_backend_theme/static/description/img/setting_search.png b/jazzy_backend_theme/static/description/img/setting_search.png
new file mode 100644
index 0000000..02d4fdc
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/setting_search.png differ
diff --git a/jazzy_backend_theme/static/description/img/template.jpg b/jazzy_backend_theme/static/description/img/template.jpg
new file mode 100644
index 0000000..1769d70
Binary files /dev/null and b/jazzy_backend_theme/static/description/img/template.jpg differ
diff --git a/jazzy_backend_theme/static/description/img/translate.svg b/jazzy_backend_theme/static/description/img/translate.svg
new file mode 100644
index 0000000..af9c8a1
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/translate.svg
@@ -0,0 +1,10 @@
+
diff --git a/jazzy_backend_theme/static/description/img/wrench-icon.svg b/jazzy_backend_theme/static/description/img/wrench-icon.svg
new file mode 100644
index 0000000..174b5a4
--- /dev/null
+++ b/jazzy_backend_theme/static/description/img/wrench-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/jazzy_backend_theme/static/description/index.html b/jazzy_backend_theme/static/description/index.html
new file mode 100644
index 0000000..e7ba5dc
--- /dev/null
+++ b/jazzy_backend_theme/static/description/index.html
@@ -0,0 +1,780 @@
+
+
+
+
+
+
+ app index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Supports:
+
+ Community
+
+
+
+
+
+ Availability:
+
+ Odoo Online
+
+
+ Odoo.sh
+
+
+ On Premise
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Our Features
+
+
info includes 300+ elements that you may need to create website without
+ external plugins.
Easily accessible sidebar where it reveals the sidebar
+ menu on just a click. Moreover, its also fully
+ customisable with Jazzy backend theme.
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Kanban view
+
Jazzy Backend Theme gives a colorful
+ & elegant kanban view, and it's fully
+ customizable with this theme.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Jazzy Backend Theme Settings
+
To improve your experience with Odoo the Jazzy
+ backend theme provides a fully configurable
+ theme settings menu.
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Custom Form view
+
Jazzy Backend theme provides a fully modified and
+ colorful form view with the full view experience.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Attractive Customizable User Interface
+
It provides fully attractive,
+ and an elegant User Interface which is
+ completely customizable.
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Advanced Searching for App Menus
+
Jazzy Backend Theme gives a more complex and
+ powerful search than standard search, providing search
+ options like enterprise edition.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Truly
+ Responsive
+
+
+
+
One of the critical highlights of
+ the Hue backend theme is that
+ it was genuinely responsive; moreover, it provides
+ an efficient interface to manage a mobile device.
+
+
Appealing card hover style
+
Detailed product filtering
+
Modernized mini basket
+
Cutting-edge single product
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Stunning
+ Pages
+
+
+
+
Jazzy Backend Theme V18 is an Attractive Theme for Your
+ Odoo 18. This Theme Will Improve
+ Your Experience With Odoo.