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 +1 -1
- package/bin/cli.js +1 -1
- package/package.json +1 -1
- package/templates/style.css +2 -47
package/README.md
CHANGED
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
package/templates/style.css
CHANGED
|
@@ -1,51 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Better Lyrics Theme
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
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
|
-
*/
|