2018-07-17 23:34:28 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'hyper',
|
|
|
|
displayName: 'Hyper',
|
|
|
|
theme: {
|
|
|
|
foreground: {
|
2018-07-18 00:48:10 +00:00
|
|
|
default: '#ddd'
|
2018-07-17 23:34:28 +00:00
|
|
|
},
|
|
|
|
background: {
|
|
|
|
default: '#000',
|
|
|
|
success: '#87ee59',
|
|
|
|
notice: '#f8d245',
|
|
|
|
warning: '#f9ac2a',
|
|
|
|
danger: '#ff505c',
|
2018-07-17 23:39:15 +00:00
|
|
|
surprise: '#f24aff',
|
2018-07-17 23:34:28 +00:00
|
|
|
info: '#23dce8'
|
|
|
|
},
|
2018-07-18 00:48:10 +00:00
|
|
|
rawCss: `
|
|
|
|
.tooltip, .dropdown__menu {
|
|
|
|
opacity: 0.95;
|
|
|
|
}
|
|
|
|
`,
|
2018-07-17 23:34:28 +00:00
|
|
|
styles: {
|
|
|
|
dialog: {
|
|
|
|
background: {
|
|
|
|
default: '#111'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
transparentOverlay: {
|
|
|
|
background: {
|
|
|
|
default: 'rgba(0, 0, 0, 0.5)'
|
|
|
|
}
|
|
|
|
},
|
2018-07-18 00:48:10 +00:00
|
|
|
sidebar: {
|
|
|
|
highlight: {
|
|
|
|
default: '#aaa'
|
|
|
|
}
|
|
|
|
},
|
2018-07-17 23:34:28 +00:00
|
|
|
paneHeader: {
|
|
|
|
background: {
|
|
|
|
default: '#000',
|
|
|
|
success: '#6ac04b',
|
|
|
|
notice: '#ebc742',
|
|
|
|
warning: '#ea9f29',
|
|
|
|
danger: '#df4b56',
|
2018-07-17 23:39:15 +00:00
|
|
|
surprise: '#ed46f9',
|
2018-07-17 23:34:28 +00:00
|
|
|
info: '#20bec9'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|