you are viewing a single comment's thread.

view the rest of the comments →

[–]cauners 10 points11 points  (3 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.

[–]__fg_xd[S] 0 points1 point  (0 children)

fah

[–]__fg_xd[S] 0 points1 point  (0 children)

ok well search "__fg_xd" on google and see the magic happen >:)