Add more functionality to colors.ts, some ideas are: - [x] [X11 colors](https://en.wikipedia.org/wiki/X11_color_names#Color_name_chart) - [x] background colors (maybe prepend colors with 'bg'?) - [x] text formatting styles: bold / italic / underline / strikethrough - [x] font size: normal / medium / Large? - [ ] shadow (“text-shadow: 1px 1px 1px #000”) - [ ] add borders (“border 1px solid #aaa”) - [ ] add [Console.Table](https://developer.mozilla.org/en-US/docs/Web/API/Console/table) Logger.table should accept a 2D array, e.g. ```js console.table([ ['hello', 'abc'], ['world', 'def'] ]); ```
Add more functionality to colors.ts, some ideas are:
Logger.table should accept a 2D array, e.g.