shell-logo 0.1.0 → 0.1.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.
- package/package.json +1 -1
- package/src/themes.js +12 -1
- package/src/ui.js +10 -0
package/package.json
CHANGED
package/src/themes.js
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
export const FONTS = [
|
|
1
|
+
export const FONTS = [
|
|
2
|
+
'Standard', 'Big', 'ANSI Shadow', 'Slant', 'Small',
|
|
3
|
+
'ANSI Regular', 'Bloody', 'DOS Rebel', 'Graffiti', 'Larry 3D',
|
|
4
|
+
'Star Wars', 'Doh', 'Ghost', 'Fraktur', 'Fire Font-k',
|
|
5
|
+
];
|
|
2
6
|
|
|
3
7
|
export const THEMES = [
|
|
4
8
|
{ name: 'Sunset', colors: ['#ff6b6b', '#ff9f43', '#feca57'] },
|
|
@@ -9,4 +13,11 @@ export const THEMES = [
|
|
|
9
13
|
{ name: 'Fire', colors: ['#ff4757', '#ff6348', '#ffdd59'] },
|
|
10
14
|
{ name: 'Pastel', colors: ['#fd79a8', '#feca57', '#48dbfb'] },
|
|
11
15
|
{ name: 'Monochrome', colors: ['#ffffff', '#54a0ff', '#5f27cd'] },
|
|
16
|
+
{ name: 'Aurora', colors: ['#00d2ff', '#3a7bd5', '#7b2ff7'] },
|
|
17
|
+
{ name: 'Cherry', colors: ['#eb3349', '#f45c43', '#ff8a80'] },
|
|
18
|
+
{ name: 'Cyberpunk', colors: ['#f72585', '#7209b7', '#4cc9f0'] },
|
|
19
|
+
{ name: 'Arctic', colors: ['#e0eafc', '#cfdef3', '#74b9ff'] },
|
|
20
|
+
{ name: 'Emerald', colors: ['#11998e', '#38ef7d', '#b8ff96'] },
|
|
21
|
+
{ name: 'Midnight', colors: ['#0f0c29', '#302b63', '#24c6dc'] },
|
|
22
|
+
{ name: 'Rose Gold', colors: ['#f4c4f3', '#fc5c7d', '#fda085'] },
|
|
12
23
|
];
|
package/src/ui.js
CHANGED
|
@@ -27,6 +27,16 @@ const FONT_OPTIONS = [
|
|
|
27
27
|
{ value: 'ANSI Shadow', label: 'ANSI Shadow' },
|
|
28
28
|
{ value: 'Slant', label: 'Slant' },
|
|
29
29
|
{ value: 'Small', label: 'Small' },
|
|
30
|
+
{ value: 'ANSI Regular', label: 'ANSI Regular' },
|
|
31
|
+
{ value: 'Bloody', label: 'Bloody' },
|
|
32
|
+
{ value: 'DOS Rebel', label: 'DOS Rebel' },
|
|
33
|
+
{ value: 'Graffiti', label: 'Graffiti' },
|
|
34
|
+
{ value: 'Larry 3D', label: 'Larry 3D' },
|
|
35
|
+
{ value: 'Star Wars', label: 'Star Wars' },
|
|
36
|
+
{ value: 'Doh', label: 'Doh' },
|
|
37
|
+
{ value: 'Ghost', label: 'Ghost' },
|
|
38
|
+
{ value: 'Fraktur', label: 'Fraktur' },
|
|
39
|
+
{ value: 'Fire Font-k', label: 'Fire Font-k' },
|
|
30
40
|
];
|
|
31
41
|
|
|
32
42
|
function handleCancel(value) {
|