[feat] change default italic for high contrast

This commit is contained in:
kwaroran
2024-01-04 03:57:04 +09:00
parent 5093fd9d0b
commit 20bc35d194

View File

@@ -149,7 +149,7 @@ export function updateTextTheme(){
case "highcontrast":{
if(db.colorScheme.type === 'dark'){
root.style.setProperty('--FontColorStandard', '#f8f8f2');
root.style.setProperty('--FontColorItalic', '#F1FA8C');
root.style.setProperty('--FontColorItalic', '#f0abfc');
root.style.setProperty('--FontColorBold', '#8BE9FD');
root.style.setProperty('--FontColorItalicBold', '#FFB86C');
}