We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d6cd7 commit b735f01Copy full SHA for b735f01
src/render.js
@@ -247,7 +247,7 @@ module.exports = class Render {
247
` height: ${windowConfig.height}px;`,
248
` top: ${windowConfig.y}px;`,
249
` left: ${windowConfig.x}px;`,
250
- ` border: solid ${windowColor} 2px;`,
+ ` border: solid ${windowColor} 5px;`,
251
`}`,
252
].join(` `);
253
}
@@ -432,6 +432,9 @@ module.exports = class Render {
432
break;
433
case `HI`:
434
css += `font-weight: 900;`;
435
+ if (!keywords.find(keyword => keyword.name === `COLOR`)) {
436
+ css += `color: ${colors.WHT};`;
437
+ }
438
439
case `BL`:
440
css += `animation: blinker 1s step-start infinite;`;
0 commit comments