bl-css 0.10.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +3 -4
  2. package/bl.css +7 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,9 +1,8 @@
1
1
  # bl CSS
2
2
  A *lightweight*, **blueviolet**, ***small*** CSS framework!
3
- # 0.10.0 - Release notes(by Dev)
4
- FORMS IN BL-CSS :D
5
- Now you can finally make your own form... with bl-css style :D
6
- ```.form``` for form tag, ```.label``` for label tag and ```.in``` for input with a pretty nice placeholder! Now your sites can have **forms**
3
+
4
+ # 0.10.1 - Release notes(by Dev)
5
+ License Update! I don't have much to include here, you can read the license on [github](https://github.com/fg-xd/bl-CSS/blob/main/LICENSE). It is a GNU LGPLv2.1 license, which basically means if you build a website, you can optionally credit me, but if you are editing the main bl-css file you must credit me and keep it open source.
7
6
  # How to Change Accent Color?
8
7
  To change from the **original** blueviolet theme you have to open the main```bl.css``` file and you can change the following:
9
8
  ```css
package/bl.css CHANGED
@@ -1,3 +1,10 @@
1
+ /*!
2
+ * bl-css
3
+ * (c) 2026 __fg_xd
4
+ * Licensed under LGPLv2.1 License
5
+ * https://github.com/fg-xd/bl-CSS
6
+ * https://npmjs.com/package/bl-css
7
+ */
1
8
  @import url(https://fonts.googleapis.com/css2?family=Lilita+One&display=swap);
2
9
  @import url(https://fonts.googleapis.com/css2?family=Cause:wght@700&display=swap);
3
10
  @layer low{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-css",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "black - blueviolet lightweight CSS framework",
5
5
  "main": "bl.css",
6
6
  "scripts": {
@@ -23,5 +23,5 @@
23
23
  },
24
24
  "keywords": ["css", "framework", "dark", "blueviolet", "lightweight", "simple"],
25
25
  "author": "__fg_xd",
26
- "license": "MIT"
26
+ "license": "LGPL-2.1-only"
27
27
  }