UNPKG

insomnia-plugin-theme-dracula

Version:

Official Dracula Theme. A dark theme for many editors, shells, and more.

66 lines (65 loc) 1.2 kB
module.exports = { name: 'dracula', displayName: 'Dracula', theme: { background: { default: '#282a36', success: '#50fa7b', notice: '#f1fa8c', warning: '#ffb86c', danger: '#ff5555', surprise: '#bd93f9', info: '#8be9fd' }, foreground: { default: '#f8f8f2', success: '#282a36', notice: '#282a36', warning: '#282a36', danger: '#282a36', surprise: '#282a36', info: '#282a36' }, highlight: { default: 'rgba(98, 114, 164, .5)', xxs: 'rgba(98, 114, 164, 0.05)', xs: 'rgba(98, 114, 164, 0.1)', sm: 'rgba(98, 114, 164, 0.2)', md: 'rgba(98, 114, 164, 0.4)', lg: 'rgba(98, 114, 164, 0.6)', xl: 'rgba(98, 114, 164, 0.8)' }, styles: { sidebar: { background: { default: '#1d1f27' } }, dialog: { background: { default: '#282a36' } }, paneHeader: { background: { success: '#50fa7b', notice: '#f1fa8c', warning: '#ffb86c', danger: '#ff5555', surprise: '#bd93f9', info: '#8be9fd' } }, transparentOverlay: { background: { default: 'rgba(40, 42, 54, 0.5)' } }, }, rawCss: ` .tooltip a { background: var(--color-surprise); } ` } }