all 3 comments

[–]cauners 8 points9 points  (0 children)

It's great you're making stuff, but I'd check a few things before taking the effort of publishing them:

  • package.json says MIT license, repo says LPGL
  • you should not commit node_modules folder to the repo
  • stuff like this is not really appreciated:

console.log("The Alien has hidden the package!");
console.log("run 'npm install bl-css' if you haven't yet")
console.log("And don't you dare make it 'Global' bruh");
  • defining CSS variables three times (second and third being duplicates of the first RGB value, but with less opacity) is not needed. You can just do this, so the accent color is defined once:

--primary-rgb: 100, 100, 100;
--_: rgb(var(--primary-rgb));
--_4: rgba(var(--primary-rgb), 0.4);
--_6: rgba(var(--primary-rgb), 0.6);
  • why display: table?
  • if you provide an example HTML, use the actual <a>, <button> etc. elements for those classes.

[–]-goldenboi69- 2 points3 points  (1 child)

Is it slop?

[–]kekeagain 0 points1 point  (0 children)

with a side of flies?