Skip to content

Commit b735f01

Browse files
committed
Thicker border
1 parent b2d6cd7 commit b735f01

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/render.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ module.exports = class Render {
247247
` height: ${windowConfig.height}px;`,
248248
` top: ${windowConfig.y}px;`,
249249
` left: ${windowConfig.x}px;`,
250-
` border: solid ${windowColor} 2px;`,
250+
` border: solid ${windowColor} 5px;`,
251251
`}`,
252252
].join(` `);
253253
}
@@ -432,6 +432,9 @@ module.exports = class Render {
432432
break;
433433
case `HI`:
434434
css += `font-weight: 900;`;
435+
if (!keywords.find(keyword => keyword.name === `COLOR`)) {
436+
css += `color: ${colors.WHT};`;
437+
}
435438
break;
436439
case `BL`:
437440
css += `animation: blinker 1s step-start infinite;`;

0 commit comments

Comments
 (0)