Skip to content

Commit a2da61b

Browse files
committed
Fixes
1 parent 2a78890 commit a2da61b

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,32 @@ jobs:
3434

3535
- name: Verify theme files exist
3636
run: |
37-
if [ ! -f "themes/pierre-light.json" ]; then
38-
echo "❌ pierre-light.json not generated"
37+
if [ ! -f "themes/bootstrap-light.json" ]; then
38+
echo "❌ bootstrap-light.json not generated"
3939
exit 1
4040
fi
41-
if [ ! -f "themes/pierre-dark.json" ]; then
42-
echo "❌ pierre-dark.json not generated"
41+
if [ ! -f "themes/bootstrap-dark.json" ]; then
42+
echo "❌ bootstrap-dark.json not generated"
4343
exit 1
4444
fi
4545
echo "✅ All theme files generated successfully"
4646
4747
- name: Check file sizes
4848
run: |
49-
light_size=$(wc -c < themes/pierre-light.json)
50-
dark_size=$(wc -c < themes/pierre-dark.json)
49+
light_size=$(wc -c < themes/bootstrap-light.json)
50+
dark_size=$(wc -c < themes/bootstrap-dark.json)
5151
5252
echo "📊 Theme file sizes:"
53-
echo " - pierre-light.json: $light_size bytes"
54-
echo " - pierre-dark.json: $dark_size bytes"
53+
echo " - bootstrap-light.json: $light_size bytes"
54+
echo " - bootstrap-dark.json: $dark_size bytes"
5555
5656
# Sanity check - themes should be at least 10KB
5757
if [ $light_size -lt 10000 ]; then
58-
echo "❌ pierre-light.json seems too small ($light_size bytes)"
58+
echo "❌ bootstrap-light.json seems too small ($light_size bytes)"
5959
exit 1
6060
fi
6161
if [ $dark_size -lt 10000 ]; then
62-
echo "❌ pierre-dark.json seems too small ($dark_size bytes)"
62+
echo "❌ bootstrap-dark.json seems too small ($dark_size bytes)"
6363
exit 1
6464
fi
6565

src/palette.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export const light: Roles = {
305305
namespace: yellow["600"],
306306
decorator: blue["500"],
307307
escape: cyan["600"],
308-
invalid: "#ffffff",
308+
invalid: red["500"],
309309
tag: red["600"],
310310
attribute: teal["600"]
311311
},
@@ -382,7 +382,7 @@ export const dark: Roles = {
382382
namespace: yellow["500"],
383383
decorator: blue["400"],
384384
escape: cyan["400"],
385-
invalid: "#ffffff",
385+
invalid: red["400"],
386386
tag: red["400"],
387387
attribute: teal["400"]
388388
},

0 commit comments

Comments
 (0)