create-bl-theme 1.0.1 → 1.0.2

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.
package/README.md CHANGED
@@ -11,7 +11,7 @@ npm install -g create-bl-theme
11
11
  Or use directly with npx:
12
12
 
13
13
  ```bash
14
- npx create-bl-theme my-theme
14
+ npx create-bl-theme@latest my-theme
15
15
  ```
16
16
 
17
17
  ## Usage
package/bin/cli.js CHANGED
@@ -217,7 +217,7 @@ MIT
217
217
  );
218
218
  console.log();
219
219
  console.log(
220
- pc.dim(" Validate your theme with: ") + pc.cyan(`npx create-bl-theme validate ${dir}`)
220
+ pc.dim(" Validate your theme with: ") + pc.cyan(`npx create-bl-theme@latest validate ${dir}`)
221
221
  );
222
222
  console.log();
223
223
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-bl-theme",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool to scaffold Better Lyrics themes",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,51 +1,6 @@
1
1
  /*
2
2
  * Better Lyrics Theme
3
3
  *
4
- * This CSS file customizes the appearance of lyrics in Better Lyrics.
5
- * Edit these styles to create your unique theme.
6
- *
7
- * Tip: Use the browser DevTools to inspect Better Lyrics elements
8
- * and find the selectors you want to style.
9
- */
10
-
11
- /* Main lyrics container */
12
- .blyrics-container {
13
- /* Add your container styles here */
14
- }
15
-
16
- /* Individual lyric lines */
17
- .blyrics-line {
18
- /* Style for each line of lyrics */
19
- }
20
-
21
- /* Currently active/highlighted lyric */
22
- .blyrics-line.active {
23
- /* Make the current line stand out */
24
- }
25
-
26
- /* Lyrics text styling */
27
- .blyrics-text {
28
- /* Font, color, and text styles */
29
- }
30
-
31
- /*
32
- * Example: Dark theme starter
33
- * Uncomment and modify as needed
4
+ * For available selectors and styling guide, see:
5
+ * https://github.com/better-lyrics/better-lyrics/blob/master/STYLING.md
34
6
  */
35
-
36
- /*
37
- .blyrics-container {
38
- background: rgba(0, 0, 0, 0.8);
39
- backdrop-filter: blur(10px);
40
- }
41
-
42
- .blyrics-line {
43
- color: rgba(255, 255, 255, 0.6);
44
- transition: all 0.3s ease;
45
- }
46
-
47
- .blyrics-line.active {
48
- color: #ffffff;
49
- transform: scale(1.05);
50
- }
51
- */