library-ts/browser/messages/MessageColors.ts

22 lines
274 B
TypeScript
Raw Permalink Normal View History

2025-03-08 12:22:18 +00:00
export class MessageColors
{
static gray( text:string )
{
return text;
}
static yellow( text:string )
{
return text;
}
static black( text:string )
{
return text;
}
static bgRed( text:string )
{
return text;
}
}