From 8da00acd8e2bcff3cc58aaafef1edd2b8f64e338 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Thu, 26 Oct 2023 20:35:31 -0400 Subject: [PATCH] Adding themes file. --- htdocs/css/themes.css | 94 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 htdocs/css/themes.css diff --git a/htdocs/css/themes.css b/htdocs/css/themes.css new file mode 100644 index 00000000..2000ce6f --- /dev/null +++ b/htdocs/css/themes.css @@ -0,0 +1,94 @@ +/* + + This file is part of OpenWebRX, + an open-source SDR receiver software with a web UI. + Copyright (c) 2013-2015 by Andras Retzler + Copyright (c) 2019-2021 by Jakob Ketterl + Copyright (c) 2022-2023 by Marat Fayzullin + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +*/ + +.openwebrx-panel-brown +{ + background-color: #472700; +} + +.openwebrx-button-brown +{ + background-color: #270700; + background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0, #270700), color-stop(1, #3F1F00) ); + background: -moz-linear-gradient( center top, #270700 0%, #3F1F00 100% ); +} + +.openwebrx-panel-red +{ + background-color: #470000; +} + +.openwebrx-button-red +{ + background-color: #270000; + background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0, #270000), color-stop(1, #3F0000) ); + background: -moz-linear-gradient( center top, #270000 0%, #3F0000 100% ); +} + +.openwebrx-panel-green +{ + background-color: #003700; +} + +.openwebrx-button-green +{ + background-color: #001700; + background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0, #001700), color-stop(1, #002F00) ); + background: -moz-linear-gradient( center top, #001700 0%, #002F00 100% ); +} + +.openwebrx-panel-khaki +{ + background-color: #373F17; +} + +.openwebrx-button-khaki +{ + background-color: #171F07; + background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0, #171F07), color-stop(1, #272F17) ); + background: -moz-linear-gradient( center top, #171F07 0%, #272F17 100% ); +} + +.openwebrx-panel-blue +{ + background-color: #000047; +} + +.openwebrx-button-blue +{ + background-color: #000027; + background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0, #000027), color-stop(1, #00003F) ); + background: -moz-linear-gradient( center top, #000027 0%, #00003F 100% ); +} + +.openwebrx-panel-navy +{ + background-color: #003747; +} + +.openwebrx-button-navy +{ + background-color: #001727; + background: -webkit-gradient( linear, left top, left bottom, color-stop(0.0, #001727), color-stop(1, #002F3F) ); + background: -moz-linear-gradient( center top, #001727 0%, #002F3F 100% ); +}