Adjust dark mode colors
This commit is contained in:
@@ -26,7 +26,7 @@ const DarkTheme = {
|
|||||||
...BaseDarkTheme,
|
...BaseDarkTheme,
|
||||||
colors: {
|
colors: {
|
||||||
...BaseDarkTheme.colors,
|
...BaseDarkTheme.colors,
|
||||||
background: themes.light.view.backgroundColor,
|
background: themes.dark.view.backgroundColor,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ function generateStyles(scheme: ColorSchemeName) {
|
|||||||
imageBackground: {
|
imageBackground: {
|
||||||
backgroundColor: scheme === 'dark' ? '#161616' : '#eee',
|
backgroundColor: scheme === 'dark' ? '#161616' : '#eee',
|
||||||
borderWidth: 0.5,
|
borderWidth: 0.5,
|
||||||
borderColor: scheme === 'dark' ? '#444' : '#ddd',
|
borderColor: scheme === 'dark' ? '#262626' : '#ddd',
|
||||||
},
|
},
|
||||||
modal: {
|
modal: {
|
||||||
backgroundColor: scheme === 'dark' ? '#000' : '#fff',
|
backgroundColor: scheme === 'dark' ? '#000' : '#fff',
|
||||||
@@ -47,7 +47,7 @@ function generateStyles(scheme: ColorSchemeName) {
|
|||||||
backgroundColor: scheme === 'dark' ? '#000' : '#fff',
|
backgroundColor: scheme === 'dark' ? '#000' : '#fff',
|
||||||
},
|
},
|
||||||
button: {
|
button: {
|
||||||
backgroundColor: scheme === 'dark' ? '#161616' : '#eee',
|
backgroundColor: scheme === 'dark' ? '#ffffff09' : '#00000009',
|
||||||
},
|
},
|
||||||
input: {
|
input: {
|
||||||
backgroundColor: scheme === 'dark' ? '#161616' : '#f3f3f3',
|
backgroundColor: scheme === 'dark' ? '#161616' : '#f3f3f3',
|
||||||
|
|||||||
Reference in New Issue
Block a user