Skip to content

Commit

Permalink
refactor: convert theme rgba values to hex
Browse files Browse the repository at this point in the history
  • Loading branch information
adamalston committed Dec 10, 2023
1 parent 6f914bf commit f73f401
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/appearance/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ export const themes: Themes = {
dark: {
key: 'dark',
primaryTextColor: '#fff',
secondaryTextColor: 'rgba(255, 255, 255, 0.87)',
tertiaryTextColor: 'rgba(255, 255, 255, 0.60)',
secondaryTextColor: '#ffffffdd',
tertiaryTextColor: '#ffffff99',
background: '#000',
shadowColor: 'rgba(0, 0, 0, 0.5)',
shadowColor: '#0000007f',
},
light: {
key: 'light',
primaryTextColor: '#000',
secondaryTextColor: 'rgba(0, 0, 0, 0.87)',
tertiaryTextColor: 'rgba(0, 0, 0, 0.87)',
secondaryTextColor: '#000000dd',
tertiaryTextColor: '#00000099',
background: '#fff',
shadowColor: 'rgba(255, 255, 255, 0.5)',
shadowColor: '#ffffff7f',
},
};

0 comments on commit f73f401

Please sign in to comment.