Skip to content

Commit

Permalink
only generate styles for 5 default themes (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon authored Oct 3, 2024
1 parent dfc55b6 commit 027a530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion styles/src/generate_styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if (process.argv.length < 2) {
const args = process.argv.slice(2);
const tileJson = args[0];

for (const theme of Object.keys(themes)) {
for (const theme of ["light", "dark", "white", "grayscale", "black"]) {
for (const { lang, full_name, script } of language_script_pairs) {
const layers = i("protomaps", theme, lang, script);

Expand Down

0 comments on commit 027a530

Please sign in to comment.