Skip to content

Commit 81caef4

Browse files
fix: fix light theme colors
1 parent d1547b9 commit 81caef4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/styles/styles.theme.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const getMuiTheme = (isDark: boolean) =>
1818
tooltip: {
1919
fontSize: '14',
2020
color: isDark ? 'rgba(255, 255, 255, 0.87)' : 'rgba(0, 0, 0, 0.75)',
21-
backgroundColor: isDark ? '#35495a' : '#42729E',
21+
backgroundColor: isDark ? '#35495a' : '#C5D7E7',
2222
},
2323
},
2424
},
@@ -101,21 +101,21 @@ export const lightTheme: Theme = {
101101
container: '#A9C3DB',
102102
onContainerNormal: '#8CAFCF',
103103
onContainerContrast: '#22476D',
104-
text: 'rgba(0, 0, 0, 0.75)',
104+
text: '#1D3D5E',
105105

106106
wheel: {
107-
background: '#81A1BF',
107+
background: '#7797B6',
108108
microtask: {
109-
disabled: '#9daaa0',
110-
enabled: '#318a45',
109+
disabled: '#9BAD86',
110+
enabled: '#B0D982',
111111
},
112112
macrotask: {
113-
disabled: '#B0ABAF',
114-
enabled: '#a75793',
113+
disabled: '#CC9076',
114+
enabled: '#FF8957',
115115
},
116116
render: {
117-
disabled: '#AE9A8F',
118-
enabled: '#b86232',
117+
disabled: '#976D84',
118+
enabled: '#D971AA',
119119
},
120120
},
121121
},

0 commit comments

Comments
 (0)