zed/styles/buildStyleTree.ts
Keith Simmons bfeb6abb4b Finish dark.ts initial port and restructure files to get ready for build script
Build script currently fails to type check. Not sure whats going on. Will fix in the morning.

Co-authored-by: Nate Butler <nate@zed.dev>
2022-04-04 12:13:59 -07:00

11 lines
No EOL
320 B
TypeScript

import dark from "./themes/dark";
import light from "./themes/light";
import app from "./styleTree/app";
for (let theme of [dark, light]) {
let styleTree = app(theme);
let styleTreeJson = JSON.stringify(styleTree);
console.log(styleTreeJson);
// TODO: Write style tree json to zed crate assets folder
}