This commit is contained in:
Nate Butler
2022-04-02 01:05:28 -04:00
parent b721472991
commit 2af313c8e2
7 changed files with 252 additions and 254 deletions
+1 -2
View File
@@ -1,6 +1,6 @@
import Theme from "../themes/theme";
import chatPanel from "./chatPanel";
import { backgroundColor, borderColor, text } from "./components";
import { text } from "./components";
import contactsPanel from "./contactsPanel";
import editor from "./editor";
import projectPanel from "./projectPanel";
@@ -18,7 +18,6 @@ export default function app(theme: Theme): Object {
workspace: workspace(theme),
editor: editor(theme),
projectDiagnostics: {
background: backgroundColor(theme, 300),
tabIconSpacing: 4,
tabIconWidth: 13,
tabSummarySpacing: 10,
+2 -1
View File
@@ -38,7 +38,8 @@ export default function editor(theme: Theme) {
}
return {
textColor: theme.textColor.secondary.value,
// textColor: theme.syntax.primary.color,
textColor: theme.syntax.primary.color.value,
background: backgroundColor(theme, 500),
activeLineBackground: theme.editor.line.active.value,
codeActionsIndicator: iconColor(theme, "secondary"),