mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-08 17:14:22 +01:00
cbdfabb4db
* Added use local storage hook * Added theme * Added theme support * Added theme provider * Added dark theme for sidebar * Added dark theme for main content area * Added theme * Added theme support * Added theme provider * Added dark theme for sidebar * Added dark theme for main content area
31 lines
996 B
JavaScript
31 lines
996 B
JavaScript
const darkTheme = {
|
|
brand: '#546de5',
|
|
text: 'rgb(52 52 52)',
|
|
'primary-text': '#ffffff',
|
|
'primary-theme': '#1e1e1e',
|
|
'secondary-text': '#929292',
|
|
'sidebar-collection-item-active-indent-border': '#d0d0d0',
|
|
'sidebar-collection-item-active-background': '#e1e1e1',
|
|
'sidebar-background': '#252526',
|
|
'sidebar-bottom-bg': '#68217a',
|
|
'request-dragbar-background': '#efefef',
|
|
'request-dragbar-background-active': 'rgb(200, 200, 200)',
|
|
'tab-inactive': 'rgb(155 155 155)',
|
|
'tab-active-border': '#546de5',
|
|
'layout-border': '#dedede',
|
|
'codemirror-border': '#efefef',
|
|
'codemirror-background': 'rgb(243, 243, 243)',
|
|
'text-link': '#1663bb',
|
|
'text-danger': 'rgb(185, 28, 28)',
|
|
'background-danger': '#dc3545',
|
|
'method-get': 'rgb(5, 150, 105)',
|
|
'method-post': '#8e44ad',
|
|
'method-delete': 'rgb(185, 28, 28)',
|
|
'method-patch': 'rgb(52 52 52)',
|
|
'method-options': 'rgb(52 52 52)',
|
|
'method-head': 'rgb(52 52 52)',
|
|
'table-stripe': '#f3f3f3'
|
|
};
|
|
|
|
export default darkTheme;
|