Merge pull request #864 from manongjohn/change_ui_highlight_color

Change UI highlight color
This commit is contained in:
manongjohn 2022-01-19 23:59:50 -05:00 committed by GitHub
commit c42a101d9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 351 additions and 293 deletions

View file

@ -46,8 +46,8 @@ QToolButton:checked,
#ForceSquaredPixelButton:checked,
#EditToolLockButton::indicator:checked,
#flipCustomize:checked {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
color: #ffffff;
}
.button-tool:checked:hover,
@ -57,8 +57,8 @@ QToolButton:checked:hover,
#ForceSquaredPixelButton:checked:hover,
#EditToolLockButton::indicator:checked:hover,
#flipCustomize:checked:hover {
background-color: #6c98b6;
border-color: #6c98b6;
background-color: #b46aa5;
border-color: #b46aa5;
}
.button-tool:disabled,
QToolButton:disabled,
@ -76,8 +76,8 @@ QToolButton:disabled:checked,
#ForceSquaredPixelButton:disabled:checked,
#EditToolLockButton::indicator:disabled:checked,
#flipCustomize:disabled:checked {
background-color: rgba(83, 133, 166, 0.4);
border-color: rgba(83, 133, 166, 0.4);
background-color: rgba(163, 82, 147, 0.4);
border-color: rgba(163, 82, 147, 0.4);
}
.button-flat,
PaletteViewer QToolBar QToolButton {
@ -259,7 +259,7 @@ QMenuBar::item:selected {
color: #e6e6e6;
}
QMenuBar::item:pressed {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -282,7 +282,7 @@ QMenuBar::item:pressed {
color: #999999;
}
#TopBarTab::tab:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
#TopBarTab::tab:first {
@ -313,14 +313,14 @@ QMenu::item {
padding: 3 28;
}
QMenu::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
QMenu::item:checked {
color: #e6e6e6;
}
QMenu::item:checked:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
QMenu::item:disabled {
@ -345,8 +345,8 @@ QMenu::icon {
qproperty-icon: url('../Medium/imgs/white/none');
}
QMenu::icon:checked {
background-color: #5385a6;
border: 1 solid #5385a6;
background-color: #a35293;
border: 1 solid #a35293;
}
QMenu::indicator {
margin-left: 8;
@ -367,7 +367,7 @@ TPanelTitleBar {
qproperty-FloatActiveBorderPixmap: url('../Medium/imgs/white/none');
}
TPanelTitleBarButton {
qproperty-PressedColor: #5385a6;
qproperty-PressedColor: #a35293;
qproperty-FreezeColor: #C34040;
qproperty-PreviewColor: #1baf7e;
qproperty-OverColor: #595959;
@ -705,7 +705,7 @@ QTreeView,
QTreeWidget::item:selected,
QTreeView::item:selected,
#FunctionEditorTree::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
.treeview::branch,
@ -892,7 +892,7 @@ QComboBox:editable {
background-color: #1c1c1c;
border-color: #4a4a4a;
padding: 1 0 1 3;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
}
.ComboBox:hover,
@ -905,11 +905,11 @@ QComboBox:hover:editable {
}
.ComboBox:checked,
QComboBox:checked {
border-color: #5385a6;
border-color: #a35293;
}
.ComboBox:focus,
QComboBox:focus {
border-color: #5385a6;
border-color: #a35293;
}
.ComboBox::drop-down,
QComboBox::drop-down {
@ -946,7 +946,7 @@ QComboBox::drop-down:disabled:editable {
QComboBox QAbstractItemView {
background-color: #262626;
border: 1 solid #3f3f3f;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -963,7 +963,7 @@ QTextEdit,
border: 1 solid #4a4a4a;
border-radius: 2;
color: #e6e6e6;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
padding: 0 0 0 1;
}
@ -975,7 +975,7 @@ QTextEdit:focus,
#tasksRemoveBox:focus,
#tasksAddBox:focus {
background-color: #1c1c1c;
border-color: #5385a6;
border-color: #a35293;
color: #e6e6e6;
}
.LineEdit:disabled,
@ -1050,8 +1050,8 @@ QMenu::indicator:non-exclusive:checked,
QCheckBox::indicator:checked,
.GroupBox::indicator:checked,
QGroupBox::indicator:checked {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
image: url('../Medium/imgs/white/checkmark.svg');
}
.CheckBox::indicator:checked:hover,
@ -1059,7 +1059,7 @@ QMenu::indicator:non-exclusive:checked:hover,
QCheckBox::indicator:checked:hover,
.GroupBox::indicator:checked:hover,
QGroupBox::indicator:checked:hover {
background-color: #5385a6;
background-color: #a35293;
border-color: #e3e3e3;
}
.CheckBox::indicator:checked:disabled,
@ -1076,8 +1076,8 @@ QMenu::indicator:non-exclusive:indeterminate,
QCheckBox::indicator:indeterminate,
.GroupBox::indicator:indeterminate,
QGroupBox::indicator:indeterminate {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
image: url('../Medium/imgs/white/checkpartially.svg');
}
.CheckBox::indicator:indeterminate:disabled,
@ -1288,7 +1288,7 @@ DvItemViewerPanel {
qproperty-AlternateBackground: #383838;
qproperty-SelectedTextColor: #ffffff;
qproperty-FolderTextColor: #9fdaff;
qproperty-SelectedItemBackground: #5385a6;
qproperty-SelectedItemBackground: #a35293;
}
DvItemViewerTitleBar {
qproperty-ColColor: #232323;
@ -1314,7 +1314,7 @@ DvItemViewerTitleBar {
StyledTreeView {
qproperty-TextColor: #e6e6e6;
qproperty-SelectedTextColor: #ffffff;
qproperty-SelectedItemBackground: #5385a6;
qproperty-SelectedItemBackground: #a35293;
qproperty-FolderTextColor: #9fdaff;
qproperty-SelectedFolderTextColor: #ffffff;
alternate-background-color: #2d2d2d;
@ -1441,7 +1441,7 @@ ParamsPage {
}
#MatchLineButton:checked {
background-color: #7d7d7d;
border: 2 solid #5385a6;
border: 2 solid #a35293;
border-radius: 2;
}
#LargeSizedText {
@ -1586,8 +1586,8 @@ PaletteViewer QToolBar #keyFrameNavigator #KeyTotal {
qproperty-NumpadShortcutBgColor: rgba(0, 0, 0, 0.3);
qproperty-NumpadShortcutBorderColor: #8d8d8d;
qproperty-SeparatorColor: #111111;
qproperty-CurrentCellColor: rgba(83, 133, 166, 0.5);
qproperty-SelectedCellColor: #5385a6;
qproperty-CurrentCellColor: rgba(163, 82, 147, 0.5);
qproperty-SelectedCellColor: #a35293;
qproperty-ListNumpadShortcutBorderColor: #afafaf;
}
#PaletteLockButton {
@ -1623,12 +1623,12 @@ QDialog #dialogButtonFrame QPushButton {
outline: 0;
}
QDialog #dialogButtonFrame QPushButton:focus {
background-color: #5385a6;
background-color: #a35293;
border-color: #262626;
color: #ffffff;
}
QDialog #dialogButtonFrame QPushButton:focus:hover {
background-color: #6c98b6;
background-color: #b46aa5;
}
QDialog #dialogButtonFrame QPushButton:focus:pressed {
background-color: #141414;
@ -1659,7 +1659,7 @@ QDialog #dialogButtonFrame QPushButton:focus:pressed {
color: #e6e6e6;
}
#PreferencesPopup QListWidget::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -2147,7 +2147,7 @@ FlipSlider {
Ruler {
qproperty-ParentBGColor: #303030;
qproperty-ScaleColor: rgba(230, 230, 230, 0.7);
qproperty-HandleColor: #64b0e2;
qproperty-HandleColor: #e161c8;
qproperty-HandleDragColor: yellow;
qproperty-BorderColor: rgba(17, 17, 17, 0.7);
}
@ -2228,57 +2228,57 @@ XsheetViewer {
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.4);
qproperty-VerticalLineHeadColor: #0f0f0f;
qproperty-PreviewFrameTextColor: #9fdaff;
qproperty-CurrentRowBgColor: rgba(83, 133, 166, 0.7);
qproperty-CurrentRowBgColor: rgba(163, 82, 147, 0.7);
qproperty-OnionSkinAreaBgColor: #282828;
qproperty-CellFocusColor: #000;
qproperty-ColumnIconLineColor: #111111;
qproperty-EmptyColumnHeadColor: #303030;
qproperty-ColumnHeadPastelizer: rgba(0, 0, 0, 0);
qproperty-SelectedColumnHead: rgba(221, 231, 237, 0.3);
qproperty-SelectedColumnHead: rgba(237, 220, 233, 0.3);
qproperty-PlayRangeColor: #383838;
qproperty-FoldedColumnBGColor: #4a4a4a;
qproperty-FoldedColumnLineColor: #232323;
qproperty-EmptyCellColor: #282828;
qproperty-NotEmptyColumnColor: #303030;
qproperty-SelectedEmptyCellColor: rgba(90, 100, 106, 0.5);
qproperty-SelectedEmptyCellColor: rgba(106, 89, 102, 0.5);
qproperty-PegColor: #9f6e3c;
qproperty-TableColor: #62628c;
qproperty-LevelColumnColor: #4C6E4C;
qproperty-LevelColumnBorderColor: #375037;
qproperty-SelectedLevelColumnColor: #59846c;
qproperty-SelectedLevelColumnColor: #6c7968;
qproperty-VectorColumnColor: #79304e;
qproperty-VectorColumnBorderColor: #542236;
qproperty-SelectedVectorColumnColor: #834b6e;
qproperty-SelectedVectorColumnColor: #953f6a;
qproperty-ChildColumnColor: #2f3e6d;
qproperty-ChildColumnBorderColor: #202a49;
qproperty-SelectedChildColumnColor: #3f588b;
qproperty-SelectedChildColumnColor: #514c87;
qproperty-FullcolorColumnColor: #527097;
qproperty-FullcolorColumnBorderColor: #405776;
qproperty-SelectedFullcolorColumnColor: #5f86b2;
qproperty-SelectedFullcolorColumnColor: #717aad;
qproperty-FxColumnColor: #8a674b;
qproperty-FxColumnBorderColor: #694e39;
qproperty-SelectedFxColumnColor: #937e6b;
qproperty-SelectedFxColumnColor: #a57267;
qproperty-ReferenceColumnColor: #3d3d3d;
qproperty-ReferenceColumnBorderColor: #232323;
qproperty-SelectedReferenceColumnColor: #4b575e;
qproperty-SelectedReferenceColumnColor: #5e4b5a;
qproperty-PaletteColumnColor: #42756e;
qproperty-PaletteColumnBorderColor: #30544f;
qproperty-SelectedPaletteColumnColor: #508b8c;
qproperty-SelectedPaletteColumnColor: #627f87;
qproperty-MeshColumnColor: #594d75;
qproperty-MeshColumnBorderColor: #423956;
qproperty-SelectedMeshColumnColor: #656692;
qproperty-SelectedMeshColumnColor: #785a8e;
qproperty-SoundTextColumnColor: #a7a7a7;
qproperty-SoundTextColumnBorderColor: #8e8e8e;
qproperty-SelectedSoundTextColumnColor: #adb9c0;
qproperty-SelectedSoundTextColumnColor: #c0adbc;
qproperty-SoundColumnColor: #578a8a;
qproperty-SoundColumnBorderColor: #436b6b;
qproperty-SelectedSoundColumnColor: #639ea6;
qproperty-SelectedSoundColumnColor: #7692a1;
qproperty-SoundColumnHlColor: #34FE5E;
qproperty-SoundColumnTrackColor: rgba(0, 0, 0, 0.8);
qproperty-ActiveCameraColor: #4073a3;
qproperty-SelectedActiveCameraColor: #4e89bd;
qproperty-SelectedActiveCameraColor: #617db8;
qproperty-OtherCameraColor: #5e9aa3;
qproperty-SelectedOtherCameraColor: #6aadbd;
qproperty-SelectedOtherCameraColor: #7ca1b8;
qproperty-LightLightBGColor: #282828;
qproperty-LightBGColor: #d8d8d8;
qproperty-DarkBGColor: #c9c9c9;
@ -2369,23 +2369,23 @@ FunctionPanel {
}
SpreadsheetViewer {
qproperty-LightLightBGColor: #282828;
qproperty-CurrentRowBgColor: rgba(83, 133, 166, 0.7);
qproperty-CurrentRowBgColor: rgba(163, 82, 147, 0.7);
qproperty-LightLineColor: rgba(0, 0, 0, 0.3);
qproperty-MarkerLineColor: rgba(255, 255, 255, 0.15);
qproperty-BGColor: #262626;
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.4);
qproperty-KeyFrameColor: #995d1d;
qproperty-KeyFrameBorderColor: #db9041;
qproperty-SelectedKeyFrameColor: #a2835b;
qproperty-SelectedKeyFrameColor: #c26f53;
qproperty-IgnoredKeyFrameColor: #ac2a39;
qproperty-SelectedIgnoredKeyFrameColor: #b25872;
qproperty-SelectedIgnoredKeyFrameColor: #d2446b;
qproperty-InBetweenColor: #666250;
qproperty-InBetweenBorderColor: #b0aa91;
qproperty-SelectedInBetweenColor: #717970;
qproperty-SelectedInBetweenColor: #846d6c;
qproperty-IgnoredInBetweenColor: #8a695e;
qproperty-SelectedIgnoredInBetweenColor: #93807d;
qproperty-SelectedEmptyColor: rgba(90, 100, 106, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(90, 100, 106, 0.5);
qproperty-SelectedIgnoredInBetweenColor: #a57479;
qproperty-SelectedEmptyColor: rgba(106, 89, 102, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(106, 89, 102, 0.5);
qproperty-TextColor: #e6e6e6;
qproperty-ColumnHeaderBorderColor: #4a4a4a;
}
@ -2409,7 +2409,7 @@ SpreadsheetViewer {
background-color: #303030;
padding-left: 10px;
padding-right: 10px;
color: #5385a6;
color: #a35293;
}
#MainWindowMessageLabel:disabled {
color: rgba(230, 230, 230, 0.4);
@ -2482,13 +2482,13 @@ FlipBook #ToolBarContainer {
qproperty-SplineColor: #e6e6e6;
qproperty-GraphColor: rgba(230, 230, 230, 0.4);
qproperty-NonSelectedPointColor: #111111;
qproperty-SelectedPointColor: #5385a6;
qproperty-SelectedPointColor: #a35293;
}
#GraphAreaFrame {
border: 1 solid rgba(230, 230, 230, 0.4);
}
MotionPathPanel {
qproperty-SelectedColor: #5385a6;
qproperty-SelectedColor: #a35293;
qproperty-HoverColor: #595959;
}
#MotionPathLabel {

View file

@ -46,8 +46,8 @@ QToolButton:checked,
#ForceSquaredPixelButton:checked,
#EditToolLockButton::indicator:checked,
#flipCustomize:checked {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
color: #ffffff;
}
.button-tool:checked:hover,
@ -57,8 +57,8 @@ QToolButton:checked:hover,
#ForceSquaredPixelButton:checked:hover,
#EditToolLockButton::indicator:checked:hover,
#flipCustomize:checked:hover {
background-color: #6c98b6;
border-color: #6c98b6;
background-color: #b46aa5;
border-color: #b46aa5;
}
.button-tool:disabled,
QToolButton:disabled,
@ -76,8 +76,8 @@ QToolButton:disabled:checked,
#ForceSquaredPixelButton:disabled:checked,
#EditToolLockButton::indicator:disabled:checked,
#flipCustomize:disabled:checked {
background-color: rgba(83, 133, 166, 0.4);
border-color: rgba(83, 133, 166, 0.4);
background-color: rgba(163, 82, 147, 0.4);
border-color: rgba(163, 82, 147, 0.4);
}
.button-flat,
PaletteViewer QToolBar QToolButton {
@ -259,7 +259,7 @@ QMenuBar::item:selected {
color: #e6e6e6;
}
QMenuBar::item:pressed {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -282,7 +282,7 @@ QMenuBar::item:pressed {
color: #919191;
}
#TopBarTab::tab:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
#TopBarTab::tab:first {
@ -313,14 +313,14 @@ QMenu::item {
padding: 3 28;
}
QMenu::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
QMenu::item:checked {
color: #e6e6e6;
}
QMenu::item:checked:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
QMenu::item:disabled {
@ -345,8 +345,8 @@ QMenu::icon {
qproperty-icon: url('../Medium/imgs/white/none');
}
QMenu::icon:checked {
background-color: #5385a6;
border: 1 solid #5385a6;
background-color: #a35293;
border: 1 solid #a35293;
}
QMenu::indicator {
margin-left: 8;
@ -367,7 +367,7 @@ TPanelTitleBar {
qproperty-FloatActiveBorderPixmap: url('../Medium/imgs/white/none');
}
TPanelTitleBarButton {
qproperty-PressedColor: #5385a6;
qproperty-PressedColor: #a35293;
qproperty-FreezeColor: #C34040;
qproperty-PreviewColor: #1baf7e;
qproperty-OverColor: #494949;
@ -705,7 +705,7 @@ QTreeView,
QTreeWidget::item:selected,
QTreeView::item:selected,
#FunctionEditorTree::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
.treeview::branch,
@ -892,7 +892,7 @@ QComboBox:editable {
background-color: #0c0c0c;
border-color: #3a3a3a;
padding: 1 0 1 3;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
}
.ComboBox:hover,
@ -905,11 +905,11 @@ QComboBox:hover:editable {
}
.ComboBox:checked,
QComboBox:checked {
border-color: #5385a6;
border-color: #a35293;
}
.ComboBox:focus,
QComboBox:focus {
border-color: #5385a6;
border-color: #a35293;
}
.ComboBox::drop-down,
QComboBox::drop-down {
@ -946,7 +946,7 @@ QComboBox::drop-down:disabled:editable {
QComboBox QAbstractItemView {
background-color: #161616;
border: 1 solid #3c3c3c;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -963,7 +963,7 @@ QTextEdit,
border: 1 solid #3a3a3a;
border-radius: 2;
color: #e6e6e6;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
padding: 0 0 0 1;
}
@ -975,7 +975,7 @@ QTextEdit:focus,
#tasksRemoveBox:focus,
#tasksAddBox:focus {
background-color: #0c0c0c;
border-color: #5385a6;
border-color: #a35293;
color: #e6e6e6;
}
.LineEdit:disabled,
@ -1050,8 +1050,8 @@ QMenu::indicator:non-exclusive:checked,
QCheckBox::indicator:checked,
.GroupBox::indicator:checked,
QGroupBox::indicator:checked {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
image: url('../Medium/imgs/white/checkmark.svg');
}
.CheckBox::indicator:checked:hover,
@ -1059,7 +1059,7 @@ QMenu::indicator:non-exclusive:checked:hover,
QCheckBox::indicator:checked:hover,
.GroupBox::indicator:checked:hover,
QGroupBox::indicator:checked:hover {
background-color: #5385a6;
background-color: #a35293;
border-color: #d3d3d3;
}
.CheckBox::indicator:checked:disabled,
@ -1076,8 +1076,8 @@ QMenu::indicator:non-exclusive:indeterminate,
QCheckBox::indicator:indeterminate,
.GroupBox::indicator:indeterminate,
QGroupBox::indicator:indeterminate {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
image: url('../Medium/imgs/white/checkpartially.svg');
}
.CheckBox::indicator:indeterminate:disabled,
@ -1288,7 +1288,7 @@ DvItemViewerPanel {
qproperty-AlternateBackground: #1b1b1b;
qproperty-SelectedTextColor: #ffffff;
qproperty-FolderTextColor: #9fdaff;
qproperty-SelectedItemBackground: #5385a6;
qproperty-SelectedItemBackground: #a35293;
}
DvItemViewerTitleBar {
qproperty-ColColor: #131313;
@ -1314,7 +1314,7 @@ DvItemViewerTitleBar {
StyledTreeView {
qproperty-TextColor: #e6e6e6;
qproperty-SelectedTextColor: #ffffff;
qproperty-SelectedItemBackground: #5385a6;
qproperty-SelectedItemBackground: #a35293;
qproperty-FolderTextColor: #9fdaff;
qproperty-SelectedFolderTextColor: #ffffff;
alternate-background-color: #181818;
@ -1441,7 +1441,7 @@ ParamsPage {
}
#MatchLineButton:checked {
background-color: #6d6d6d;
border: 2 solid #5385a6;
border: 2 solid #a35293;
border-radius: 2;
}
#LargeSizedText {
@ -1586,8 +1586,8 @@ PaletteViewer QToolBar #keyFrameNavigator #KeyTotal {
qproperty-NumpadShortcutBgColor: rgba(0, 0, 0, 0.3);
qproperty-NumpadShortcutBorderColor: #8d8d8d;
qproperty-SeparatorColor: #060606;
qproperty-CurrentCellColor: rgba(83, 133, 166, 0.5);
qproperty-SelectedCellColor: #5385a6;
qproperty-CurrentCellColor: rgba(163, 82, 147, 0.5);
qproperty-SelectedCellColor: #a35293;
qproperty-ListNumpadShortcutBorderColor: #afafaf;
}
#PaletteLockButton {
@ -1623,12 +1623,12 @@ QDialog #dialogButtonFrame QPushButton {
outline: 0;
}
QDialog #dialogButtonFrame QPushButton:focus {
background-color: #5385a6;
background-color: #a35293;
border-color: #161616;
color: #ffffff;
}
QDialog #dialogButtonFrame QPushButton:focus:hover {
background-color: #6c98b6;
background-color: #b46aa5;
}
QDialog #dialogButtonFrame QPushButton:focus:pressed {
background-color: #040404;
@ -1659,7 +1659,7 @@ QDialog #dialogButtonFrame QPushButton:focus:pressed {
color: #e6e6e6;
}
#PreferencesPopup QListWidget::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -2147,7 +2147,7 @@ FlipSlider {
Ruler {
qproperty-ParentBGColor: #202020;
qproperty-ScaleColor: rgba(230, 230, 230, 0.7);
qproperty-HandleColor: #64b0e2;
qproperty-HandleColor: #e161c8;
qproperty-HandleDragColor: yellow;
qproperty-BorderColor: rgba(6, 6, 6, 0.7);
}
@ -2228,57 +2228,57 @@ XsheetViewer {
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.3);
qproperty-VerticalLineHeadColor: #000000;
qproperty-PreviewFrameTextColor: #9fdaff;
qproperty-CurrentRowBgColor: rgba(83, 133, 166, 0.7);
qproperty-CurrentRowBgColor: rgba(163, 82, 147, 0.7);
qproperty-OnionSkinAreaBgColor: #1b1b1b;
qproperty-CellFocusColor: #000;
qproperty-ColumnIconLineColor: #060606;
qproperty-EmptyColumnHeadColor: #343434;
qproperty-ColumnHeadPastelizer: rgba(0, 0, 0, 0);
qproperty-SelectedColumnHead: rgba(221, 231, 237, 0.3);
qproperty-SelectedColumnHead: rgba(237, 220, 233, 0.3);
qproperty-PlayRangeColor: #202020;
qproperty-FoldedColumnBGColor: #3a3a3a;
qproperty-FoldedColumnLineColor: #131313;
qproperty-EmptyCellColor: #202020;
qproperty-NotEmptyColumnColor: #282828;
qproperty-SelectedEmptyCellColor: rgba(83, 93, 100, 0.5);
qproperty-SelectedEmptyCellColor: rgba(99, 83, 96, 0.5);
qproperty-PegColor: #9f6e3c;
qproperty-TableColor: #62628c;
qproperty-LevelColumnColor: #4C6E4C;
qproperty-LevelColumnBorderColor: #375037;
qproperty-SelectedLevelColumnColor: #59846c;
qproperty-SelectedLevelColumnColor: #6c7968;
qproperty-VectorColumnColor: #79304e;
qproperty-VectorColumnBorderColor: #542236;
qproperty-SelectedVectorColumnColor: #834b6e;
qproperty-SelectedVectorColumnColor: #953f6a;
qproperty-ChildColumnColor: #2f3e6d;
qproperty-ChildColumnBorderColor: #202a49;
qproperty-SelectedChildColumnColor: #3f588b;
qproperty-SelectedChildColumnColor: #514c87;
qproperty-FullcolorColumnColor: #527097;
qproperty-FullcolorColumnBorderColor: #405776;
qproperty-SelectedFullcolorColumnColor: #5f86b2;
qproperty-SelectedFullcolorColumnColor: #717aad;
qproperty-FxColumnColor: #8a674b;
qproperty-FxColumnBorderColor: #694e39;
qproperty-SelectedFxColumnColor: #937e6b;
qproperty-SelectedFxColumnColor: #a57267;
qproperty-ReferenceColumnColor: #2d2d2d;
qproperty-ReferenceColumnBorderColor: #131313;
qproperty-SelectedReferenceColumnColor: #3c4850;
qproperty-SelectedReferenceColumnColor: #4f3c4b;
qproperty-PaletteColumnColor: #42756e;
qproperty-PaletteColumnBorderColor: #30544f;
qproperty-SelectedPaletteColumnColor: #508b8c;
qproperty-SelectedPaletteColumnColor: #627f87;
qproperty-MeshColumnColor: #594d75;
qproperty-MeshColumnBorderColor: #423956;
qproperty-SelectedMeshColumnColor: #656692;
qproperty-SelectedMeshColumnColor: #785a8e;
qproperty-SoundTextColumnColor: #a7a7a7;
qproperty-SoundTextColumnBorderColor: #8e8e8e;
qproperty-SelectedSoundTextColumnColor: #adb9c0;
qproperty-SelectedSoundTextColumnColor: #c0adbc;
qproperty-SoundColumnColor: #578a8a;
qproperty-SoundColumnBorderColor: #436b6b;
qproperty-SelectedSoundColumnColor: #639ea6;
qproperty-SelectedSoundColumnColor: #7692a1;
qproperty-SoundColumnHlColor: #34FE5E;
qproperty-SoundColumnTrackColor: rgba(0, 0, 0, 0.8);
qproperty-ActiveCameraColor: #4073a3;
qproperty-SelectedActiveCameraColor: #4e89bd;
qproperty-SelectedActiveCameraColor: #617db8;
qproperty-OtherCameraColor: #5e9aa3;
qproperty-SelectedOtherCameraColor: #6aadbd;
qproperty-SelectedOtherCameraColor: #7ca1b8;
qproperty-LightLightBGColor: #1b1b1b;
qproperty-LightBGColor: #c8c8c8;
qproperty-DarkBGColor: #b9b9b9;
@ -2369,23 +2369,23 @@ FunctionPanel {
}
SpreadsheetViewer {
qproperty-LightLightBGColor: #1b1b1b;
qproperty-CurrentRowBgColor: rgba(83, 133, 166, 0.7);
qproperty-CurrentRowBgColor: rgba(163, 82, 147, 0.7);
qproperty-LightLineColor: rgba(0, 0, 0, 0.2);
qproperty-MarkerLineColor: rgba(255, 255, 255, 0.15);
qproperty-BGColor: #282828;
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.3);
qproperty-KeyFrameColor: #995d1d;
qproperty-KeyFrameBorderColor: #db9041;
qproperty-SelectedKeyFrameColor: #a2835b;
qproperty-SelectedKeyFrameColor: #c26f53;
qproperty-IgnoredKeyFrameColor: #ac2a39;
qproperty-SelectedIgnoredKeyFrameColor: #b25872;
qproperty-SelectedIgnoredKeyFrameColor: #d2446b;
qproperty-InBetweenColor: #666250;
qproperty-InBetweenBorderColor: #b0aa91;
qproperty-SelectedInBetweenColor: #717970;
qproperty-SelectedInBetweenColor: #846d6c;
qproperty-IgnoredInBetweenColor: #8a695e;
qproperty-SelectedIgnoredInBetweenColor: #93807d;
qproperty-SelectedEmptyColor: rgba(83, 93, 100, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(83, 93, 100, 0.5);
qproperty-SelectedIgnoredInBetweenColor: #a57479;
qproperty-SelectedEmptyColor: rgba(99, 83, 96, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(99, 83, 96, 0.5);
qproperty-TextColor: #e6e6e6;
qproperty-ColumnHeaderBorderColor: #000000;
}
@ -2409,7 +2409,7 @@ SpreadsheetViewer {
background-color: #202020;
padding-left: 10px;
padding-right: 10px;
color: #5385a6;
color: #a35293;
}
#MainWindowMessageLabel:disabled {
color: rgba(230, 230, 230, 0.4);
@ -2482,13 +2482,13 @@ FlipBook #ToolBarContainer {
qproperty-SplineColor: #e6e6e6;
qproperty-GraphColor: rgba(230, 230, 230, 0.4);
qproperty-NonSelectedPointColor: #060606;
qproperty-SelectedPointColor: #5385a6;
qproperty-SelectedPointColor: #a35293;
}
#GraphAreaFrame {
border: 1 solid rgba(230, 230, 230, 0.4);
}
MotionPathPanel {
qproperty-SelectedColor: #5385a6;
qproperty-SelectedColor: #a35293;
qproperty-HoverColor: #494949;
}
#MotionPathLabel {

View file

@ -46,8 +46,8 @@ QToolButton:checked,
#ForceSquaredPixelButton:checked,
#EditToolLockButton::indicator:checked,
#flipCustomize:checked {
background-color: #a0c1dd;
border-color: #7aa8d0;
background-color: #d97fbe;
border-color: #cd58aa;
color: #000;
}
.button-tool:checked:hover,
@ -57,8 +57,8 @@ QToolButton:checked:hover,
#ForceSquaredPixelButton:checked:hover,
#EditToolLockButton::indicator:checked:hover,
#flipCustomize:checked:hover {
background-color: #bed5e8;
border-color: #7aa8d0;
background-color: #e29ece;
border-color: #cd58aa;
}
.button-tool:disabled,
QToolButton:disabled,
@ -76,8 +76,8 @@ QToolButton:disabled:checked,
#ForceSquaredPixelButton:disabled:checked,
#EditToolLockButton::indicator:disabled:checked,
#flipCustomize:disabled:checked {
background-color: rgba(160, 193, 221, 0.4);
border-color: rgba(160, 193, 221, 0.4);
background-color: rgba(217, 127, 190, 0.4);
border-color: rgba(217, 127, 190, 0.4);
}
.button-flat,
PaletteViewer QToolBar QToolButton {
@ -259,7 +259,7 @@ QMenuBar::item:selected {
color: #000;
}
QMenuBar::item:pressed {
background-color: #a0c1dd;
background-color: #d97fbe;
color: #000;
}
/* -----------------------------------------------------------------------------
@ -282,7 +282,7 @@ QMenuBar::item:pressed {
color: #000;
}
#TopBarTab::tab:selected {
background-color: #a0c1dd;
background-color: #d97fbe;
color: #000;
}
#TopBarTab::tab:first {
@ -313,14 +313,14 @@ QMenu::item {
padding: 3 28;
}
QMenu::item:selected {
background-color: #a0c1dd;
background-color: #d97fbe;
color: #000;
}
QMenu::item:checked {
color: #000;
}
QMenu::item:checked:selected {
background-color: #a0c1dd;
background-color: #d97fbe;
color: #000;
}
QMenu::item:disabled {
@ -345,8 +345,8 @@ QMenu::icon {
qproperty-icon: url('../Medium/imgs/black/none');
}
QMenu::icon:checked {
background-color: #a0c1dd;
border: 1 solid #7aa8d0;
background-color: #d97fbe;
border: 1 solid #cd58aa;
}
QMenu::indicator {
margin-left: 8;
@ -367,7 +367,7 @@ TPanelTitleBar {
qproperty-FloatActiveBorderPixmap: url('../Medium/imgs/black/none');
}
TPanelTitleBarButton {
qproperty-PressedColor: #82add2;
qproperty-PressedColor: #d060ae;
qproperty-FreezeColor: #e0625c;
qproperty-PreviewColor: #2cb856;
qproperty-OverColor: #919191;
@ -705,7 +705,7 @@ QTreeView,
QTreeWidget::item:selected,
QTreeView::item:selected,
#FunctionEditorTree::item:selected {
background-color: #a0c1dd;
background-color: #d97fbe;
color: #000;
}
.treeview::branch,
@ -892,7 +892,7 @@ QComboBox:editable {
background-color: #f4f4f4;
border-color: #a8a8a8;
padding: 1 0 1 3;
selection-background-color: #a0c1dd;
selection-background-color: #d97fbe;
selection-color: #000;
}
.ComboBox:hover,
@ -905,11 +905,11 @@ QComboBox:hover:editable {
}
.ComboBox:checked,
QComboBox:checked {
border-color: #3e92d9;
border-color: #d31f9d;
}
.ComboBox:focus,
QComboBox:focus {
border-color: #3e92d9;
border-color: #d31f9d;
}
.ComboBox::drop-down,
QComboBox::drop-down {
@ -946,7 +946,7 @@ QComboBox::drop-down:disabled:editable {
QComboBox QAbstractItemView {
background-color: #DBDBDB;
border: 1 solid #a8a8a8;
selection-background-color: #a0c1dd;
selection-background-color: #d97fbe;
selection-color: #000;
}
/* -----------------------------------------------------------------------------
@ -963,7 +963,7 @@ QTextEdit,
border: 1 solid #a8a8a8;
border-radius: 2;
color: #000;
selection-background-color: #a0c1dd;
selection-background-color: #d97fbe;
selection-color: #000;
padding: 0 0 0 1;
}
@ -975,7 +975,7 @@ QTextEdit:focus,
#tasksRemoveBox:focus,
#tasksAddBox:focus {
background-color: #f4f4f4;
border-color: #3e92d9;
border-color: #d31f9d;
color: #000;
}
.LineEdit:disabled,
@ -1042,7 +1042,7 @@ QCheckBox::indicator:indeterminate:hover,
QGroupBox::indicator:hover,
QGroupBox::indicator:checked:hover,
QGroupBox::indicator:indeterminate:hover {
background-color: #c6daea;
background-color: #e5a6d2;
border-color: #757575;
}
.CheckBox::indicator:checked,
@ -1288,7 +1288,7 @@ DvItemViewerPanel {
qproperty-AlternateBackground: #e3e3e3;
qproperty-SelectedTextColor: #000;
qproperty-FolderTextColor: #001686;
qproperty-SelectedItemBackground: #a0c1dd;
qproperty-SelectedItemBackground: #d97fbe;
}
DvItemViewerTitleBar {
qproperty-ColColor: #cecece;
@ -1314,7 +1314,7 @@ DvItemViewerTitleBar {
StyledTreeView {
qproperty-TextColor: #000;
qproperty-SelectedTextColor: #000;
qproperty-SelectedItemBackground: #a0c1dd;
qproperty-SelectedItemBackground: #d97fbe;
qproperty-FolderTextColor: #001686;
qproperty-SelectedFolderTextColor: #000;
alternate-background-color: #c4c4c4;
@ -1441,7 +1441,7 @@ ParamsPage {
}
#MatchLineButton:checked {
background-color: #ffffff;
border: 2 solid #a0c1dd;
border: 2 solid #d97fbe;
border-radius: 2;
}
#LargeSizedText {
@ -1586,8 +1586,8 @@ PaletteViewer QToolBar #keyFrameNavigator #KeyTotal {
qproperty-NumpadShortcutBgColor: rgba(0, 0, 0, 0.15);
qproperty-NumpadShortcutBorderColor: #808080;
qproperty-SeparatorColor: #a8a8a8;
qproperty-CurrentCellColor: rgba(160, 193, 221, 0.5);
qproperty-SelectedCellColor: #a0c1dd;
qproperty-CurrentCellColor: rgba(217, 127, 190, 0.5);
qproperty-SelectedCellColor: #d97fbe;
qproperty-ListNumpadShortcutBorderColor: #696969;
}
#PaletteLockButton {
@ -1623,12 +1623,12 @@ QDialog #dialogButtonFrame QPushButton {
outline: 0;
}
QDialog #dialogButtonFrame QPushButton:focus {
background-color: #acc3d6;
border-color: #89aac6;
background-color: #d394c1;
border-color: #c570ab;
color: #0d0d0d;
}
QDialog #dialogButtonFrame QPushButton:focus:hover {
background-color: #c7d7e4;
background-color: #dfb1d2;
}
QDialog #dialogButtonFrame QPushButton:focus:pressed {
background-color: #8f8f8f;
@ -1659,7 +1659,7 @@ QDialog #dialogButtonFrame QPushButton:focus:pressed {
color: #000;
}
#PreferencesPopup QListWidget::item:selected {
background-color: #a0c1dd;
background-color: #d97fbe;
color: #000;
}
/* -----------------------------------------------------------------------------
@ -2228,7 +2228,7 @@ XsheetViewer {
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.15);
qproperty-VerticalLineHeadColor: rgba(0, 0, 0, 0.3);
qproperty-PreviewFrameTextColor: #2d42b9;
qproperty-CurrentRowBgColor: rgba(123, 174, 217, 0.7);
qproperty-CurrentRowBgColor: rgba(216, 87, 177, 0.7);
qproperty-OnionSkinAreaBgColor: #c2c2c2;
qproperty-CellFocusColor: #000;
qproperty-ColumnIconLineColor: #707070;
@ -2240,45 +2240,45 @@ XsheetViewer {
qproperty-FoldedColumnLineColor: #757575;
qproperty-EmptyCellColor: #c2c2c2;
qproperty-NotEmptyColumnColor: #cecece;
qproperty-SelectedEmptyCellColor: rgba(146, 153, 158, 0.5);
qproperty-SelectedEmptyCellColor: rgba(157, 139, 152, 0.5);
qproperty-PegColor: #dfb081;
qproperty-TableColor: #cbcbe4;
qproperty-LevelColumnColor: #a1cea1;
qproperty-LevelColumnBorderColor: #77ab77;
qproperty-SelectedLevelColumnColor: #94bba2;
qproperty-SelectedLevelColumnColor: #a1ac9b;
qproperty-VectorColumnColor: #d39ab5;
qproperty-VectorColumnBorderColor: #b36e8e;
qproperty-SelectedVectorColumnColor: #b797b0;
qproperty-SelectedVectorColumnColor: #c488a9;
qproperty-ChildColumnColor: #cca3cc;
qproperty-ChildColumnBorderColor: #a87ba8;
qproperty-SelectedChildColumnColor: #b29dc0;
qproperty-SelectedChildColumnColor: #bf8eb9;
qproperty-FullcolorColumnColor: #b0cbdd;
qproperty-FullcolorColumnBorderColor: #82a6be;
qproperty-SelectedFullcolorColumnColor: #9fb9cc;
qproperty-SelectedFullcolorColumnColor: #acaac5;
qproperty-FxColumnColor: #ceb694;
qproperty-FxColumnBorderColor: #ad9169;
qproperty-SelectedFxColumnColor: #b4ab99;
qproperty-SelectedFxColumnColor: #c19b92;
qproperty-ReferenceColumnColor: #c2c2c2;
qproperty-ReferenceColumnBorderColor: #9c9c9c;
qproperty-SelectedReferenceColumnColor: #abb3b9;
qproperty-SelectedReferenceColumnColor: #b8a4b2;
qproperty-PaletteColumnColor: #a9d4ca;
qproperty-PaletteColumnBorderColor: #7eb2a6;
qproperty-SelectedPaletteColumnColor: #9abfbf;
qproperty-SelectedPaletteColumnColor: #a7b0b8;
qproperty-MeshColumnColor: #b8a2cf;
qproperty-MeshColumnBorderColor: #9278ac;
qproperty-SelectedMeshColumnColor: #a49dc2;
qproperty-SelectedMeshColumnColor: #b18dbb;
qproperty-SoundTextColumnColor: #c2c2c2;
qproperty-SoundTextColumnBorderColor: #9c9c9c;
qproperty-SelectedSoundTextColumnColor: #abb3b9;
qproperty-SelectedSoundTextColumnColor: #b8a4b2;
qproperty-SoundColumnColor: #aad6d6;
qproperty-SoundColumnBorderColor: #7eb5b5;
qproperty-SelectedSoundColumnColor: #9bc1c7;
qproperty-SelectedSoundColumnColor: #a8b2c0;
qproperty-SoundColumnHlColor: #f5ffe6;
qproperty-SoundColumnTrackColor: rgba(0, 0, 0, 0.8);
qproperty-ActiveCameraColor: #79b5ee;
qproperty-SelectedActiveCameraColor: #79aad8;
qproperty-SelectedActiveCameraColor: #869bd1;
qproperty-OtherCameraColor: #6eb7c2;
qproperty-SelectedOtherCameraColor: #71abb9;
qproperty-SelectedOtherCameraColor: #7e9cb2;
qproperty-LightLightBGColor: #c2c2c2;
qproperty-LightBGColor: #ffffff;
qproperty-DarkBGColor: #ffffff;
@ -2369,23 +2369,23 @@ FunctionPanel {
}
SpreadsheetViewer {
qproperty-LightLightBGColor: #c2c2c2;
qproperty-CurrentRowBgColor: rgba(123, 174, 217, 0.7);
qproperty-CurrentRowBgColor: rgba(216, 87, 177, 0.7);
qproperty-LightLineColor: rgba(0, 0, 0, 0.15);
qproperty-MarkerLineColor: rgba(0, 0, 0, 0.3);
qproperty-BGColor: #cecece;
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.15);
qproperty-KeyFrameColor: #edaa64;
qproperty-KeyFrameBorderColor: #bb6a16;
qproperty-SelectedKeyFrameColor: #c9a278;
qproperty-SelectedKeyFrameColor: #d69371;
qproperty-IgnoredKeyFrameColor: #cb5765;
qproperty-SelectedIgnoredKeyFrameColor: #eb96ad;
qproperty-SelectedIgnoredKeyFrameColor: #ff7ca1;
qproperty-InBetweenColor: #e2dbcc;
qproperty-InBetweenBorderColor: #ac9f82;
qproperty-SelectedInBetweenColor: #c2c4c0;
qproperty-SelectedInBetweenColor: #cfb5b9;
qproperty-IgnoredInBetweenColor: #c29c92;
qproperty-SelectedIgnoredInBetweenColor: #ab9898;
qproperty-SelectedEmptyColor: rgba(146, 153, 158, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(146, 153, 158, 0.5);
qproperty-SelectedIgnoredInBetweenColor: #b88991;
qproperty-SelectedEmptyColor: rgba(157, 139, 152, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(157, 139, 152, 0.5);
qproperty-TextColor: #000;
qproperty-ColumnHeaderBorderColor: #8f8f8f;
}
@ -2409,7 +2409,7 @@ SpreadsheetViewer {
background-color: #DBDBDB;
padding-left: 10px;
padding-right: 10px;
color: #a0c1dd;
color: #d97fbe;
}
#MainWindowMessageLabel:disabled {
color: rgba(0, 0, 0, 0.4);
@ -2482,13 +2482,13 @@ FlipBook #ToolBarContainer {
qproperty-SplineColor: #000;
qproperty-GraphColor: rgba(0, 0, 0, 0.4);
qproperty-NonSelectedPointColor: #a8a8a8;
qproperty-SelectedPointColor: #a0c1dd;
qproperty-SelectedPointColor: #d97fbe;
}
#GraphAreaFrame {
border: 1 solid rgba(0, 0, 0, 0.4);
}
MotionPathPanel {
qproperty-SelectedColor: #a0c1dd;
qproperty-SelectedColor: #d97fbe;
qproperty-HoverColor: #d3d3d3;
}
#MotionPathLabel {

View file

@ -46,8 +46,8 @@ QToolButton:checked,
#ForceSquaredPixelButton:checked,
#EditToolLockButton::indicator:checked,
#flipCustomize:checked {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
color: #ffffff;
}
.button-tool:checked:hover,
@ -57,8 +57,8 @@ QToolButton:checked:hover,
#ForceSquaredPixelButton:checked:hover,
#EditToolLockButton::indicator:checked:hover,
#flipCustomize:checked:hover {
background-color: #6c98b6;
border-color: #6c98b6;
background-color: #b46aa5;
border-color: #b46aa5;
}
.button-tool:disabled,
QToolButton:disabled,
@ -76,8 +76,8 @@ QToolButton:disabled:checked,
#ForceSquaredPixelButton:disabled:checked,
#EditToolLockButton::indicator:disabled:checked,
#flipCustomize:disabled:checked {
background-color: rgba(83, 133, 166, 0.4);
border-color: rgba(83, 133, 166, 0.4);
background-color: rgba(163, 82, 147, 0.4);
border-color: rgba(163, 82, 147, 0.4);
}
.button-flat,
PaletteViewer QToolBar QToolButton {
@ -259,7 +259,7 @@ QMenuBar::item:selected {
color: #e6e6e6;
}
QMenuBar::item:pressed {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -282,7 +282,7 @@ QMenuBar::item:pressed {
color: #a1a1a1;
}
#TopBarTab::tab:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
#TopBarTab::tab:first {
@ -313,14 +313,14 @@ QMenu::item {
padding: 3 28;
}
QMenu::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
QMenu::item:checked {
color: #e6e6e6;
}
QMenu::item:checked:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
QMenu::item:disabled {
@ -345,8 +345,8 @@ QMenu::icon {
qproperty-icon: url('imgs/white/none');
}
QMenu::icon:checked {
background-color: #5385a6;
border: 1 solid #5385a6;
background-color: #a35293;
border: 1 solid #a35293;
}
QMenu::indicator {
margin-left: 8;
@ -367,7 +367,7 @@ TPanelTitleBar {
qproperty-FloatActiveBorderPixmap: url('imgs/white/none');
}
TPanelTitleBarButton {
qproperty-PressedColor: #5385a6;
qproperty-PressedColor: #a35293;
qproperty-FreezeColor: #C34040;
qproperty-PreviewColor: #1baf7e;
qproperty-OverColor: #717171;
@ -705,7 +705,7 @@ QTreeView,
QTreeWidget::item:selected,
QTreeView::item:selected,
#FunctionEditorTree::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
.treeview::branch,
@ -892,7 +892,7 @@ QComboBox:editable {
background-color: #2f2f2f;
border-color: #2c2c2c;
padding: 1 0 1 3;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
}
.ComboBox:hover,
@ -905,11 +905,11 @@ QComboBox:hover:editable {
}
.ComboBox:checked,
QComboBox:checked {
border-color: #5385a6;
border-color: #a35293;
}
.ComboBox:focus,
QComboBox:focus {
border-color: #5385a6;
border-color: #a35293;
}
.ComboBox::drop-down,
QComboBox::drop-down {
@ -946,7 +946,7 @@ QComboBox::drop-down:disabled:editable {
QComboBox QAbstractItemView {
background-color: #484848;
border: 1 solid #2c2c2c;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -963,7 +963,7 @@ QTextEdit,
border: 1 solid #2c2c2c;
border-radius: 2;
color: #e6e6e6;
selection-background-color: #5385a6;
selection-background-color: #a35293;
selection-color: #ffffff;
padding: 0 0 0 1;
}
@ -975,7 +975,7 @@ QTextEdit:focus,
#tasksRemoveBox:focus,
#tasksAddBox:focus {
background-color: #2f2f2f;
border-color: #5385a6;
border-color: #a35293;
color: #e6e6e6;
}
.LineEdit:disabled,
@ -1050,8 +1050,8 @@ QMenu::indicator:non-exclusive:checked,
QCheckBox::indicator:checked,
.GroupBox::indicator:checked,
QGroupBox::indicator:checked {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
image: url('imgs/white/checkmark.svg');
}
.CheckBox::indicator:checked:hover,
@ -1059,7 +1059,7 @@ QMenu::indicator:non-exclusive:checked:hover,
QCheckBox::indicator:checked:hover,
.GroupBox::indicator:checked:hover,
QGroupBox::indicator:checked:hover {
background-color: #5385a6;
background-color: #a35293;
border-color: #c8c8c8;
}
.CheckBox::indicator:checked:disabled,
@ -1076,8 +1076,8 @@ QMenu::indicator:non-exclusive:indeterminate,
QCheckBox::indicator:indeterminate,
.GroupBox::indicator:indeterminate,
QGroupBox::indicator:indeterminate {
background-color: #5385a6;
border-color: #5385a6;
background-color: #a35293;
border-color: #a35293;
image: url('imgs/white/checkpartially.svg');
}
.CheckBox::indicator:indeterminate:disabled,
@ -1288,7 +1288,7 @@ DvItemViewerPanel {
qproperty-AlternateBackground: #434343;
qproperty-SelectedTextColor: #ffffff;
qproperty-FolderTextColor: #9fdaff;
qproperty-SelectedItemBackground: #5385a6;
qproperty-SelectedItemBackground: #a35293;
}
DvItemViewerTitleBar {
qproperty-ColColor: #3b3b3b;
@ -1314,7 +1314,7 @@ DvItemViewerTitleBar {
StyledTreeView {
qproperty-TextColor: #e6e6e6;
qproperty-SelectedTextColor: #ffffff;
qproperty-SelectedItemBackground: #5385a6;
qproperty-SelectedItemBackground: #a35293;
qproperty-FolderTextColor: #9fdaff;
qproperty-SelectedFolderTextColor: #ffffff;
alternate-background-color: #363636;
@ -1441,7 +1441,7 @@ ParamsPage {
}
#MatchLineButton:checked {
background-color: #949494;
border: 2 solid #5385a6;
border: 2 solid #a35293;
border-radius: 2;
}
#LargeSizedText {
@ -1586,8 +1586,8 @@ PaletteViewer QToolBar #keyFrameNavigator #KeyTotal {
qproperty-NumpadShortcutBgColor: rgba(0, 0, 0, 0.3);
qproperty-NumpadShortcutBorderColor: #8d8d8d;
qproperty-SeparatorColor: #2c2c2c;
qproperty-CurrentCellColor: rgba(83, 133, 166, 0.5);
qproperty-SelectedCellColor: #5385a6;
qproperty-CurrentCellColor: rgba(163, 82, 147, 0.5);
qproperty-SelectedCellColor: #a35293;
qproperty-ListNumpadShortcutBorderColor: #afafaf;
}
#PaletteLockButton {
@ -1623,12 +1623,12 @@ QDialog #dialogButtonFrame QPushButton {
outline: 0;
}
QDialog #dialogButtonFrame QPushButton:focus {
background-color: #5385a6;
background-color: #a35293;
border-color: #3e3e3e;
color: #ffffff;
}
QDialog #dialogButtonFrame QPushButton:focus:hover {
background-color: #6c98b6;
background-color: #b46aa5;
}
QDialog #dialogButtonFrame QPushButton:focus:pressed {
background-color: #2c2c2c;
@ -1659,7 +1659,7 @@ QDialog #dialogButtonFrame QPushButton:focus:pressed {
color: #e6e6e6;
}
#PreferencesPopup QListWidget::item:selected {
background-color: #5385a6;
background-color: #a35293;
color: #ffffff;
}
/* -----------------------------------------------------------------------------
@ -2147,7 +2147,7 @@ FlipSlider {
Ruler {
qproperty-ParentBGColor: #484848;
qproperty-ScaleColor: rgba(230, 230, 230, 0.7);
qproperty-HandleColor: #64b0e2;
qproperty-HandleColor: #e161c8;
qproperty-HandleDragColor: yellow;
qproperty-BorderColor: rgba(44, 44, 44, 0.7);
}
@ -2228,57 +2228,57 @@ XsheetViewer {
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.3);
qproperty-VerticalLineHeadColor: #272727;
qproperty-PreviewFrameTextColor: #9fdaff;
qproperty-CurrentRowBgColor: rgba(83, 133, 166, 0.7);
qproperty-CurrentRowBgColor: rgba(163, 82, 147, 0.7);
qproperty-OnionSkinAreaBgColor: #393939;
qproperty-CellFocusColor: #000;
qproperty-ColumnIconLineColor: #2c2c2c;
qproperty-EmptyColumnHeadColor: #484848;
qproperty-ColumnHeadPastelizer: rgba(0, 0, 0, 0);
qproperty-SelectedColumnHead: rgba(221, 231, 237, 0.3);
qproperty-SelectedColumnHead: rgba(237, 220, 233, 0.3);
qproperty-PlayRangeColor: #484848;
qproperty-FoldedColumnBGColor: #626262;
qproperty-FoldedColumnLineColor: #3b3b3b;
qproperty-EmptyCellColor: #393939;
qproperty-NotEmptyColumnColor: #404040;
qproperty-SelectedEmptyCellColor: rgba(103, 113, 119, 0.5);
qproperty-SelectedEmptyCellColor: rgba(119, 103, 116, 0.5);
qproperty-PegColor: #9f6e3c;
qproperty-TableColor: #62628c;
qproperty-LevelColumnColor: #4C6E4C;
qproperty-LevelColumnBorderColor: #375037;
qproperty-SelectedLevelColumnColor: #59846c;
qproperty-SelectedLevelColumnColor: #6c7968;
qproperty-VectorColumnColor: #79304e;
qproperty-VectorColumnBorderColor: #542236;
qproperty-SelectedVectorColumnColor: #834b6e;
qproperty-SelectedVectorColumnColor: #953f6a;
qproperty-ChildColumnColor: #2f3e6d;
qproperty-ChildColumnBorderColor: #202a49;
qproperty-SelectedChildColumnColor: #3f588b;
qproperty-SelectedChildColumnColor: #514c87;
qproperty-FullcolorColumnColor: #527097;
qproperty-FullcolorColumnBorderColor: #405776;
qproperty-SelectedFullcolorColumnColor: #5f86b2;
qproperty-SelectedFullcolorColumnColor: #717aad;
qproperty-FxColumnColor: #8a674b;
qproperty-FxColumnBorderColor: #694e39;
qproperty-SelectedFxColumnColor: #937e6b;
qproperty-SelectedFxColumnColor: #a57267;
qproperty-ReferenceColumnColor: #555555;
qproperty-ReferenceColumnBorderColor: #3b3b3b;
qproperty-SelectedReferenceColumnColor: #616d74;
qproperty-SelectedReferenceColumnColor: #746170;
qproperty-PaletteColumnColor: #42756e;
qproperty-PaletteColumnBorderColor: #30544f;
qproperty-SelectedPaletteColumnColor: #508b8c;
qproperty-SelectedPaletteColumnColor: #627f87;
qproperty-MeshColumnColor: #594d75;
qproperty-MeshColumnBorderColor: #423956;
qproperty-SelectedMeshColumnColor: #656692;
qproperty-SelectedMeshColumnColor: #785a8e;
qproperty-SoundTextColumnColor: #a7a7a7;
qproperty-SoundTextColumnBorderColor: #8e8e8e;
qproperty-SelectedSoundTextColumnColor: #adb9c0;
qproperty-SelectedSoundTextColumnColor: #c0adbc;
qproperty-SoundColumnColor: #578a8a;
qproperty-SoundColumnBorderColor: #436b6b;
qproperty-SelectedSoundColumnColor: #639ea6;
qproperty-SelectedSoundColumnColor: #7692a1;
qproperty-SoundColumnHlColor: #34FE5E;
qproperty-SoundColumnTrackColor: rgba(0, 0, 0, 0.8);
qproperty-ActiveCameraColor: #4073a3;
qproperty-SelectedActiveCameraColor: #4e89bd;
qproperty-SelectedActiveCameraColor: #617db8;
qproperty-OtherCameraColor: #5e9aa3;
qproperty-SelectedOtherCameraColor: #6aadbd;
qproperty-SelectedOtherCameraColor: #7ca1b8;
qproperty-LightLightBGColor: #393939;
qproperty-LightBGColor: #f0f0f0;
qproperty-DarkBGColor: #e1e1e1;
@ -2369,23 +2369,23 @@ FunctionPanel {
}
SpreadsheetViewer {
qproperty-LightLightBGColor: #393939;
qproperty-CurrentRowBgColor: rgba(83, 133, 166, 0.7);
qproperty-CurrentRowBgColor: rgba(163, 82, 147, 0.7);
qproperty-LightLineColor: rgba(0, 0, 0, 0.2);
qproperty-MarkerLineColor: rgba(255, 255, 255, 0.15);
qproperty-BGColor: #404040;
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.3);
qproperty-KeyFrameColor: #995d1d;
qproperty-KeyFrameBorderColor: #db9041;
qproperty-SelectedKeyFrameColor: #a2835b;
qproperty-SelectedKeyFrameColor: #c26f53;
qproperty-IgnoredKeyFrameColor: #ac2a39;
qproperty-SelectedIgnoredKeyFrameColor: #b25872;
qproperty-SelectedIgnoredKeyFrameColor: #d2446b;
qproperty-InBetweenColor: #666250;
qproperty-InBetweenBorderColor: #b0aa91;
qproperty-SelectedInBetweenColor: #717970;
qproperty-SelectedInBetweenColor: #846d6c;
qproperty-IgnoredInBetweenColor: #8a695e;
qproperty-SelectedIgnoredInBetweenColor: #93807d;
qproperty-SelectedEmptyColor: rgba(103, 113, 119, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(103, 113, 119, 0.5);
qproperty-SelectedIgnoredInBetweenColor: #a57479;
qproperty-SelectedEmptyColor: rgba(119, 103, 116, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(119, 103, 116, 0.5);
qproperty-TextColor: #e6e6e6;
qproperty-ColumnHeaderBorderColor: #272727;
}
@ -2409,7 +2409,7 @@ SpreadsheetViewer {
background-color: #484848;
padding-left: 10px;
padding-right: 10px;
color: #5385a6;
color: #a35293;
}
#MainWindowMessageLabel:disabled {
color: rgba(230, 230, 230, 0.4);
@ -2482,13 +2482,13 @@ FlipBook #ToolBarContainer {
qproperty-SplineColor: #e6e6e6;
qproperty-GraphColor: rgba(230, 230, 230, 0.4);
qproperty-NonSelectedPointColor: #2c2c2c;
qproperty-SelectedPointColor: #5385a6;
qproperty-SelectedPointColor: #a35293;
}
#GraphAreaFrame {
border: 1 solid rgba(230, 230, 230, 0.4);
}
MotionPathPanel {
qproperty-SelectedColor: #5385a6;
qproperty-SelectedColor: #a35293;
qproperty-HoverColor: #717171;
}
#MotionPathLabel {

View file

@ -1,11 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="13px" height="13px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1.22222,0,0,1.22222,-0.222222,-0.222222)">
<circle cx="5.5" cy="5.5" r="4.5" style="fill-opacity:0.5;"/>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="13px"
height="13px"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
id="svg12"
sodipodi:docname="radiobutton_checked.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
id="metadata18"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs16" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview14"
showgrid="false"
inkscape:zoom="61.667873"
inkscape:cx="6.5"
inkscape:cy="6.5"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg12"
inkscape:document-rotation="0" />
<g
transform="matrix(1.2402377,0,0,1.2474447,-0.35375096,-0.39338982)"
id="g4"
style="display:inline">
<circle
cx="5.5"
cy="5.5"
r="4.5"
style="display:inline;fill-opacity:0.5"
id="circle2" />
</g>
<g transform="matrix(1.4,0,0,1.4,-1.2,-1.2)">
<circle cx="5.5" cy="5.5" r="2.5" style="fill:rgb(85,149,191);"/>
<g
transform="matrix(1.4,0,0,1.4,-1.2,-1.2)"
id="g8"
style="display:inline"
inkscape:label="g8">
<circle
cx="5.5"
cy="5.5"
r="2.5"
style="display:inline;fill:#a35293;fill-opacity:1"
id="circle6" />
</g>
<path d="M6.5,0C10.088,0 13,2.912 13,6.5C13,10.088 10.088,13 6.5,13C2.912,13 0,10.088 0,6.5C0,2.912 2.912,0 6.5,0ZM6.5,1C9.536,1 12,3.464 12,6.5C12,9.536 9.536,12 6.5,12C3.464,12 1,9.536 1,6.5C1,3.464 3.464,1 6.5,1Z" style="fill:rgb(85,149,191);"/>
<path
d="M 6.5,0 C 10.088,0 13,2.912 13,6.5 13,10.088 10.088,13 6.5,13 2.912,13 0,10.088 0,6.5 0,2.912 2.912,0 6.5,0 Z m 0,1 C 9.536,1 12,3.464 12,6.5 12,9.536 9.536,12 6.5,12 3.464,12 1,9.536 1,6.5 1,3.464 3.464,1 6.5,1 Z"
style="display:inline;fill:#a35293;fill-opacity:1"
id="path10" />
</svg>

Before

Width:  |  Height:  |  Size: 963 B

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -17,7 +17,7 @@
@text-color: rgb(230, 230, 230);
@text-color-disabled: fade(@text-color, 40);
@hl-bg-color: rgb(83, 133, 166);
@hl-bg-color: rgb(163, 82, 147);
@hl-bg-color-disabled: darken(desaturate(@hl-bg-color, 15), 15);
@hl-text-color: rgb(255, 255, 255);
@hl-bg-color-secondary: rgba(255, 255, 255, 0.10);

View file

@ -18,7 +18,7 @@
@bg: #DBDBDB;
@accent: darken(@bg, 20);
@dock-bg-color: darken(@bg, 30);
@hl-bg-color: #a0c1dd;
@hl-bg-color: rgb(217, 127, 190);
@hl-text-color: #000;
@hl-bg-color-secondary: darken(@bg, 15);

View file

@ -14,7 +14,7 @@
@accent: darken(@bg, 15);
@text-color: #000;
@hl-bg-color: #8FA0B2;
@hl-bg-color: rgb(193, 96, 153);
@hl-text-color: #000;
@hl-bg-color-secondary: rgba(255, 255, 255, 0.15);

View file

@ -46,8 +46,8 @@ QToolButton:checked,
#ForceSquaredPixelButton:checked,
#EditToolLockButton::indicator:checked,
#flipCustomize:checked {
background-color: #8FA0B2;
border-color: #445464;
background-color: #c16099;
border-color: #622649;
color: #000;
}
.button-tool:checked:hover,
@ -57,8 +57,8 @@ QToolButton:checked:hover,
#ForceSquaredPixelButton:checked:hover,
#EditToolLockButton::indicator:checked:hover,
#flipCustomize:checked:hover {
background-color: #a7b5c3;
border-color: #445464;
background-color: #cc7dac;
border-color: #622649;
}
.button-tool:disabled,
QToolButton:disabled,
@ -76,8 +76,8 @@ QToolButton:disabled:checked,
#ForceSquaredPixelButton:disabled:checked,
#EditToolLockButton::indicator:disabled:checked,
#flipCustomize:disabled:checked {
background-color: rgba(143, 160, 178, 0.4);
border-color: rgba(143, 160, 178, 0.4);
background-color: rgba(193, 96, 153, 0.4);
border-color: rgba(193, 96, 153, 0.4);
}
.button-flat,
PaletteViewer QToolBar QToolButton {
@ -259,7 +259,7 @@ QMenuBar::item:selected {
color: #000;
}
QMenuBar::item:pressed {
background-color: #8FA0B2;
background-color: #c16099;
color: #000;
}
/* -----------------------------------------------------------------------------
@ -282,7 +282,7 @@ QMenuBar::item:pressed {
color: #000;
}
#TopBarTab::tab:selected {
background-color: #8FA0B2;
background-color: #c16099;
color: #000;
}
#TopBarTab::tab:first {
@ -313,14 +313,14 @@ QMenu::item {
padding: 3 28;
}
QMenu::item:selected {
background-color: #8FA0B2;
background-color: #c16099;
color: #000;
}
QMenu::item:checked {
color: #000;
}
QMenu::item:checked:selected {
background-color: #8FA0B2;
background-color: #c16099;
color: #000;
}
QMenu::item:disabled {
@ -345,8 +345,8 @@ QMenu::icon {
qproperty-icon: url('../Medium/imgs/black/none');
}
QMenu::icon:checked {
background-color: #8FA0B2;
border: 1 solid #445464;
background-color: #c16099;
border: 1 solid #622649;
}
QMenu::indicator {
margin-left: 8;
@ -367,7 +367,7 @@ TPanelTitleBar {
qproperty-FloatActiveBorderPixmap: url('../Medium/imgs/black/none');
}
TPanelTitleBarButton {
qproperty-PressedColor: #8FA0B2;
qproperty-PressedColor: #c16099;
qproperty-FreezeColor: #bd5454;
qproperty-PreviewColor: #15b884;
qproperty-OverColor: #8a8a8a;
@ -705,7 +705,7 @@ QTreeView,
QTreeWidget::item:selected,
QTreeView::item:selected,
#FunctionEditorTree::item:selected {
background-color: #8FA0B2;
background-color: #c16099;
color: #000;
}
.treeview::branch,
@ -892,7 +892,7 @@ QComboBox:editable {
background-color: #c0c0c0;
border-color: #5a5a5a;
padding: 1 0 1 3;
selection-background-color: #8FA0B2;
selection-background-color: #c16099;
selection-color: #000;
}
.ComboBox:hover,
@ -946,7 +946,7 @@ QComboBox::drop-down:disabled:editable {
QComboBox QAbstractItemView {
background-color: #b3b3b3;
border: 1 solid #5a5a5a;
selection-background-color: #8FA0B2;
selection-background-color: #c16099;
selection-color: #000;
}
/* -----------------------------------------------------------------------------
@ -963,7 +963,7 @@ QTextEdit,
border: 1 solid #5a5a5a;
border-radius: 2;
color: #000;
selection-background-color: #8FA0B2;
selection-background-color: #c16099;
selection-color: #000;
padding: 0 0 0 1;
}
@ -1288,7 +1288,7 @@ DvItemViewerPanel {
qproperty-AlternateBackground: #888888;
qproperty-SelectedTextColor: #000;
qproperty-FolderTextColor: #001686;
qproperty-SelectedItemBackground: #8FA0B2;
qproperty-SelectedItemBackground: #c16099;
}
DvItemViewerTitleBar {
qproperty-ColColor: #737373;
@ -1314,7 +1314,7 @@ DvItemViewerTitleBar {
StyledTreeView {
qproperty-TextColor: #000;
qproperty-SelectedTextColor: #000;
qproperty-SelectedItemBackground: #8FA0B2;
qproperty-SelectedItemBackground: #c16099;
qproperty-FolderTextColor: #001686;
qproperty-SelectedFolderTextColor: #000;
alternate-background-color: #7d7d7d;
@ -1441,7 +1441,7 @@ ParamsPage {
}
#MatchLineButton:checked {
background-color: #cdcdcd;
border: 2 solid #8FA0B2;
border: 2 solid #c16099;
border-radius: 2;
}
#LargeSizedText {
@ -1586,8 +1586,8 @@ PaletteViewer QToolBar #keyFrameNavigator #KeyTotal {
qproperty-NumpadShortcutBgColor: rgba(0, 0, 0, 0.3);
qproperty-NumpadShortcutBorderColor: #bebebe;
qproperty-SeparatorColor: #5a5a5a;
qproperty-CurrentCellColor: rgba(143, 160, 178, 0.5);
qproperty-SelectedCellColor: #8FA0B2;
qproperty-CurrentCellColor: rgba(193, 96, 153, 0.5);
qproperty-SelectedCellColor: #c16099;
qproperty-ListNumpadShortcutBorderColor: #afafaf;
}
#PaletteLockButton {
@ -1623,12 +1623,12 @@ QDialog #dialogButtonFrame QPushButton {
outline: 0;
}
QDialog #dialogButtonFrame QPushButton:focus {
background-color: #8FA0B2;
border-color: #303a45;
background-color: #c16099;
border-color: #3d182e;
color: #0d0d0d;
}
QDialog #dialogButtonFrame QPushButton:focus:hover {
background-color: #a7b5c3;
background-color: #cc7dac;
}
QDialog #dialogButtonFrame QPushButton:focus:pressed {
background-color: #676767;
@ -1659,7 +1659,7 @@ QDialog #dialogButtonFrame QPushButton:focus:pressed {
color: #000;
}
#PreferencesPopup QListWidget::item:selected {
background-color: #8FA0B2;
background-color: #c16099;
color: #000;
}
/* -----------------------------------------------------------------------------
@ -2147,7 +2147,7 @@ FlipSlider {
Ruler {
qproperty-ParentBGColor: #808080;
qproperty-ScaleColor: rgba(0, 0, 0, 0.7);
qproperty-HandleColor: #a9c6e5;
qproperty-HandleColor: #f07ec1;
qproperty-HandleDragColor: yellow;
qproperty-BorderColor: rgba(90, 90, 90, 0.7);
}
@ -2228,57 +2228,57 @@ XsheetViewer {
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.3);
qproperty-VerticalLineHeadColor: #4d4d4d;
qproperty-PreviewFrameTextColor: #17239c;
qproperty-CurrentRowBgColor: rgba(182, 211, 241, 0.7);
qproperty-CurrentRowBgColor: rgba(251, 140, 205, 0.7);
qproperty-OnionSkinAreaBgColor: #6c6c6c;
qproperty-CellFocusColor: #000;
qproperty-ColumnIconLineColor: #4d4d4d;
qproperty-EmptyColumnHeadColor: #808080;
qproperty-ColumnHeadPastelizer: rgba(0, 0, 0, 0);
qproperty-SelectedColumnHead: rgba(233, 236, 240, 0.3);
qproperty-SelectedColumnHead: rgba(243, 223, 235, 0.3);
qproperty-PlayRangeColor: #808080;
qproperty-FoldedColumnBGColor: #9a9a9a;
qproperty-FoldedColumnLineColor: #737373;
qproperty-EmptyCellColor: #6c6c6c;
qproperty-NotEmptyColumnColor: #767676;
qproperty-SelectedEmptyCellColor: rgba(155, 159, 162, 0.5);
qproperty-SelectedEmptyCellColor: rgba(165, 146, 157, 0.5);
qproperty-PegColor: #be8a56;
qproperty-TableColor: #a4a4bf;
qproperty-LevelColumnColor: #78a578;
qproperty-LevelColumnBorderColor: #537d53;
qproperty-SelectedLevelColumnColor: #90bd98;
qproperty-SelectedLevelColumnColor: #9baf92;
qproperty-VectorColumnColor: #a7637d;
qproperty-VectorColumnBorderColor: #794459;
qproperty-SelectedVectorColumnColor: #bb809c;
qproperty-SelectedVectorColumnColor: #c77297;
qproperty-ChildColumnColor: #9a759c;
qproperty-ChildColumnBorderColor: #715272;
qproperty-SelectedChildColumnColor: #af91b9;
qproperty-SelectedChildColumnColor: #bb82b3;
qproperty-FullcolorColumnColor: #839bb1;
qproperty-FullcolorColumnBorderColor: #59758e;
qproperty-SelectedFullcolorColumnColor: #9ab4cc;
qproperty-SelectedFullcolorColumnColor: #a5a5c7;
qproperty-FxColumnColor: #928562;
qproperty-FxColumnBorderColor: #645b43;
qproperty-SelectedFxColumnColor: #a8a083;
qproperty-SelectedFxColumnColor: #b3917e;
qproperty-ReferenceColumnColor: #959595;
qproperty-ReferenceColumnBorderColor: #6f6f6f;
qproperty-SelectedReferenceColumnColor: #abaeb3;
qproperty-SelectedReferenceColumnColor: #b6a0ad;
qproperty-PaletteColumnColor: #599586;
qproperty-PaletteColumnBorderColor: #3c655b;
qproperty-SelectedPaletteColumnColor: #73aea5;
qproperty-SelectedPaletteColumnColor: #7fa09f;
qproperty-MeshColumnColor: #8b73a7;
qproperty-MeshColumnBorderColor: #654f7e;
qproperty-SelectedMeshColumnColor: #a18fc3;
qproperty-SelectedMeshColumnColor: #ad80bd;
qproperty-SoundTextColumnColor: #a7a7a7;
qproperty-SoundTextColumnBorderColor: #818181;
qproperty-SelectedSoundTextColumnColor: #bbbfc3;
qproperty-SelectedSoundTextColumnColor: #c7b0bd;
qproperty-SoundColumnColor: #749e9e;
qproperty-SoundColumnBorderColor: #517474;
qproperty-SelectedSoundColumnColor: #8cb7bb;
qproperty-SelectedSoundColumnColor: #98a8b5;
qproperty-SoundColumnHlColor: #f5ffe6;
qproperty-SoundColumnTrackColor: rgba(0, 0, 0, 0.8);
qproperty-ActiveCameraColor: #6491be;
qproperty-SelectedActiveCameraColor: #7dabd9;
qproperty-SelectedActiveCameraColor: #899cd3;
qproperty-OtherCameraColor: #8f9c9e;
qproperty-SelectedOtherCameraColor: #a5b5bb;
qproperty-SelectedOtherCameraColor: #b1a6b5;
qproperty-LightLightBGColor: #6c6c6c;
qproperty-LightBGColor: #ffffff;
qproperty-DarkBGColor: #ffffff;
@ -2369,23 +2369,23 @@ FunctionPanel {
}
SpreadsheetViewer {
qproperty-LightLightBGColor: #6c6c6c;
qproperty-CurrentRowBgColor: rgba(182, 211, 241, 0.7);
qproperty-CurrentRowBgColor: rgba(251, 140, 205, 0.7);
qproperty-LightLineColor: rgba(0, 0, 0, 0.15);
qproperty-MarkerLineColor: rgba(255, 255, 255, 0.2);
qproperty-BGColor: #767676;
qproperty-VerticalLineColor: rgba(0, 0, 0, 0.3);
qproperty-KeyFrameColor: #c4833e;
qproperty-KeyFrameBorderColor: #64421f;
qproperty-SelectedKeyFrameColor: #deae7b;
qproperty-SelectedKeyFrameColor: #f29471;
qproperty-IgnoredKeyFrameColor: #ac2a39;
qproperty-SelectedIgnoredKeyFrameColor: #ca6377;
qproperty-SelectedIgnoredKeyFrameColor: #de4a6d;
qproperty-InBetweenColor: #b4b09e;
qproperty-InBetweenBorderColor: #6e6c64;
qproperty-SelectedInBetweenColor: #c7c7bb;
qproperty-SelectedInBetweenColor: #d3b9b5;
qproperty-IgnoredInBetweenColor: #8a695e;
qproperty-SelectedIgnoredInBetweenColor: #a08680;
qproperty-SelectedEmptyColor: rgba(155, 159, 162, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(155, 159, 162, 0.5);
qproperty-SelectedIgnoredInBetweenColor: #ac777a;
qproperty-SelectedEmptyColor: rgba(165, 146, 157, 0.5);
qproperty-SelectedSceneRangeEmptyColor: rgba(165, 146, 157, 0.5);
qproperty-TextColor: #000;
qproperty-ColumnHeaderBorderColor: #343434;
}
@ -2409,7 +2409,7 @@ SpreadsheetViewer {
background-color: #808080;
padding-left: 10px;
padding-right: 10px;
color: #8FA0B2;
color: #c16099;
}
#MainWindowMessageLabel:disabled {
color: rgba(0, 0, 0, 0.4);
@ -2482,13 +2482,13 @@ FlipBook #ToolBarContainer {
qproperty-SplineColor: #000;
qproperty-GraphColor: rgba(0, 0, 0, 0.4);
qproperty-NonSelectedPointColor: #5a5a5a;
qproperty-SelectedPointColor: #8FA0B2;
qproperty-SelectedPointColor: #c16099;
}
#GraphAreaFrame {
border: 1 solid rgba(0, 0, 0, 0.4);
}
MotionPathPanel {
qproperty-SelectedColor: #8FA0B2;
qproperty-SelectedColor: #c16099;
qproperty-HoverColor: #b3b3b3;
}
#MotionPathLabel {