Skip to content

Commit

Permalink
fix: fix light theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
vault-developer committed Dec 31, 2024
1 parent d1547b9 commit 81caef4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/styles/styles.theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getMuiTheme = (isDark: boolean) =>
tooltip: {
fontSize: '14',
color: isDark ? 'rgba(255, 255, 255, 0.87)' : 'rgba(0, 0, 0, 0.75)',
backgroundColor: isDark ? '#35495a' : '#42729E',
backgroundColor: isDark ? '#35495a' : '#C5D7E7',
},
},
},
Expand Down Expand Up @@ -101,21 +101,21 @@ export const lightTheme: Theme = {
container: '#A9C3DB',
onContainerNormal: '#8CAFCF',
onContainerContrast: '#22476D',
text: 'rgba(0, 0, 0, 0.75)',
text: '#1D3D5E',

wheel: {
background: '#81A1BF',
background: '#7797B6',
microtask: {
disabled: '#9daaa0',
enabled: '#318a45',
disabled: '#9BAD86',
enabled: '#B0D982',
},
macrotask: {
disabled: '#B0ABAF',
enabled: '#a75793',
disabled: '#CC9076',
enabled: '#FF8957',
},
render: {
disabled: '#AE9A8F',
enabled: '#b86232',
disabled: '#976D84',
enabled: '#D971AA',
},
},
},
Expand Down

0 comments on commit 81caef4

Please sign in to comment.