mulmocast 2.2.0 → 2.2.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.
@@ -0,0 +1,134 @@
1
+ export declare const slideThemes: {
2
+ corporate: {
3
+ colors: {
4
+ accent: string;
5
+ bg: string;
6
+ bgCard: string;
7
+ bgCardAlt: string;
8
+ danger: string;
9
+ highlight: string;
10
+ info: string;
11
+ primary: string;
12
+ success: string;
13
+ text: string;
14
+ textDim: string;
15
+ textMuted: string;
16
+ warning: string;
17
+ };
18
+ fonts: {
19
+ body: string;
20
+ mono: string;
21
+ title: string;
22
+ };
23
+ };
24
+ creative: {
25
+ colors: {
26
+ accent: string;
27
+ bg: string;
28
+ bgCard: string;
29
+ bgCardAlt: string;
30
+ danger: string;
31
+ highlight: string;
32
+ info: string;
33
+ primary: string;
34
+ success: string;
35
+ text: string;
36
+ textDim: string;
37
+ textMuted: string;
38
+ warning: string;
39
+ };
40
+ fonts: {
41
+ body: string;
42
+ mono: string;
43
+ title: string;
44
+ };
45
+ };
46
+ dark: {
47
+ colors: {
48
+ accent: string;
49
+ bg: string;
50
+ bgCard: string;
51
+ bgCardAlt: string;
52
+ danger: string;
53
+ highlight: string;
54
+ info: string;
55
+ primary: string;
56
+ success: string;
57
+ text: string;
58
+ textDim: string;
59
+ textMuted: string;
60
+ warning: string;
61
+ };
62
+ fonts: {
63
+ body: string;
64
+ mono: string;
65
+ title: string;
66
+ };
67
+ };
68
+ minimal: {
69
+ colors: {
70
+ accent: string;
71
+ bg: string;
72
+ bgCard: string;
73
+ bgCardAlt: string;
74
+ danger: string;
75
+ highlight: string;
76
+ info: string;
77
+ primary: string;
78
+ success: string;
79
+ text: string;
80
+ textDim: string;
81
+ textMuted: string;
82
+ warning: string;
83
+ };
84
+ fonts: {
85
+ body: string;
86
+ mono: string;
87
+ title: string;
88
+ };
89
+ };
90
+ pop: {
91
+ colors: {
92
+ accent: string;
93
+ bg: string;
94
+ bgCard: string;
95
+ bgCardAlt: string;
96
+ danger: string;
97
+ highlight: string;
98
+ info: string;
99
+ primary: string;
100
+ success: string;
101
+ text: string;
102
+ textDim: string;
103
+ textMuted: string;
104
+ warning: string;
105
+ };
106
+ fonts: {
107
+ body: string;
108
+ mono: string;
109
+ title: string;
110
+ };
111
+ };
112
+ warm: {
113
+ colors: {
114
+ accent: string;
115
+ bg: string;
116
+ bgCard: string;
117
+ bgCardAlt: string;
118
+ danger: string;
119
+ highlight: string;
120
+ info: string;
121
+ primary: string;
122
+ success: string;
123
+ text: string;
124
+ textDim: string;
125
+ textMuted: string;
126
+ warning: string;
127
+ };
128
+ fonts: {
129
+ body: string;
130
+ mono: string;
131
+ title: string;
132
+ };
133
+ };
134
+ };
@@ -0,0 +1,134 @@
1
+ export const slideThemes = {
2
+ corporate: {
3
+ colors: {
4
+ accent: "7C3AED",
5
+ bg: "F8FAFC",
6
+ bgCard: "FFFFFF",
7
+ bgCardAlt: "F1F5F9",
8
+ danger: "DC2626",
9
+ highlight: "DB2777",
10
+ info: "0891B2",
11
+ primary: "2563EB",
12
+ success: "16A34A",
13
+ text: "0F172A",
14
+ textDim: "94A3B8",
15
+ textMuted: "475569",
16
+ warning: "EA580C",
17
+ },
18
+ fonts: {
19
+ body: "Helvetica",
20
+ mono: "Menlo",
21
+ title: "Georgia",
22
+ },
23
+ },
24
+ creative: {
25
+ colors: {
26
+ accent: "FB923C",
27
+ bg: "1C1917",
28
+ bgCard: "292524",
29
+ bgCardAlt: "3D3733",
30
+ danger: "EF4444",
31
+ highlight: "E879F9",
32
+ info: "38BDF8",
33
+ primary: "F43F5E",
34
+ success: "4ADE80",
35
+ text: "FAFAF9",
36
+ textDim: "A8A29E",
37
+ textMuted: "D6D3D1",
38
+ warning: "FBBF24",
39
+ },
40
+ fonts: {
41
+ body: "Helvetica",
42
+ mono: "Consolas",
43
+ title: "Georgia",
44
+ },
45
+ },
46
+ dark: {
47
+ colors: {
48
+ accent: "8B5CF6",
49
+ bg: "0F172A",
50
+ bgCard: "1E293B",
51
+ bgCardAlt: "334155",
52
+ danger: "EF4444",
53
+ highlight: "EC4899",
54
+ info: "14B8A6",
55
+ primary: "3B82F6",
56
+ success: "22C55E",
57
+ text: "F8FAFC",
58
+ textDim: "64748B",
59
+ textMuted: "CBD5E1",
60
+ warning: "F59E0B",
61
+ },
62
+ fonts: {
63
+ body: "Calibri",
64
+ mono: "Consolas",
65
+ title: "Georgia",
66
+ },
67
+ },
68
+ minimal: {
69
+ colors: {
70
+ accent: "7C3AED",
71
+ bg: "F8FAFC",
72
+ bgCard: "FFFFFF",
73
+ bgCardAlt: "F1F5F9",
74
+ danger: "DC2626",
75
+ highlight: "DB2777",
76
+ info: "0891B2",
77
+ primary: "2563EB",
78
+ success: "059669",
79
+ text: "0F172A",
80
+ textDim: "94A3B8",
81
+ textMuted: "475569",
82
+ warning: "D97706",
83
+ },
84
+ fonts: {
85
+ body: "Calibri",
86
+ mono: "Consolas",
87
+ title: "Trebuchet MS",
88
+ },
89
+ },
90
+ pop: {
91
+ colors: {
92
+ accent: "7C3AED",
93
+ bg: "FFF0F5",
94
+ bgCard: "FFFFFF",
95
+ bgCardAlt: "FDE8EF",
96
+ danger: "EF4444",
97
+ highlight: "F97316",
98
+ info: "06B6D4",
99
+ primary: "E91E63",
100
+ success: "10B981",
101
+ text: "1A1A2E",
102
+ textDim: "9090B0",
103
+ textMuted: "4A4A6A",
104
+ warning: "F59E0B",
105
+ },
106
+ fonts: {
107
+ body: "Calibri",
108
+ mono: "Consolas",
109
+ title: "Georgia",
110
+ },
111
+ },
112
+ warm: {
113
+ colors: {
114
+ accent: "D946EF",
115
+ bg: "FFFBEB",
116
+ bgCard: "FFFFFF",
117
+ bgCardAlt: "FEF3C7",
118
+ danger: "DC2626",
119
+ highlight: "E11D48",
120
+ info: "0284C7",
121
+ primary: "EA580C",
122
+ success: "16A34A",
123
+ text: "1C1917",
124
+ textDim: "A8A29E",
125
+ textMuted: "57534E",
126
+ warning: "CA8A04",
127
+ },
128
+ fonts: {
129
+ body: "Calibri",
130
+ mono: "Consolas",
131
+ title: "Georgia",
132
+ },
133
+ },
134
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mulmocast",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.node.js",
@@ -17,7 +17,11 @@
17
17
  "default": "./lib/data/index.js"
18
18
  },
19
19
  "./assets/*": "./assets/*",
20
- "./scripts/*": "./scripts/*"
20
+ "./scripts/*": "./scripts/*",
21
+ "./tools/complete_script": {
22
+ "types": "./lib/tools/complete_script.d.ts",
23
+ "default": "./lib/tools/complete_script.js"
24
+ }
21
25
  },
22
26
  "bin": {
23
27
  "mulmo": "lib/cli/bin.js",
@@ -30,6 +34,9 @@
30
34
  "./assets/audio/silent60sec.mp3",
31
35
  "./assets/html/",
32
36
  "./assets/images/",
37
+ "./assets/schemas/",
38
+ "./assets/slide_themes/",
39
+ "./assets/styles/",
33
40
  "./assets/templates/"
34
41
  ],
35
42
  "directories": {