/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * <link href="guide.css" rel="Stylesheet" type="text/css">
 */
/*
 * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 * +                     LIBREOFFICE GUIDES IN BROWSER                 +
 * +                          COLORS STYLESHEET                        +
 * +                           WESTERN LANGUAGES                       +
 * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 */

:root {
    --frame-bg-color: #ffeadf;
    --frame-border:1px solid #163258;
    --primary-color: #622502;
    --secondary-color: #ffeadf;
    --accent-color: #622502;
    --light-color: #f8f9f9;
    --dark-color: #121416;
    --success-color: #ffeadf;
    --highlight-color: #3d0021;
    --title-color: #622502;

    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    --gradient-blue: linear-gradient(to right, var(--primary-color), var(--secondary-color));

    /* body HSL for nav calculations when theme-dark flips colors (approx for #f8f9fa) */
    --body-h: 210;
    --body-s: 6%;
    --body-l: 99.6%;
    --title-l: 1;

}


html.theme-dark {
    --frame-bg-color: #002940;
    --frame-border: 1px solid #555;
    --primary-color: #622502;
    --secondary-color: #ffeadf;
    --accent-color: #622502;
    --light-color: #121416;
    --dark-color: #f8f9f9;
    --success-color: #ffeadf;
    --highlight-color: #3d0021;
    --title-color: #622502;

    --box-shadow: 0 4px 6px rgba(225, 225, 225, 0.1);

    --gradient-blue: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    /* body HSL for nav calculations when theme-dark flips colors (approx for #f8f9fa) */
    --body-h: 210;
    --body-s: 10.4%;
    --body-l: 12.7%;
    --title-l: 1.8;

}

