jeffvli
3 years ago
committed by
Jeff
27 changed files with 1211 additions and 384 deletions
@ -1,61 +1,286 @@ |
|||||
export const defaultDark = { |
export const defaultDark = { |
||||
all: { |
label: 'Default Dark', |
||||
|
value: 'defaultDark', |
||||
fonts: { |
fonts: { |
||||
pageTitleFontSize: '30px', |
size: { |
||||
pageFontSize: '14px', |
page: '14px', |
||||
panelHeaderFontSize: '20px', |
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: { |
primary: { |
||||
main: '#2196F3', |
color: '#FFFFFF', |
||||
background: '#181a1f', |
colorHover: '#FFFFFF', |
||||
titleBar: '#101010', |
backgroundHover: '#3B89EC', |
||||
titleText: '#FFFFFF', |
}, |
||||
playerBar: '#101010', |
subtle: { |
||||
sideBar: '#101010', |
color: '#D8D8D8', |
||||
text: '#D8D8D8', |
colorHover: '#D8D8D8', |
||||
rowSelected: '#4D5156', |
backgroundHover: 'transparent', |
||||
playerBarText: '#e9ebf0', |
}, |
||||
playerBarButtons: 'rgba(240, 240, 240, 0.8)', |
link: { |
||||
playerBarButtonsHover: '#ffffff', |
color: '#2196F3', |
||||
inputBackground: '#1A1D24', |
colorHover: '#3B89EC', |
||||
spinner: '#FFFFFF', |
}, |
||||
spinnerBackground: 'rgba(233, 235, 240, 0.3)', |
}, |
||||
sliderBackground: '#888E94', |
card: { |
||||
coverArtShadow: '#000000', |
overlayButton: { |
||||
}, |
color: '#FFFFFF', |
||||
secondary: { |
background: '#000000', |
||||
main: '#292D33', |
opacity: 0.8, |
||||
text: '#888e94', |
}, |
||||
playerBarText: '#888e94', |
}, |
||||
|
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 = { |
export const defaultLight = { |
||||
all: { |
label: 'Default Light', |
||||
...defaultDark.all, |
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: { |
primary: { |
||||
main: '#285DA0', |
color: '#FFFFFF', |
||||
background: '#EBEEF5', |
colorHover: '#FFFFFF', |
||||
titleBar: '#21252B', |
backgroundHover: '#347AD3', |
||||
titleText: '#FFFFFF', |
}, |
||||
playerBar: '#21252B', |
subtle: { |
||||
sideBar: '#21252B', |
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', |
text: '#000000', |
||||
rowSelected: '#BABCC2', |
}, |
||||
playerBarText: '#EBEEF5', |
tooltip: { |
||||
playerBarButtons: 'rgba(240, 240, 240, 0.8)', |
color: '#000000', |
||||
playerBarButtonsHover: '#FFFFFF', |
background: '#FFFFFF', |
||||
inputBackground: '#F4F7FF', |
}, |
||||
spinner: '#000000', |
}, |
||||
spinnerBackground: 'rgba(0, 0, 0, 0.3)', |
other: { |
||||
sliderBackground: '#888e94', |
button: { |
||||
coverArtShadow: '#000000', |
borderRadius: '0px', |
||||
}, |
}, |
||||
secondary: { |
coverArtFilter: 'drop-shadow(0px 3px 5px #000000)', |
||||
main: '#292D33', |
card: { |
||||
text: '#888e94', |
borderRadius: '0px', |
||||
playerBarText: '#888e94', |
}, |
||||
|
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