add build output
All checks were successful
checks-impure / test (pull_request) Successful in 13s
checks / test (pull_request) Successful in 1m25s

This commit is contained in:
Johannes Kirschbauer 2023-10-03 15:02:47 +02:00
parent e9f3be0056
commit 7eed3d9aa9
Signed by: hsjobeki
GPG Key ID: F62ED8B8BF204685
2 changed files with 1509 additions and 2 deletions

1507
pkgs/theme/src/colors.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
import { writeFile } from "fs";
import palette from "./out.json" assert { type: "json" };
import palette from "./colors.json" assert { type: "json" };
import { config } from "./config.js";
type PaletteFile = typeof palette;
@ -33,7 +33,7 @@ const html = (palette: PaletteFile): string => {
${colors.join("\n")}
</body>
</html>
</html>
`;
};