jeffvli
3 years ago
committed by
Jeff
27 changed files with 1211 additions and 384 deletions
@ -1,61 +1,286 @@ |
|||
export const defaultDark = { |
|||
all: { |
|||
label: 'Default Dark', |
|||
value: 'defaultDark', |
|||
fonts: { |
|||
pageTitleFontSize: '30px', |
|||
pageFontSize: '14px', |
|||
panelHeaderFontSize: '20px', |
|||
size: { |
|||
page: '14px', |
|||
pageTitle: '40px', |
|||
panelTitle: '20px', |
|||
button: '14px', |
|||
}, |
|||
}, |
|||
colors: { |
|||
primary: '#2196F3', |
|||
layout: { |
|||
page: { |
|||
color: '#D8D8D8', |
|||
colorSecondary: '#888e94', |
|||
background: '#181A1F', |
|||
}, |
|||
playerBar: { |
|||
color: '#D8D8D8', |
|||
colorSecondary: '#888e94', |
|||
background: '#101010', |
|||
button: { |
|||
color: 'rgba(240, 240, 240, 0.8)', |
|||
colorHover: '#FFFFFF', |
|||
}, |
|||
}, |
|||
sideBar: { |
|||
background: '#101010', |
|||
button: { |
|||
color: '#D8D8D8', |
|||
colorHover: '#FFFFFF', |
|||
}, |
|||
}, |
|||
titleBar: { |
|||
color: '#FFFFFF', |
|||
background: '#101010', |
|||
}, |
|||
}, |
|||
button: { |
|||
default: { |
|||
color: '#D8D8D8', |
|||
colorHover: '#FFFFFF', |
|||
background: '#292D33', |
|||
backgroundHover: '#3C3F43', |
|||
}, |
|||
primary: { |
|||
main: '#2196F3', |
|||
background: '#181a1f', |
|||
titleBar: '#101010', |
|||
titleText: '#FFFFFF', |
|||
playerBar: '#101010', |
|||
sideBar: '#101010', |
|||
text: '#D8D8D8', |
|||
rowSelected: '#4D5156', |
|||
playerBarText: '#e9ebf0', |
|||
playerBarButtons: 'rgba(240, 240, 240, 0.8)', |
|||
playerBarButtonsHover: '#ffffff', |
|||
inputBackground: '#1A1D24', |
|||
spinner: '#FFFFFF', |
|||
spinnerBackground: 'rgba(233, 235, 240, 0.3)', |
|||
sliderBackground: '#888E94', |
|||
coverArtShadow: '#000000', |
|||
}, |
|||
secondary: { |
|||
main: '#292D33', |
|||
text: '#888e94', |
|||
playerBarText: '#888e94', |
|||
color: '#FFFFFF', |
|||
colorHover: '#FFFFFF', |
|||
backgroundHover: '#3B89EC', |
|||
}, |
|||
subtle: { |
|||
color: '#D8D8D8', |
|||
colorHover: '#D8D8D8', |
|||
backgroundHover: 'transparent', |
|||
}, |
|||
link: { |
|||
color: '#2196F3', |
|||
colorHover: '#3B89EC', |
|||
}, |
|||
}, |
|||
card: { |
|||
overlayButton: { |
|||
color: '#FFFFFF', |
|||
background: '#000000', |
|||
opacity: 0.8, |
|||
}, |
|||
}, |
|||
contextMenu: { |
|||
color: '#D8D8D8', |
|||
colorDisabled: '#6A6F76', |
|||
background: '#1E2125', |
|||
backgroundHover: '#292D33', |
|||
}, |
|||
input: { |
|||
color: '#D8D8D8', |
|||
background: '#25292E', |
|||
backgroundHover: '#353A45', |
|||
backgroundActive: 'rgba(240, 240, 240, .2)', |
|||
}, |
|||
nav: { |
|||
color: '#D8D8D8', |
|||
}, |
|||
popover: { |
|||
color: '#D8D8D8', |
|||
background: '#1E2125', |
|||
}, |
|||
slider: { |
|||
background: '#3C3F43', |
|||
progressBar: '#888E94', |
|||
}, |
|||
spinner: { |
|||
background: 'rgba(233, 235, 240, 0.3)', |
|||
foreground: '#2196F3', |
|||
}, |
|||
table: { |
|||
selectedRow: '#4D5156', |
|||
}, |
|||
tag: { |
|||
background: '#3C3F43', |
|||
text: '#E2E4E9', |
|||
}, |
|||
tooltip: { |
|||
color: '#D8D8D8', |
|||
background: '#1E2125', |
|||
}, |
|||
}, |
|||
other: { |
|||
button: { |
|||
borderRadius: '0px', |
|||
}, |
|||
coverArtFilter: 'drop-shadow(0px 3px 5px #000000)', |
|||
card: { |
|||
borderRadius: '0px', |
|||
}, |
|||
input: { |
|||
borderRadius: '0px', |
|||
}, |
|||
miniPlayer: { |
|||
height: '450px', |
|||
opacity: 0.95, |
|||
}, |
|||
panel: { |
|||
borderRadius: '0px', |
|||
}, |
|||
playerBar: { |
|||
borderTop: '1px solid rgba(240, 240, 240, .15)', |
|||
borderRight: 'none', |
|||
borderBottom: 'none', |
|||
borderLeft: 'none', |
|||
filter: 'none', |
|||
}, |
|||
tag: { |
|||
borderRadius: '0px', |
|||
}, |
|||
tooltip: { |
|||
border: '1px #3c3f43 solid', |
|||
borderRadius: '0px', |
|||
}, |
|||
}, |
|||
}; |
|||
|
|||
export const defaultLight = { |
|||
all: { |
|||
...defaultDark.all, |
|||
label: 'Default Light', |
|||
value: 'defaultLight', |
|||
fonts: { |
|||
size: { |
|||
page: '14px', |
|||
pageTitle: '30px', |
|||
panelTitle: '20px', |
|||
}, |
|||
}, |
|||
colors: { |
|||
primary: '#285DA0', |
|||
layout: { |
|||
page: { |
|||
color: '#000000', |
|||
colorSecondary: '#888e94', |
|||
background: '#FFFFFF', |
|||
}, |
|||
playerBar: { |
|||
color: '#FFFFFF', |
|||
colorSecondary: '#888e94', |
|||
background: '#161B22', |
|||
button: { |
|||
color: 'rgba(240, 240, 240, 0.8)', |
|||
colorHover: '#FFFFFF', |
|||
}, |
|||
}, |
|||
sideBar: { |
|||
background: '#161B22', |
|||
button: { |
|||
color: '#D8D8D8', |
|||
colorHover: '#FFFFFF', |
|||
}, |
|||
}, |
|||
titleBar: { |
|||
color: '#FFFFFF', |
|||
background: '#161B22', |
|||
}, |
|||
}, |
|||
button: { |
|||
default: { |
|||
color: '#575757', |
|||
colorHover: '#000000', |
|||
background: '#DFDFE2', |
|||
backgroundHover: '#D2D2D6', |
|||
}, |
|||
primary: { |
|||
main: '#285DA0', |
|||
background: '#EBEEF5', |
|||
titleBar: '#21252B', |
|||
titleText: '#FFFFFF', |
|||
playerBar: '#21252B', |
|||
sideBar: '#21252B', |
|||
color: '#FFFFFF', |
|||
colorHover: '#FFFFFF', |
|||
backgroundHover: '#347AD3', |
|||
}, |
|||
subtle: { |
|||
color: '#575757', |
|||
colorHover: '#575757', |
|||
backgroundHover: 'transparent', |
|||
}, |
|||
link: { |
|||
color: '#575757', |
|||
colorHover: '#575757', |
|||
}, |
|||
}, |
|||
card: { |
|||
overlayButton: { |
|||
color: '#FFFFFF', |
|||
colorHover: '#FFFFFF', |
|||
background: '#000000', |
|||
backgroundHover: '#285DA0', |
|||
opacity: 0.8, |
|||
}, |
|||
}, |
|||
contextMenu: { |
|||
color: '#575757', |
|||
colorDisabled: '#BABABA', |
|||
background: '#FFFFFF', |
|||
backgroundHover: '#D2D2D6', |
|||
}, |
|||
input: { |
|||
color: '#000000', |
|||
background: '#FFFFFF', |
|||
backgroundHover: '#E5E5EA', |
|||
backgroundActive: 'rgba(0, 0, 0, .2)', |
|||
}, |
|||
nav: { |
|||
color: '#000000', |
|||
}, |
|||
popover: { |
|||
color: '#000000', |
|||
background: '#FFFFFF', |
|||
}, |
|||
slider: { |
|||
background: '#3C3F43', |
|||
progressBar: '#888E94', |
|||
}, |
|||
spinner: { |
|||
background: 'rgba(0, 0, 0, 0.3)', |
|||
foreground: '#285DA0', |
|||
}, |
|||
table: { |
|||
selectedRow: '#CCCCCC', |
|||
}, |
|||
tag: { |
|||
background: '#DFDFE2', |
|||
text: '#000000', |
|||
rowSelected: '#BABCC2', |
|||
playerBarText: '#EBEEF5', |
|||
playerBarButtons: 'rgba(240, 240, 240, 0.8)', |
|||
playerBarButtonsHover: '#FFFFFF', |
|||
inputBackground: '#F4F7FF', |
|||
spinner: '#000000', |
|||
spinnerBackground: 'rgba(0, 0, 0, 0.3)', |
|||
sliderBackground: '#888e94', |
|||
coverArtShadow: '#000000', |
|||
}, |
|||
secondary: { |
|||
main: '#292D33', |
|||
text: '#888e94', |
|||
playerBarText: '#888e94', |
|||
}, |
|||
tooltip: { |
|||
color: '#000000', |
|||
background: '#FFFFFF', |
|||
}, |
|||
}, |
|||
other: { |
|||
button: { |
|||
borderRadius: '0px', |
|||
}, |
|||
coverArtFilter: 'drop-shadow(0px 3px 5px #000000)', |
|||
card: { |
|||
borderRadius: '0px', |
|||
}, |
|||
input: { |
|||
borderRadius: '0px', |
|||
}, |
|||
miniPlayer: { |
|||
height: '450px', |
|||
opacity: 0.95, |
|||
}, |
|||
panel: { |
|||
borderRadius: '0px', |
|||
}, |
|||
playerBar: { |
|||
borderTop: '1px solid rgba(240, 240, 240, .15)', |
|||
borderRight: 'none', |
|||
borderBottom: 'none', |
|||
borderLeft: 'none', |
|||
filter: 'none', |
|||
}, |
|||
tag: { |
|||
borderRadius: '0px', |
|||
}, |
|||
tooltip: { |
|||
border: '1px #3c3f43 solid', |
|||
borderRadius: '0px', |
|||
}, |
|||
}, |
|||
}; |
|||
|
Loading…
Reference in new issue