Adding themes file.
This commit is contained in:
parent
d194164695
commit
8da00acd8e
|
|
@ -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 <randras@sdr.hu>
|
||||
Copyright (c) 2019-2021 by Jakob Ketterl <dd5jfk@darc.de>
|
||||
Copyright (c) 2022-2023 by Marat Fayzullin <luarvique@gmail.com>
|
||||
|
||||
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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
|
||||
.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% );
|
||||
}
|
||||
Loading…
Reference in New Issue