Files
Addon-Odoo19/.odoo-data/filestore/odoo19/54/542922906caac0fe5d253e2c7d913758eb0a7f6e
2026-05-31 10:17:09 +07:00

29 lines
854 B
Plaintext

// Simplified color-contrast function to replicate bootstrap in report preview.
@function preview-color-contrast($background) {
@if (lightness($background) > 50) {
@return black;
} @else {
@return white;
}
}
.o_company_1_layout {
font-family: Lato;
h2 {
color: #212529;
}
#informations strong {
color: #212529;
}
.o_total strong {
color: #212529;
}
.o_company_tagline {
color: #212529
}
}