Skip to content

Commit cfb2694

Browse files
committed
feat: change prefix on pygments css file names
1 parent d415e11 commit cfb2694

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/build-gh-pages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ def variable_css() -> str:
5252
def build_css() -> None:
5353
# build individual CSS files for each flavor
5454
for flavor in PALETTE:
55-
filename = f"ctp-{flavor.identifier}.css"
55+
filename = f"catppuccin-{flavor.identifier}.css"
5656
path = PYGMENTS_DIR / filename
5757
write(postprocess_css(flavor_css(flavor.identifier)), path)
5858

5959
# build a variable CSS file
60-
path = PYGMENTS_DIR / "ctp-variable.css"
60+
path = PYGMENTS_DIR / "catppuccin.variables.css"
6161
write(postprocess_css(variable_css()), path)
6262

6363

0 commit comments

Comments
 (0)