1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-13 22:12:50 +02:00

Mobile: Fixes #2900: Fixed bold text not visible in dark theme (#2909)

* fixed bold text not visible in oled dark theme

* fixed variable names
This commit is contained in:
Ishant Gupta
2020-03-27 17:43:22 +05:30
committed by GitHub
parent f82aa0adde
commit 62db3d09ea

View File

@@ -153,6 +153,8 @@ function themeStyle(theme) {
output.colorUrl = '#7B81FF';
output.colorBright = 'rgb(220,220,220)';
themeCache_[theme] = output;
return addExtraStyles(themeCache_[theme]);
}
@@ -184,6 +186,8 @@ function themeStyle(theme) {
output.colorUrl = '#7B81FF';
output.colorBright = 'rgb(220,220,220)';
themeCache_[theme] = output;
return addExtraStyles(themeCache_[theme]);
}