
                // 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: #5a71ac;
                    }

                    #informations strong {
                        color: #1a1f2e;
                    }

                    .o_total strong {
                        color: #5a71ac;
                    }

                    .o_company_tagline {
                        color: #5a71ac
                    }
                & .o_folder_header_container {
                    rect, path {
                        fill: mix(white, #5a71ac, 92%);
                    }
                }

                &.o_report_layout_folder_footer {
                    border-top: 1px solid #1a1f2e;
                }
            }