Files
oak-editor/app/ui/style/olive-dark/style.css
T

76 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 Dark - Qt CSS Theme
A fairly basic CSS style for the Olive Video Editor/Qt Fusion.
The primary colors are:
Main: #353535
Text: #ffffff
Disabled Text: #808080
Highlight: #2a82da
Highlight Text: #ffffff
Dark: #191919
**/
/* Default widget colors */
QWidget, QMenu::separator {
/* Main */
background: #353535;
/* Text */
color: #ffffff;
/* 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 {
/* Dark */
background: #191919;
}
/* Node styling */
NodeViewItemWidget {
qproperty-titlebarColor: #4040a0;
qproperty-borderColor: #000000;
}