/*
 * noVNC general CSS constant variables
 * Copyright (C) 2025 The noVNC authors
 * noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
 * This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
 */

/* ---------- COLORS ----------- */

:root {
    --novnc-grey: rgb(0, 0, 0);
    --novnc-lightgrey: rgb(192, 192, 192);
    --novnc-darkgrey: rgb(0, 0, 0);

    /* Transparent to make button colors adapt to the background */
    --novnc-buttongrey: rgba(192, 192, 192, 0.5);

    --novnc-blue: rgb(0, 0, 0);
    --novnc-lightblue: rgb(192, 192, 192);
    --novnc-darkblue: rgb(192, 192, 192);

    --novnc-green: rgb(50, 205, 50);
    --novnc-yellow: rgb(50, 205, 50);
}

/* ------ MISC PROPERTIES ------ */

:root {
    --input-xpadding: 1em;
}
