insomnia/plugins/insomnia-plugin-core-themes/themes/material.js
Gregory Schier 5ad79f3bbc
JS themes and convert themes (#1047)
* JS themes and convert themes

* Publish

 - insomnia-plugin-core-themes@1.0.1
 - insomnia-app@1.0.28

* Publish

 - insomnia-plugin-core-themes@1.0.2
 - insomnia-app@1.0.29

* Publish

 - insomnia-plugin-core-themes@1.0.3
 - insomnia-app@1.0.30
2018-07-17 16:34:28 -07:00

90 lines
2.2 KiB
JavaScript

module.exports = {
name: 'material',
displayName: 'Material',
theme: {
background: {
default: '#263238',
success: '#80cbc4',
notice: '#ffcb6b',
warning: '#f77669',
danger: '#ff5370',
surprise: '#c792ea',
info: '#82b1ff'
},
foreground: {
default: '#dde1e1',
success: '#fff',
notice: '#fff',
warning: '#fff',
danger: '#fff',
surprise: '#fff',
info: '#fff'
},
highlight: {
default: 'rgba(114, 145, 143, 1)',
xxs: 'rgba(114, 145, 143, 0.05)',
xs: 'rgba(114, 145, 143, 0.1)',
sm: 'rgba(114, 145, 143, 0.15)',
md: 'rgba(114, 145, 143, 0.2)',
lg: 'rgba(114, 145, 143, 0.6)',
xl: 'rgba(114, 145, 143, 0.8)'
},
styles: {
link: {
foreground: {
default: '#68a9a2'
}
},
dialog: {
background: {
default: '#303c43'
},
foreground: {
default: '#dde1e1'
}
},
paneHeader: {
background: {
success: '#68a9a2',
notice: '#e6b564',
warning: '#e27164',
danger: '#d64b66',
surprise: '#b482d6',
info: '#6c93d8'
}
},
sidebar: {
highlight: {
default: 'rgb(125, 153, 151)',
xxs: 'rgba(114, 145, 143, 0)',
xs: 'rgba(114, 145, 143, 0)',
sm: 'rgba(114, 145, 143, 0)',
md: 'rgba(114, 145, 143, 0)',
lg: 'rgba(114, 145, 143, 0.1)',
xl: 'rgba(114, 145, 143, 0.1)'
}
},
sidebarHeader: {
highlight: {
xxs: 'rgba(114, 145, 143, 0.05)',
xs: 'rgba(114, 145, 143, 0.08)',
sm: 'rgba(114, 145, 143, 0.1)',
md: 'rgba(114, 145, 143, 0.2)',
lg: 'rgba(114, 145, 143, 0.4)',
xl: 'rgba(114, 145, 143, 0.5)'
}
},
sidebarActions: {
highlight: {
xxs: 'rgba(114, 145, 143, 0.05)',
xs: 'rgba(114, 145, 143, 0.08)',
sm: 'rgba(114, 145, 143, 0.1)',
md: 'rgba(114, 145, 143, 0.2)',
lg: 'rgba(114, 145, 143, 0.5)',
xl: 'rgba(114, 145, 143, 0.7)'
}
}
}
}
};