Compare commits

...

2 Commits

Author SHA1 Message Date
86982c9b96 bold support with coloring 2025-02-23 22:48:16 -05:00
45cc88953b --emptyOutDir for silencing a build warning 2025-02-23 22:48:16 -05:00
2 changed files with 12 additions and 9 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /rhpidfyre.io
COPY src package.json vite.config.js tsconfig.json ./
RUN bun run install
RUN bun run build
RUN bun run build --emptyOutDir
FROM joseluisq/static-web-server

View File

@ -7,20 +7,23 @@ const enum Colors {
cyan = "cyan",
bold = "bold"
}
function newcolor(inner: string, color?: Colors) {
function newcolor(inner: string, color?: Colors, bold?: boolean) {
const span = create("span", color)
span.innerText = inner
if (bold) {
span.className = color ? color+" bold" : "bold"
}
return span
}
const red = (s: string) => newcolor(s, Colors.red )
const green = (s: string) => newcolor(s, Colors.green)
const blue = (s: string) => newcolor(s, Colors.blue)
const cyan = (s: string) => newcolor(s, Colors.cyan)
const bold = (s: string) => newcolor(s, Colors.bold)
const red = (s: string, bold?: boolean) => newcolor(s, Colors.red, bold)
const green = (s: string, bold?: boolean) => newcolor(s, Colors.green, bold)
const blue = (s: string, bold?: boolean) => newcolor(s, Colors.blue, bold)
const cyan = (s: string, bold?: boolean) => newcolor(s, Colors.cyan, bold)
const bold = (s: string) => newcolor(s, Colors.bold)
export default function rgb(s: string, Ru8: number, Gu8: number, Bu8: number) {
const rgb_span = newcolor(s)
export default function rgb(s: string, Ru8: number, Gu8: number, Bu8: number, bold?: boolean) {
const rgb_span = newcolor(s, undefined, bold)
rgb_span.style.color = `rgb(${Ru8},${Gu8},${Bu8})`
return rgb_span
}