1
0
Fork 0
forked from lthn/blockchain
blockchain/src/gui/qt-daemon/html/assets/scss/base/_theme.scss
2019-01-09 15:25:03 +02:00

139 lines
4.9 KiB
SCSS

$themes: (
dark: (
bodyBackgroundColor: #131921,
sidebarBackgroundColor: rgba(23, 31, 39, 0.5),
sidebarBorderColor: #1f2833,
onlineColor: #5cda9d,
offlineColor: #fe5252,
contentBackgroundColor: rgba(43, 54, 68, 0.5),
mainTextColor: #e0e0e0,
alternativeTextColor: #111921,
optionalTextColor: #556576,
blueTextColor: #4db1ff,
greenTextColor: #5cda9d,
redTextColor: #fe5252,
blueButtonBackgroundColor: #4db1ff,
blueButtonHoverColor: #60b9ff,
disabledButtonBackgroundColor: #90a4ae,
disabledButtonHoverColor: #9bb0ba,
greenButtonBackgroundColor: #5cda9d,
greenButtonHoverColor: #5ce2a1,
turquoiseButtonBackgroundColor: #4dd0e1,
turquoiseButtonHoverColor: #52d9ea,
transparentButtonBorderColor: #2b3644,
inputBackgroundColor: #171e27,
switchBackgroundColor: #000000,
accountBackgroundColor: rgba(43, 54, 68, 0.5),
accountHoverBackgroundColor: rgba(58, 72, 90, 0.5),
accountMainTextColor: #e0e0e0,
accountOptionalTextColor: #556576,
accountIndicatorTextColor: #111921,
accountSwitchBackgroundColor: #000000,
accountIndicatorBackgroundColor: #4db1ff,
tabInactiveBackgroundColor: rgba(23, 31, 39, 0.5),
tableBackgroundColor: #18202a,
messageMyBackgroundColor: #2a3544,
messageBuddyBackgroundColor: #18202a,
progressBarBackgroundColor: #343f4a,
progressBarFullBackgroundColor: #5cda9d,
chartOptionsBackgroundColor: #2b3644,
chartOptionsHoverColor: #556576,
tooltipBackgroundColor: #42505f,
tooltipShadow: 0 0 1rem rgba(0, 0, 0, 0.5),
modalBackground: url(~src/assets/images/background-dark.png),
closeButtonColor: #556576
),
gray: (
bodyBackgroundColor: #101417,
sidebarBackgroundColor: rgba(23, 25, 27, 0.5),
sidebarBorderColor: #2e3337,
onlineColor: #47cf8d,
offlineColor: #ff5252,
contentBackgroundColor: rgba(37, 40, 43, 0.5),
mainTextColor: #e0e0e0,
alternativeTextColor: #1a1a1a,
optionalTextColor: #565c62,
blueTextColor: #42a5f5,
greenTextColor: #47cf8d,
redTextColor: #fe5252,
blueButtonBackgroundColor: #42a5f5,
blueButtonHoverColor: #4dafff,
disabledButtonBackgroundColor: #79848f,
disabledButtonHoverColor: #85909b,
greenButtonBackgroundColor: #47cf8d,
greenButtonHoverColor: #49d993,
turquoiseButtonBackgroundColor: #3ec5d7,
turquoiseButtonHoverColor: #43cee0,
transparentButtonBorderColor: #2f3438,
inputBackgroundColor: #292d31,
switchBackgroundColor: #000000,
accountBackgroundColor: rgba(37, 40, 43, 0.5),
accountHoverBackgroundColor: rgba(70, 76, 81, 0.5),
accountMainTextColor: #e0e0e0,
accountOptionalTextColor: #565c62,
accountIndicatorTextColor: #1a1a1a,
accountSwitchBackgroundColor: #000000,
accountIndicatorBackgroundColor: #42a5f5,
tabInactiveBackgroundColor: rgba(23, 25, 27, 0.5),
tableBackgroundColor: #25292d,
messageMyBackgroundColor: #30363c,
messageBuddyBackgroundColor: #25292d,
progressBarBackgroundColor: #363a3e,
progressBarFullBackgroundColor: #47cf8d,
chartOptionsBackgroundColor: #292d31,
chartOptionsHoverColor: #515960,
tooltipBackgroundColor: #3e464c,
tooltipShadow: 0 0 1rem rgba(0, 0, 0, 0.5),
modalBackground: url(~src/assets/images/background-gray.png),
closeButtonColor: #515960
),
white: (
bodyBackgroundColor: #eeeeee,
sidebarBackgroundColor: rgba(255, 255, 255, 0.5),
sidebarBorderColor: #ebebeb,
onlineColor: #46c172,
offlineColor: #ff5252,
contentBackgroundColor: rgba(255, 255, 255, 0.5),
mainTextColor: #43454b,
alternativeTextColor: #fefefe,
optionalTextColor: #a0a5ab,
blueTextColor: #2c95f1,
greenTextColor: #46c172,
redTextColor: #ff5252,
blueButtonBackgroundColor: #2c95f1,
blueButtonHoverColor: #379ffa,
disabledButtonBackgroundColor: #90a4ae,
disabledButtonHoverColor: #9baeb7,
greenButtonBackgroundColor: #46c172,
greenButtonHoverColor: #46ca75,
turquoiseButtonBackgroundColor: #26b6c7,
turquoiseButtonHoverColor: #2bbdcf,
transparentButtonBorderColor: #ebebeb,
inputBackgroundColor: #e6e6e6,
switchBackgroundColor: #e0e0e0,
accountBackgroundColor: rgba(30, 136, 229, 1),
accountHoverBackgroundColor: rgba(240, 240, 240, 0.5),
accountMainTextColor: #ffffff,
accountOptionalTextColor: #91baf1,
accountIndicatorTextColor: #43454b,
accountSwitchBackgroundColor: #ffffff,
accountIndicatorBackgroundColor: #ffffff,
tabInactiveBackgroundColor: rgba(224, 224, 224, 0.5),
tableBackgroundColor: #ffffff,
messageMyBackgroundColor: #fff,
messageBuddyBackgroundColor: #ededed,
progressBarBackgroundColor: #dcdcdc,
progressBarFullBackgroundColor: #46c172,
chartOptionsBackgroundColor: #e0e0e0,
chartOptionsHoverColor: #ffffff,
tooltipBackgroundColor: #ffffff,
tooltipShadow: 0 0 1rem rgba(120, 120, 120, 0.5),
modalBackground: url(~src/assets/images/background-white.png),
closeButtonColor: #43454b
)
);