main
Raw Download raw file
 1/*
 2 * noVNC general CSS constant variables
 3 * Copyright (C) 2025 The noVNC authors
 4 * noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
 5 * This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
 6 */
 7
 8/* ---------- COLORS ----------- */
 9
10:root {
11    --novnc-grey: rgb(128, 128, 128);
12    --novnc-lightgrey: rgb(192, 192, 192);
13    --novnc-darkgrey: rgb(92, 92, 92);
14
15    /* Transparent to make button colors adapt to the background */
16    --novnc-buttongrey: rgba(192, 192, 192, 0.5);
17
18    --novnc-blue: rgb(110, 132, 163);
19    --novnc-lightblue: rgb(74, 144, 217);
20    --novnc-darkblue: rgb(83, 99, 122);
21
22    --novnc-green: rgb(0, 128, 0);
23    --novnc-yellow: rgb(255, 255, 0);
24}
25
26/* ------ MISC PROPERTIES ------ */
27
28:root {
29    --input-xpadding: 1em;
30}