orz-slides 0.1.0
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 +192 -0
- package/assets/app.js +683 -0
- package/assets/themes/base.css +777 -0
- package/assets/themes/theme-architect.css +64 -0
- package/assets/themes/theme-chalk.css +111 -0
- package/assets/themes/theme-executive.css +65 -0
- package/assets/themes/theme-neon.css +107 -0
- package/assets/themes/theme-paper.css +50 -0
- package/assets/themes/theme-poppy.css +58 -0
- package/assets/themes/theme-sage.css +50 -0
- package/dist/browser-entry.js +615 -0
- package/dist/cli.js +187 -0
- package/dist/layout.js +42 -0
- package/dist/orz-slides.browser.js +388 -0
- package/dist/render-slide.js +149 -0
- package/dist/slide-parser.js +622 -0
- package/dist/template.js +275 -0
- package/dist/types.js +12 -0
- package/orz-slides-skills/SKILL.md +386 -0
- package/package.json +50 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Architect · blueprint / technical-drawing style
|
|
3
|
+
Personality: precise, structural, grid-based, monochromatic.
|
|
4
|
+
Font: Source Code Pro. Blueprint-grid background, sharp corners,
|
|
5
|
+
transparent slate title band with a heavy left bracket rule.
|
|
6
|
+
========================================================== */
|
|
7
|
+
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,600;0,700;1,400&display=swap');
|
|
8
|
+
@import url('./base.css');
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--accent: #2c3e50; /* deep slate blue-grey */
|
|
12
|
+
--ink: #2c3e50;
|
|
13
|
+
--bg: #fcfcfc;
|
|
14
|
+
|
|
15
|
+
--font-heading: 'Source Code Pro', ui-monospace, monospace;
|
|
16
|
+
--font-body: 'Source Code Pro', ui-monospace, monospace;
|
|
17
|
+
--font-mono: 'Source Code Pro', ui-monospace, monospace;
|
|
18
|
+
|
|
19
|
+
--slide-gap: 26px;
|
|
20
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
21
|
+
|
|
22
|
+
/* Title band: raw text on white, hard bracket-style left border */
|
|
23
|
+
--heading-color: #2c3e50;
|
|
24
|
+
--heading-bg: #ffffff;
|
|
25
|
+
--heading-radius: 0;
|
|
26
|
+
--heading-pad: 0.45em 0.7em;
|
|
27
|
+
--heading-align: left;
|
|
28
|
+
--heading-font-weight: 700;
|
|
29
|
+
--heading-letter-spacing: -0.02em;
|
|
30
|
+
--heading-shadow: inset 10px 0 0 0 var(--accent),
|
|
31
|
+
inset 0 0 0 2px var(--accent);
|
|
32
|
+
|
|
33
|
+
/* Callouts: white surfaces, thin colored outlines, hard offset shadow */
|
|
34
|
+
--box-radius: 0;
|
|
35
|
+
--box-border-width: 2px;
|
|
36
|
+
--box-shadow: 4px 4px 0 rgba(44, 62, 80, 0.15);
|
|
37
|
+
--box-info: #3498db; --box-info-bg: #ffffff;
|
|
38
|
+
--box-warning: #c79a2e; --box-warning-bg: #ffffff;
|
|
39
|
+
--box-danger: #e74c3c; --box-danger-bg: #ffffff;
|
|
40
|
+
--box-success: #27ae60; --box-success-bg: #ffffff;
|
|
41
|
+
|
|
42
|
+
--table-head-bg: #ecf0f1;
|
|
43
|
+
--table-head-color: #2c3e50;
|
|
44
|
+
--row-highlight: #eef3f6;
|
|
45
|
+
|
|
46
|
+
--surface: #ffffff;
|
|
47
|
+
--muted: #6a7d8d;
|
|
48
|
+
--rule: #bdc3c7;
|
|
49
|
+
--code-bg: #eef1f3;
|
|
50
|
+
--code-color: #2c3e50;
|
|
51
|
+
--link-color: #2c3e50;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/* Blueprint grid behind the deck */
|
|
55
|
+
.reveal-viewport,
|
|
56
|
+
body {
|
|
57
|
+
background-color: #fcfcfc;
|
|
58
|
+
background-image:
|
|
59
|
+
linear-gradient(#e5e5e5 1px, transparent 1px),
|
|
60
|
+
linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
|
|
61
|
+
background-size: 40px 40px;
|
|
62
|
+
}
|
|
63
|
+
/* Regions sit on the grid; floats get an opaque white card from base */
|
|
64
|
+
.reveal .orz-region > .markdown-body { position: relative; }
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Chalk · dark blackboard green, warm chalk white (DARK)
|
|
3
|
+
Personality: academic, handwritten, warm, approachable.
|
|
4
|
+
Font: Caveat (handwritten). Blackboard slide, yellow-chalk title
|
|
5
|
+
with a dashed under-rule, dashed chalk-drawn callout borders.
|
|
6
|
+
Overrides reveal vars for the dark cascade. Code reverts to
|
|
7
|
+
monospace for legibility.
|
|
8
|
+
========================================================== */
|
|
9
|
+
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&display=swap');
|
|
10
|
+
@import url('./base.css');
|
|
11
|
+
|
|
12
|
+
:root {
|
|
13
|
+
--accent: #ffd663; /* yellow chalk */
|
|
14
|
+
--ink: #f2ede2; /* warm chalk white, >14:1 on bg */
|
|
15
|
+
--bg: #1a2420; /* blackboard green */
|
|
16
|
+
|
|
17
|
+
/* cover / full-color slides (title v5, closing v2) — warm amber */
|
|
18
|
+
--cover-bg: #ffd663;
|
|
19
|
+
--cover-ink: #1a2420;
|
|
20
|
+
--cover-accent: #3a5440;
|
|
21
|
+
|
|
22
|
+
--font-heading: 'Caveat', 'Comic Sans MS', cursive;
|
|
23
|
+
--font-body: 'Caveat', 'Comic Sans MS', cursive;
|
|
24
|
+
--font-mono: ui-monospace, 'SFMono-Regular', Menlo, monospace;
|
|
25
|
+
|
|
26
|
+
--slide-gap: 28px;
|
|
27
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
28
|
+
|
|
29
|
+
/* DARK: override reveal's own vars. */
|
|
30
|
+
--r-background-color: #1a2420;
|
|
31
|
+
--r-main-color: #f2ede2;
|
|
32
|
+
--r-heading-color: #ffd663;
|
|
33
|
+
--r-link-color: #8ecae6;
|
|
34
|
+
|
|
35
|
+
/* Title band: no bar — yellow chalk text with a dashed under-rule */
|
|
36
|
+
--heading-color: #ffd663;
|
|
37
|
+
--heading-bg: transparent;
|
|
38
|
+
--heading-radius: 2px;
|
|
39
|
+
--heading-pad: 0.1em 0 0.3em 0;
|
|
40
|
+
--heading-align: left;
|
|
41
|
+
--heading-font-weight: 700;
|
|
42
|
+
--heading-letter-spacing: 0.02em;
|
|
43
|
+
--heading-shadow: inset 0 -4px 0 -1px rgba(255, 214, 99, 0.6);
|
|
44
|
+
|
|
45
|
+
/* Callouts: dashed chalk-drawn rectangles on chalk-dust surfaces */
|
|
46
|
+
--box-radius: 2px;
|
|
47
|
+
--box-border-width: 2px;
|
|
48
|
+
--box-shadow: none;
|
|
49
|
+
--box-info: #8ecae6; --box-info-bg: #1c2e30;
|
|
50
|
+
--box-warning: #ffd663; --box-warning-bg: #2a2714;
|
|
51
|
+
--box-danger: #f4a4b0; --box-danger-bg: #2a1c1e;
|
|
52
|
+
--box-success: #8ddbab; --box-success-bg: #1c2a22;
|
|
53
|
+
|
|
54
|
+
--table-head-bg: #1e2e24;
|
|
55
|
+
--table-head-color: #ffd663;
|
|
56
|
+
--row-highlight: #243a2c;
|
|
57
|
+
|
|
58
|
+
--surface: #1e2e24;
|
|
59
|
+
--muted: #b4c4b8; /* ~6:1 on bg */
|
|
60
|
+
--rule: rgba(242, 237, 226, 0.22);
|
|
61
|
+
--code-bg: #12201a;
|
|
62
|
+
--code-color: #8ddbab;
|
|
63
|
+
--link-color: #8ecae6;
|
|
64
|
+
|
|
65
|
+
/* dashed borders read as chalk-drawn */
|
|
66
|
+
--font-size-bump: 1;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
body,
|
|
70
|
+
.reveal-viewport { background-color: #1a2420; }
|
|
71
|
+
|
|
72
|
+
/* Slightly larger body — Caveat is an open hand */
|
|
73
|
+
.reveal .markdown-body p,
|
|
74
|
+
.reveal .markdown-body li,
|
|
75
|
+
.reveal .markdown-body td { font-size: 0.95em; }
|
|
76
|
+
|
|
77
|
+
/* Chalk-on-board roughness on headings + title */
|
|
78
|
+
.reveal .orz-title h2,
|
|
79
|
+
.reveal .markdown-body h3,
|
|
80
|
+
.reveal .markdown-body h4 {
|
|
81
|
+
text-shadow: 1px 1px 0 rgba(26, 36, 32, 0.6);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Dashed chalk-drawn callout borders + table rules */
|
|
85
|
+
.reveal .markdown-body .box-info,
|
|
86
|
+
.reveal .markdown-body .box-warning,
|
|
87
|
+
.reveal .markdown-body .box-danger,
|
|
88
|
+
.reveal .markdown-body .box-success { border-style: dashed; }
|
|
89
|
+
.reveal .markdown-body th { border-bottom-style: dashed; }
|
|
90
|
+
.reveal .markdown-body td { border-bottom-style: dashed; }
|
|
91
|
+
|
|
92
|
+
/* Code reverts to monospace for legibility */
|
|
93
|
+
.reveal .markdown-body code,
|
|
94
|
+
.reveal .markdown-body pre code { font-family: var(--font-mono); }
|
|
95
|
+
.reveal .markdown-body code { border: 1px dashed rgba(255, 214, 99, 0.35); }
|
|
96
|
+
|
|
97
|
+
/* Chalk-blue links */
|
|
98
|
+
.reveal .markdown-body a {
|
|
99
|
+
text-decoration: none;
|
|
100
|
+
border-bottom: 1px dashed rgba(142, 202, 230, 0.5);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/* Mermaid + charts render with light defaults; on this dark theme give them a soft
|
|
104
|
+
translucent light panel so they stay legible (matches the orz-markdown fix). */
|
|
105
|
+
.reveal .markdown-body .mermaid,
|
|
106
|
+
.reveal .markdown-body canvas.orz-chart {
|
|
107
|
+
background: rgba(255, 255, 255, 0.9);
|
|
108
|
+
border-radius: 8px;
|
|
109
|
+
padding: 0.5rem;
|
|
110
|
+
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
|
|
111
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Executive · dark navy, gold accents, authoritative
|
|
3
|
+
Personality: professional, confident, boardroom-ready.
|
|
4
|
+
Font: Barlow. White slide, navy title band with a gold under-rule,
|
|
5
|
+
navy/gold tables. A DARK title band on a light slide — reveal vars
|
|
6
|
+
are kept light so body text stays navy on white.
|
|
7
|
+
========================================================== */
|
|
8
|
+
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Space+Grotesk:wght@500;600;700&display=swap');
|
|
9
|
+
@import url('./base.css');
|
|
10
|
+
|
|
11
|
+
:root {
|
|
12
|
+
--accent: #c9a84c; /* gold */
|
|
13
|
+
--ink: #12202e; /* dark navy */
|
|
14
|
+
--bg: #ffffff;
|
|
15
|
+
|
|
16
|
+
--font-heading: 'Space Grotesk', 'Barlow', 'Segoe UI', sans-serif;
|
|
17
|
+
--font-body: 'Barlow', 'Segoe UI', sans-serif;
|
|
18
|
+
|
|
19
|
+
--slide-gap: 28px;
|
|
20
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
21
|
+
|
|
22
|
+
/* Title band: navy bar, white text, gold bottom rule */
|
|
23
|
+
--heading-color: #ffffff;
|
|
24
|
+
--heading-bg: #12202e;
|
|
25
|
+
--heading-radius: 3px;
|
|
26
|
+
--heading-pad: 0.4em 0.7em;
|
|
27
|
+
--heading-align: left;
|
|
28
|
+
--heading-font-weight: 700;
|
|
29
|
+
--heading-letter-spacing: -0.01em;
|
|
30
|
+
--heading-shadow: 0 3px 0 0 #c9a84c;
|
|
31
|
+
|
|
32
|
+
/* Callouts: gold-accented borders on tinted whites */
|
|
33
|
+
--box-radius: 3px;
|
|
34
|
+
--box-border-width: 3px;
|
|
35
|
+
--box-shadow: 2px 3px 6px rgba(18, 32, 46, 0.14);
|
|
36
|
+
--box-info: #2b6cb0; --box-info-bg: #f0f4fa;
|
|
37
|
+
--box-warning: #c9a84c; --box-warning-bg: #fdf6e4;
|
|
38
|
+
--box-danger: #c0392b; --box-danger-bg: #fdf0f0;
|
|
39
|
+
--box-success: #27ae60; --box-success-bg: #f0faf4;
|
|
40
|
+
|
|
41
|
+
--table-head-bg: #12202e;
|
|
42
|
+
--table-head-color: #ffffff;
|
|
43
|
+
--row-highlight: #fbf4df;
|
|
44
|
+
|
|
45
|
+
--surface: #ffffff;
|
|
46
|
+
--muted: #5b6b7a;
|
|
47
|
+
--rule: #dde3ec;
|
|
48
|
+
--code-bg: #f4f5f8;
|
|
49
|
+
--code-color: #12202e;
|
|
50
|
+
--link-color: #2b6cb0;
|
|
51
|
+
|
|
52
|
+
/* Slide is light; keep reveal's own vars light so default text/headings
|
|
53
|
+
elsewhere don't pick up a dark cascade. */
|
|
54
|
+
--r-background-color: #ffffff;
|
|
55
|
+
--r-main-color: #12202e;
|
|
56
|
+
--r-heading-color: #12202e;
|
|
57
|
+
--r-link-color: #2b6cb0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/* Uppercase, tracked table headers — boardroom polish */
|
|
61
|
+
.reveal .markdown-body th {
|
|
62
|
+
text-transform: uppercase;
|
|
63
|
+
letter-spacing: 0.04em;
|
|
64
|
+
font-size: 0.66em;
|
|
65
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Neon · near-black, electric cyan, glowing edges (DARK)
|
|
3
|
+
Personality: tech, futuristic, hacker aesthetic, bold.
|
|
4
|
+
Font: JetBrains Mono. Near-black slide, cyan glowing title band,
|
|
5
|
+
dark callout surfaces with full colored borders. Overrides reveal
|
|
6
|
+
vars so body text/headings stay light on the dark cascade.
|
|
7
|
+
========================================================== */
|
|
8
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,600;0,700;1,400&display=swap');
|
|
9
|
+
@import url('./base.css');
|
|
10
|
+
|
|
11
|
+
:root {
|
|
12
|
+
--accent: #00f5d4; /* electric cyan */
|
|
13
|
+
--ink: #e0f7f4; /* soft cyan-white, >12:1 on bg */
|
|
14
|
+
--bg: #0e0e12; /* near-black, cyan-tinted */
|
|
15
|
+
|
|
16
|
+
/* cover / full-color slides (title v5, closing v2) — inverted: bright cyan */
|
|
17
|
+
--cover-bg: #00f5d4;
|
|
18
|
+
--cover-ink: #07120f;
|
|
19
|
+
--cover-accent: #0a2e2a;
|
|
20
|
+
|
|
21
|
+
--font-heading: 'JetBrains Mono', ui-monospace, monospace;
|
|
22
|
+
--font-body: 'JetBrains Mono', ui-monospace, monospace;
|
|
23
|
+
--font-mono: 'JetBrains Mono', ui-monospace, monospace;
|
|
24
|
+
|
|
25
|
+
--slide-gap: 26px;
|
|
26
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
27
|
+
|
|
28
|
+
/* DARK: override reveal's own vars (specificity (0,2,1) beats ours). */
|
|
29
|
+
--r-background-color: #0e0e12;
|
|
30
|
+
--r-main-color: #e0f7f4;
|
|
31
|
+
--r-heading-color: #00f5d4;
|
|
32
|
+
--r-link-color: #00f5d4;
|
|
33
|
+
|
|
34
|
+
/* Title band: dark teal surface, cyan glowing text */
|
|
35
|
+
--heading-color: #00f5d4;
|
|
36
|
+
--heading-bg: #10201e;
|
|
37
|
+
--heading-radius: 4px;
|
|
38
|
+
--heading-pad: 0.4em 0.7em;
|
|
39
|
+
--heading-align: left;
|
|
40
|
+
--heading-font-weight: 700;
|
|
41
|
+
--heading-letter-spacing: -0.02em;
|
|
42
|
+
--heading-shadow: 0 0 20px rgba(0, 245, 212, 0.18),
|
|
43
|
+
inset 0 0 30px rgba(0, 245, 212, 0.03);
|
|
44
|
+
|
|
45
|
+
/* Callouts: explicit dark surfaces, full colored borders, faint glow */
|
|
46
|
+
--box-radius: 4px;
|
|
47
|
+
--box-border-width: 2px;
|
|
48
|
+
--box-shadow: 0 0 12px rgba(0, 245, 212, 0.12);
|
|
49
|
+
--box-info: #00f5d4; --box-info-bg: #0c1b1a;
|
|
50
|
+
--box-warning: #ffc828; --box-warning-bg: #1a1700;
|
|
51
|
+
--box-danger: #ff5050; --box-danger-bg: #1a0c0c;
|
|
52
|
+
--box-success: #32e678; --box-success-bg: #0c1a0e;
|
|
53
|
+
|
|
54
|
+
--table-head-bg: #0e1c1b;
|
|
55
|
+
--table-head-color: #00f5d4;
|
|
56
|
+
--row-highlight: #14311b;
|
|
57
|
+
|
|
58
|
+
--surface: #10201e;
|
|
59
|
+
--muted: #7bbab5; /* ~7:1 on bg */
|
|
60
|
+
--rule: #1e3432;
|
|
61
|
+
--code-bg: #0e1c1b;
|
|
62
|
+
--code-color: #00f5d4;
|
|
63
|
+
--link-color: #00f5d4;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* Near-black background + a very subtle scanline */
|
|
67
|
+
.reveal-viewport,
|
|
68
|
+
body { background-color: #0e0e12; }
|
|
69
|
+
body {
|
|
70
|
+
background-image: repeating-linear-gradient(
|
|
71
|
+
0deg, transparent, transparent 3px,
|
|
72
|
+
rgba(0, 245, 212, 0.012) 3px, rgba(0, 245, 212, 0.012) 4px);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Glowing title text */
|
|
76
|
+
.reveal .orz-title h2 {
|
|
77
|
+
text-shadow: 0 0 18px rgba(0, 245, 212, 0.7), 0 0 40px rgba(0, 245, 212, 0.3);
|
|
78
|
+
border: 1px solid #1e4d47;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/* Glowing accent sub-headings + strong */
|
|
82
|
+
.reveal .markdown-body h3,
|
|
83
|
+
.reveal .markdown-body h4,
|
|
84
|
+
.reveal .markdown-body strong {
|
|
85
|
+
text-shadow: 0 0 12px rgba(0, 245, 212, 0.45);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* Terminal-style code + uppercase table headers */
|
|
89
|
+
.reveal .markdown-body th {
|
|
90
|
+
text-transform: uppercase;
|
|
91
|
+
letter-spacing: 0.04em;
|
|
92
|
+
font-size: 0.66em;
|
|
93
|
+
}
|
|
94
|
+
.reveal .markdown-body a {
|
|
95
|
+
text-decoration: none;
|
|
96
|
+
border-bottom: 1px dashed #1e6b63;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* Mermaid + charts render with light defaults; on this dark theme give them a soft
|
|
100
|
+
translucent light panel so they stay legible (matches the orz-markdown fix). */
|
|
101
|
+
.reveal .markdown-body .mermaid,
|
|
102
|
+
.reveal .markdown-body canvas.orz-chart {
|
|
103
|
+
background: rgba(255, 255, 255, 0.9);
|
|
104
|
+
border-radius: 8px;
|
|
105
|
+
padding: 0.5rem;
|
|
106
|
+
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
|
|
107
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Paper · book-like, typographic, warm
|
|
3
|
+
Personality: traditional, sophisticated, readable, literary.
|
|
4
|
+
Font: EB Garamond. Light warm-paper background, ink headings with
|
|
5
|
+
a double-rule under the title band, hand-printed highlighter callouts.
|
|
6
|
+
========================================================== */
|
|
7
|
+
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');
|
|
8
|
+
@import url('./base.css');
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--accent: #8d6e63; /* warm brown / taupe */
|
|
12
|
+
--ink: #3e2723; /* deep brown-black ink */
|
|
13
|
+
--bg: #fcfbf7; /* warm off-white paper */
|
|
14
|
+
|
|
15
|
+
--font-heading: 'EB Garamond', Georgia, serif;
|
|
16
|
+
--font-body: 'EB Garamond', Georgia, serif;
|
|
17
|
+
|
|
18
|
+
--slide-gap: 30px;
|
|
19
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
20
|
+
|
|
21
|
+
/* Title band: ink text on a faint blush tint, double bottom rule */
|
|
22
|
+
--heading-color: #3e2723;
|
|
23
|
+
--heading-bg: #f5ede9;
|
|
24
|
+
--heading-radius: 2px;
|
|
25
|
+
--heading-pad: 0.35em 0.6em;
|
|
26
|
+
--heading-align: left;
|
|
27
|
+
--heading-font-weight: 600;
|
|
28
|
+
--heading-letter-spacing: 0.02em;
|
|
29
|
+
--heading-shadow: inset 0 -3px 0 0 var(--accent);
|
|
30
|
+
|
|
31
|
+
/* Callouts: highlighter fills, hard-printed offset shadow */
|
|
32
|
+
--box-radius: 3px;
|
|
33
|
+
--box-border-width: 2px;
|
|
34
|
+
--box-shadow: 2px 3px 0 rgba(62, 39, 35, 0.10);
|
|
35
|
+
--box-info: #0288d1; --box-info-bg: #e1f5fe;
|
|
36
|
+
--box-warning: #fbc02d; --box-warning-bg: #fff9c4;
|
|
37
|
+
--box-danger: #d32f2f; --box-danger-bg: #ffcdd2;
|
|
38
|
+
--box-success: #689f38; --box-success-bg: #dcedc8;
|
|
39
|
+
|
|
40
|
+
--table-head-bg: #efebe9;
|
|
41
|
+
--table-head-color: #3e2723;
|
|
42
|
+
--row-highlight: #f3e9dc;
|
|
43
|
+
|
|
44
|
+
--surface: #f5ede9;
|
|
45
|
+
--muted: #8a766f;
|
|
46
|
+
--rule: #d8ccc4;
|
|
47
|
+
--code-bg: #f1e9e3;
|
|
48
|
+
--code-color: #5b3f37;
|
|
49
|
+
--link-color: #8d6e63;
|
|
50
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Poppy · warm cream, coral red, playful energy
|
|
3
|
+
Personality: energetic, fun, creative, consumer-facing.
|
|
4
|
+
Font: Nunito (rounded). Cream slide, bold coral title band with big
|
|
5
|
+
rounded corners, colorful fully-filled callouts (no border).
|
|
6
|
+
========================================================== */
|
|
7
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Fredoka:wght@500;600;700&display=swap');
|
|
8
|
+
@import url('./base.css');
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--accent: #ff4848; /* coral red */
|
|
12
|
+
--ink: #2d1f1f; /* warm dark */
|
|
13
|
+
--bg: #fffbf5; /* warm cream */
|
|
14
|
+
|
|
15
|
+
/* cover / full-color slides (title v5, closing v2) — bold red */
|
|
16
|
+
--cover-bg: #ff4848;
|
|
17
|
+
--cover-ink: #fffbf5;
|
|
18
|
+
--cover-accent: #ffe08a;
|
|
19
|
+
|
|
20
|
+
--font-heading: 'Fredoka', 'Nunito', 'Segoe UI', sans-serif;
|
|
21
|
+
--font-body: 'Nunito', 'Segoe UI', sans-serif;
|
|
22
|
+
|
|
23
|
+
--slide-gap: 26px;
|
|
24
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
25
|
+
|
|
26
|
+
/* Title band: bold coral strip, bubbly corners, glow shadow */
|
|
27
|
+
--heading-color: #ffffff;
|
|
28
|
+
--heading-bg: #ff4848;
|
|
29
|
+
--heading-radius: 14px;
|
|
30
|
+
--heading-pad: 0.45em 0.8em;
|
|
31
|
+
--heading-align: center;
|
|
32
|
+
--heading-font-weight: 800;
|
|
33
|
+
--heading-letter-spacing: 0.01em;
|
|
34
|
+
--heading-shadow: 0 4px 14px rgba(255, 72, 72, 0.35);
|
|
35
|
+
|
|
36
|
+
/* Callouts: colorful filled tiles, no border, big radius */
|
|
37
|
+
--box-radius: 12px;
|
|
38
|
+
--box-border-width: 0px;
|
|
39
|
+
--box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
|
|
40
|
+
--box-info: #2196f3; --box-info-bg: #dceeff;
|
|
41
|
+
--box-warning: #ffb300; --box-warning-bg: #fff3cd;
|
|
42
|
+
--box-danger: #ff4848; --box-danger-bg: #ffe0e0;
|
|
43
|
+
--box-success: #2ecc71; --box-success-bg: #d6f5e3;
|
|
44
|
+
|
|
45
|
+
--table-head-bg: #ff4848;
|
|
46
|
+
--table-head-color: #ffffff;
|
|
47
|
+
--row-highlight: #ffe5e5;
|
|
48
|
+
|
|
49
|
+
--surface: #fff3ee;
|
|
50
|
+
--muted: #8a6f6f;
|
|
51
|
+
--rule: #f5e4dc;
|
|
52
|
+
--code-bg: #ffe8e8;
|
|
53
|
+
--code-color: #c0392b;
|
|
54
|
+
--link-color: #ff4848;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* Code reads as a friendly pill rather than a slab */
|
|
58
|
+
.reveal .markdown-body code { font-weight: 700; }
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/* ==========================================================
|
|
2
|
+
THEME: Sage · warm ivory, sage green, casual-professional
|
|
3
|
+
Personality: friendly, natural, approachable, warm.
|
|
4
|
+
Font: Nunito Sans. Ivory slide, rounded darkened-sage title band
|
|
5
|
+
(7:1 contrast on white), soft earth-tone callouts.
|
|
6
|
+
========================================================== */
|
|
7
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&family=Lora:ital,wght@0,500;0,600;0,700;1,500&display=swap');
|
|
8
|
+
@import url('./base.css');
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--accent: #5a7a5f; /* sage green */
|
|
12
|
+
--ink: #2d3a2e; /* dark forest */
|
|
13
|
+
--bg: #f6f3ec; /* warm ivory */
|
|
14
|
+
|
|
15
|
+
--font-heading: 'Lora', Georgia, serif;
|
|
16
|
+
--font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
|
|
17
|
+
|
|
18
|
+
--slide-gap: 28px;
|
|
19
|
+
--slide-pad: 1% 2% 2% 2%;
|
|
20
|
+
|
|
21
|
+
/* Title band: darker sage for white-text contrast, soft round corners */
|
|
22
|
+
--heading-color: #ffffff;
|
|
23
|
+
--heading-bg: #3a5f40;
|
|
24
|
+
--heading-radius: 8px;
|
|
25
|
+
--heading-pad: 0.4em 0.7em;
|
|
26
|
+
--heading-align: left;
|
|
27
|
+
--heading-font-weight: 700;
|
|
28
|
+
--heading-letter-spacing: 0.01em;
|
|
29
|
+
--heading-shadow: 0 2px 8px rgba(90, 122, 95, 0.25);
|
|
30
|
+
|
|
31
|
+
/* Callouts: soft rounded earth tones */
|
|
32
|
+
--box-radius: 8px;
|
|
33
|
+
--box-border-width: 3px;
|
|
34
|
+
--box-shadow: 0 2px 8px rgba(90, 122, 95, 0.12);
|
|
35
|
+
--box-info: #5a7a5f; --box-info-bg: #edf5ee;
|
|
36
|
+
--box-warning: #c8a05a; --box-warning-bg: #fdf7ec;
|
|
37
|
+
--box-danger: #c0614a; --box-danger-bg: #fdf0ee;
|
|
38
|
+
--box-success: #4a8c50; --box-success-bg: #ecf6ec;
|
|
39
|
+
|
|
40
|
+
--table-head-bg: #dbe9dc;
|
|
41
|
+
--table-head-color: #2d3a2e;
|
|
42
|
+
--row-highlight: #e6f0e7;
|
|
43
|
+
|
|
44
|
+
--surface: #eef4ef;
|
|
45
|
+
--muted: #6f7d70;
|
|
46
|
+
--rule: #d4cfc5;
|
|
47
|
+
--code-bg: #ede9e0;
|
|
48
|
+
--code-color: #2d3a2e;
|
|
49
|
+
--link-color: #4a8c50;
|
|
50
|
+
}
|