aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/theme/EditorTheme.ts
blob: a16b4c3b633145e29cbd6aec9a73f65624f03db6 (plain) (blame)
1
2
3
4
5
6
7
enum EditorTheme {
  Light,
  Dark,
  Default = EditorTheme.Dark,
}

export default EditorTheme;