pgadmin4/web/pgadmin/static/js/Theme/high_contrast.js
Aditya Toshniwal b5b9ee46a1 1) Port query tool to React. Fixes #6131
2) Added status bar to the Query Tool. Fixes #3253
3) Ensure that row numbers should be visible in view when scrolling horizontally. Fixes #3989
4) Allow removing a single query history. Refs #4113
5) Partially fixed Macros usability issues. Ref #6969
6) Fixed an issue where the Query tool opens on minimum size if the user opens multiple query tool Window quickly. Fixes #6725
7) Relocate GIS Viewer Button to the Left Side of the Results Table. Fixes #6830
8) Fixed an issue where the connection bar is not visible. Fixes #7188
9) Fixed an issue where an Empty message popup after running a query. Fixes #7260
10) Ensure that Autocomplete should work after changing the connection. Fixes #7262
11) Fixed an issue where the copy and paste row does not work if the first column contains no data. Fixes #7294
2022-04-07 17:36:56 +05:30

104 lines
2.5 KiB
JavaScript

/////////////////////////////////////////////////////////////
//
// pgAdmin 4 - PostgreSQL Tools
//
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////
/* The dark theme */
import { createMuiTheme } from '@material-ui/core/styles';
export default function(basicSettings) {
return createMuiTheme(basicSettings, {
palette: {
default: {
main: 'transparent',
contrastText: '#84d6ff',
borderColor: '#84d6ff',
disabledBorderColor: '#8B9CAD',
disabledContrastText: '#8B9CAD',
hoverMain: 'transparent',
hoverContrastText: '#fff',
hoverBorderColor: '#fff',
},
primary: {
main: '#84D6FF',
light: '#84D6FF',
contrastText: '#010B15',
hoverMain: '#fff',
hoverBorderColor: '#fff',
disabledMain: '#8B9CAD',
},
success: {
main: '#45D48A',
light: '#010B15',
contrastText: '#000',
},
error: {
main: '#EE7A55',
light: '#EE7A55',
contrastText: '#010B15',
},
warning: {
main: '#F4D35E',
light: '#F4D35E',
contrastText: '#010B15',
},
info: {
main: '#fde74c',
},
grey: {
'200': '#8B9CAD',
'400': '#2D3A48',
'600': '#1F2932',
'800': '#010B15',
},
text: {
primary: '#fff',
muted: '#8b9cac',
},
checkbox: {
disabled: '#6b6b6b'
},
background: {
paper: '#010B15',
default: '#010B15',
},
},
custom: {
icon: {
main: '#010B15',
contrastText: '#fff',
borderColor: '#fff',
disabledMain: '#1F2932',
disabledContrastText: '#8B9CAD',
disabledBorderColor: '#8B9CAD',
hoverMain: '#fff',
hoverContrastText: '#010B15',
}
},
otherVars: {
borderColor: '#A6B7C8',
inputBorderColor: '#6b6b6b',
inputDisabledBg: '#1F2932',
headerBg: '#010B15',
activeBorder: '#fff',
activeColor: '#fff',
tableBg: '#010B15',
activeStepBg: '#84D6FF',
activeStepFg: '#010b15',
stepBg: '#FFFFFF',
stepFg: '#000',
toggleBtnBg: '#6B6B6B',
editorToolbarBg: '#010B15',
qtDatagridBg: '#010B15',
qtDatagridSelectFg: '#010B15',
cardHeaderBg: '#062F57',
colorFg: '#FFFFFF',
emptySpaceBg: '#010B15',
}
});
}