diff --git a/web_hibou_color/__init__.py b/web_hibou_color/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/web_hibou_color/__manifest__.py b/web_hibou_color/__manifest__.py new file mode 100644 index 00000000..3f4b0c68 --- /dev/null +++ b/web_hibou_color/__manifest__.py @@ -0,0 +1,21 @@ +{ + 'name': 'Web Hibou Color', + 'category': 'Hidden', + 'version': '15.0.1.0.0', + 'description': """ +Hibou Colors +============ + +This module modifies the web addon to provide alternative colors. + """, + 'depends': [ + 'web', + ], + 'auto_install': True, + 'assets': { + 'web._assets_primary_variables': [ + ('prepend', 'web_hibou_color/static/src/legacy/scss/primary_variables.scss'), + ], + }, + 'license': 'LGPL-3', +} diff --git a/web_hibou_color/static/src/legacy/scss/primary_variables.scss b/web_hibou_color/static/src/legacy/scss/primary_variables.scss new file mode 100644 index 00000000..d816e793 --- /dev/null +++ b/web_hibou_color/static/src/legacy/scss/primary_variables.scss @@ -0,0 +1,9 @@ + + +$o-hibou-color: #0a6fa2; +$o-hibou-primary-color: #038f8c; + +$o-brand-odoo: $o-hibou-color; +$o-brand-primary: $o-hibou-primary-color; +//$o-brand-secondary: #8f8f8f; +//$o-brand-lightsecondary: $o-gray-100;