mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 01:55:59 +00:00
27 lines
549 B
JavaScript
27 lines
549 B
JavaScript
import fillTheme from './fillTheme';
|
|
|
|
const theme = {
|
|
main_type: 'light',
|
|
main_background: '#fff',
|
|
|
|
selectionAntName: 'blue',
|
|
|
|
border: '#ccc',
|
|
|
|
toolbar_background: '#eee',
|
|
content_background: '#eee',
|
|
left_background: '#ccc',
|
|
widget_background: '#222',
|
|
title_background: '#888',
|
|
manager_background: '#fff',
|
|
tabs_background: '#eee',
|
|
gridheader_background: '#f6f7f9',
|
|
gridheader_type: 'light',
|
|
gridbody_background: '#fff',
|
|
scrollbar_background: '#ddd',
|
|
|
|
statusBarBackground: '#00c',
|
|
};
|
|
|
|
export default fillTheme(theme);
|