Make divider somewhat more visible on light mode

This commit is contained in:
Lei Nelissen
2022-05-10 23:56:20 +02:00
parent 07adb44f19
commit b9016f9ba6

View File

@@ -62,7 +62,7 @@ function generateStyles(scheme: ColorSchemeName) {
color: scheme === 'dark' ? '#ffffff4d' : '#0000004d',
},
divider: {
backgroundColor: scheme === 'dark' ? '#333' : '#f6f6f6',
backgroundColor: scheme === 'dark' ? '#333' : '#eee',
},
});
}