theme-scss
Installation
SKILL.md
Odoo Theme SCSS Variable Reference
Critical Load Order Rule
Theme SCSS files load BEFORE core Odoo variables are defined:
1. YOUR theme's primary_variables.scss (via prepend) ← FIRST
2. Odoo core primary_variables.scss ← SECOND
CONSEQUENCE: CANNOT use map-merge() with core variables!
WRONG: $o-color-palettes: map-merge($o-color-palettes, (...)); → Undefined variable error
RIGHT: Define standalone variables without map-merge
1. $o-theme-font-configs — Google Fonts
Related skills