75 lines
1.7 KiB
CSS
75 lines
1.7 KiB
CSS
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2019 Olive Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
/***
|
|
|
|
Olive Light - Qt CSS Theme
|
|
|
|
A fairly basic CSS style for the Olive Video Editor/Qt Fusion.
|
|
|
|
The primary colors are:
|
|
|
|
Main: #d0d0d0
|
|
Text: #000000
|
|
Disabled Text: #808080
|
|
Highlight: #2a82da
|
|
Highlight Text: #ffffff
|
|
Dark: #ffffff
|
|
|
|
**/
|
|
|
|
/* Default widget colors */
|
|
QWidget, QMenu::separator {
|
|
/* Main */
|
|
background: #d0d0d0;
|
|
|
|
/* Text */
|
|
color: #000000;
|
|
|
|
/* Highlight */
|
|
selection-background-color: #2a82da;
|
|
|
|
/* Highlight Text */
|
|
selection-color: #ffffff;
|
|
}
|
|
|
|
/* Default disabled colors */
|
|
QWidget::disabled {
|
|
/* Disabled Text */
|
|
color: #808080;
|
|
}
|
|
|
|
/* Default link color */
|
|
a {
|
|
/* Highlight */
|
|
color: #2a82da;
|
|
}
|
|
|
|
/* All of these widgets' backgrounds are dark */
|
|
QTreeView, QListView, QLineEdit, QMenu, QProgressBar, QPushButton::checked, NodeView, QComboBox, QSpinBox {
|
|
/* Dark */
|
|
background: #ffffff;
|
|
}
|
|
|
|
/* Node styling */
|
|
NodeViewItemWidget {
|
|
qproperty-titlebarColor: #a0a0ff;
|
|
qproperty-borderColor: #000000;
|
|
} |