create-bl-theme 1.0.0 → 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 +6 -2
- package/package.json +1 -1
- package/templates/style.css +2 -47
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -208,12 +208,16 @@ MIT
|
|
|
208
208
|
if (response.hasShaders) {
|
|
209
209
|
console.log(` ${pc.dim("4.")} Configure ${pc.cyan("shader.json")} for shader effects`);
|
|
210
210
|
}
|
|
211
|
+
const submitStep = response.hasShaders ? "5." : "4.";
|
|
211
212
|
console.log(
|
|
212
|
-
` ${pc.dim(
|
|
213
|
+
` ${pc.dim(submitStep)} Push to GitHub and submit to the theme store`
|
|
214
|
+
);
|
|
215
|
+
console.log(
|
|
216
|
+
` ${pc.dim("https://github.com/boidushya/better-lyrics-themes")}`
|
|
213
217
|
);
|
|
214
218
|
console.log();
|
|
215
219
|
console.log(
|
|
216
|
-
pc.dim(" Validate your theme with: ") + pc.cyan(`create-bl-theme validate ${dir}`)
|
|
220
|
+
pc.dim(" Validate your theme with: ") + pc.cyan(`npx create-bl-theme@latest validate ${dir}`)
|
|
217
221
|
);
|
|
218
222
|
console.log();
|
|
219
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
|
-
*/
|