mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 21:13:02 +00:00
11 lines
320 B
TypeScript
11 lines
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
|
||
|
}
|