Merge commit 'a743ad9496701894406c0d7ded6a44fcecd4219e' as 'deps/QDark'
This commit is contained in:
2256
deps/QDark/qdarkstyle/qss/_styles.scss
vendored
Normal file
2256
deps/QDark/qdarkstyle/qss/_styles.scss
vendored
Normal file
File diff suppressed because it is too large
Load Diff
28
deps/QDark/qdarkstyle/qss/_variables.scss
vendored
Normal file
28
deps/QDark/qdarkstyle/qss/_variables.scss
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
// ---------------------------------------------------------------------------
|
||||
//
|
||||
// File created programmatically
|
||||
//
|
||||
// The definitions are in the "qdarkstyle.palette" module
|
||||
//
|
||||
// WARNING! All changes made in this file will be lost!
|
||||
//
|
||||
//----------------------------------------------------------------------------
|
||||
$COLOR_BACKGROUND_LIGHT: #505F69;
|
||||
$COLOR_BACKGROUND_NORMAL: #32414B;
|
||||
$COLOR_BACKGROUND_DARK: #19232D;
|
||||
$COLOR_FOREGROUND_LIGHT: #F0F0F0;
|
||||
$COLOR_FOREGROUND_NORMAL: #AAAAAA;
|
||||
$COLOR_FOREGROUND_DARK: #787878;
|
||||
$COLOR_SELECTION_LIGHT: #148CD2;
|
||||
$COLOR_SELECTION_NORMAL: #1464A0;
|
||||
$COLOR_SELECTION_DARK: #14506E;
|
||||
$OPACITY_TOOLTIP: 230;
|
||||
$SIZE_BORDER_RADIUS: 4px;
|
||||
$BORDER_LIGHT: 1px solid $COLOR_BACKGROUND_LIGHT;
|
||||
$BORDER_NORMAL: 1px solid $COLOR_BACKGROUND_NORMAL;
|
||||
$BORDER_DARK: 1px solid $COLOR_BACKGROUND_DARK;
|
||||
$BORDER_SELECTION_LIGHT: 1px solid $COLOR_SELECTION_LIGHT;
|
||||
$BORDER_SELECTION_NORMAL: 1px solid $COLOR_SELECTION_NORMAL;
|
||||
$BORDER_SELECTION_DARK: 1px solid $COLOR_SELECTION_DARK;
|
||||
$W_STATUS_BAR_BACKGROUND_COLOR: #14506E;
|
||||
$PATH_RESOURCES: ':/qss_icons';
|
45
deps/QDark/qdarkstyle/qss/main.scss
vendored
Normal file
45
deps/QDark/qdarkstyle/qss/main.scss
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
/* QDarkStyleSheet -----------------------------------------------------------
|
||||
|
||||
This is the main style sheet, the palette has nine colors.
|
||||
|
||||
It is based on three selecting colors, three greyish (background) colors
|
||||
plus three whitish (foreground) colors. Each set of widgets of the same
|
||||
type have a header like this:
|
||||
|
||||
------------------
|
||||
GroupName --------
|
||||
------------------
|
||||
|
||||
And each widget is separated with a header like this:
|
||||
|
||||
QWidgetName ------
|
||||
|
||||
This makes more easy to find and change some css field. The basic
|
||||
configuration is described bellow.
|
||||
|
||||
BACKGROUND -----------
|
||||
|
||||
Light (unpressed)
|
||||
Normal (border, disabled, pressed, checked, toolbars, menus)
|
||||
Dark (background)
|
||||
|
||||
FOREGROUND -----------
|
||||
|
||||
Light (texts/labels)
|
||||
Normal (not used yet)
|
||||
Dark (disabled texts)
|
||||
|
||||
SELECTION ------------
|
||||
|
||||
Light (selection/hover/active)
|
||||
Normal (selected)
|
||||
Dark (selected disabled)
|
||||
|
||||
If a stranger configuration is required because of a bugfix or anything
|
||||
else, keep the comment on the line above so nobody changes it, including the
|
||||
issue number.
|
||||
|
||||
*/
|
||||
|
||||
@import 'variables';
|
||||
@import 'styles';
|
Reference in New Issue
Block a user