RequestPane body form input text color visibility fix in dark mode (#70)

This commit is contained in:
Vinod Godti
2022-11-10 18:29:17 +05:30
committed by GitHub
parent b93be5a846
commit cffef31f97
4 changed files with 27 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ const lightTheme = {
colors: {
text: {
danger: 'rgb(185, 28, 28)',
muted: '#4b5563',
muted: '#4b5563'
},
bg: {
danger: '#dc3545'
@@ -15,7 +15,7 @@ const lightTheme = {
},
menubar: {
bg: 'rgb(44, 44, 44)',
bg: 'rgb(44, 44, 44)'
},
sidebar: {
@@ -55,8 +55,8 @@ const lightTheme = {
},
dropdown: {
color: "rgb(48 48 48)",
iconColor: "rgb(75, 85, 99)",
color: 'rgb(48 48 48)',
iconColor: 'rgb(75, 85, 99)',
bg: '#fff',
hoverBg: '#e9e9e9',
shadow: 'rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px',
@@ -107,7 +107,7 @@ const lightTheme = {
active: {
bg: '#dcdcdc',
hoverBg: '#dcdcdc'
},
}
},
gridBorder: '#f4f4f4'
}
@@ -126,9 +126,9 @@ const lightTheme = {
},
body: {
color: 'rgb(52, 52, 52)',
bg: 'white',
bg: 'white'
},
input : {
input: {
bg: 'white',
border: '#ccc',
focusBorder: '#8b8b8b'
@@ -195,10 +195,13 @@ const lightTheme = {
table: {
border: '#efefef',
thead : {
thead: {
color: '#616161'
},
striped: '#f3f3f3'
striped: '#f3f3f3',
input: {
color: '#000000'
}
},
plainGrid: {