Last active
February 8, 2022 22:51
-
-
Save jtsternberg/6fd7e567d35da410898974ff4b0bf561 to your computer and use it in GitHub Desktop.
Revisions
-
jtsternberg revised this gist
Feb 8, 2022 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,5 +9,4 @@ colors.forEach(c => console.log(`%c `, padding: 5px 5px; ` ) ); console.groupEnd('colors'); -
jtsternberg created this gist
Dec 2, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ var colors = ['#EC0089','#0C1127','#00cfed']; console.group('colors', {colors}); colors.forEach(c => console.log(`%c `, ` display: block; background: ${c}; width: 5px; height: 5px; padding: 5px 5px; ` ) ); console.groupEnd('colors');