fix: update editor style to use new format for theme colors

This commit is contained in:
Jordan Knott 2020-12-23 16:15:20 -06:00
parent 0c9ab8abc2
commit e25a426e7b

View File

@ -61,9 +61,9 @@ export const base = {
export const dark = {
...base,
background: 'transparent',
text: `rgba(${theme.colors.text.primary})`,
code: `rgba(${theme.colors.text.primary})`,
cursor: `rgba(${theme.colors.text.primary})`,
text: `${theme.colors.text.primary}`,
code: `${theme.colors.text.primary}`,
cursor: `${theme.colors.text.primary}`,
divider: '#4E5C6E',
placeholder: '#52657A',