slidev-theme-frankfurt 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slidev-theme-frankfurt",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "A theme for Slidev, inspired by the Frankfurt theme in Beamer.",
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "build": "slidev build example.md",
22
22
  "dev": "slidev example.md",
23
23
  "export": "slidev export example.md",
24
- "screenshot": "slidev export example.md --format png --output screenshots"
24
+ "screenshot": "slidev export example.md --per-slide --format png --output screenshots"
25
25
  },
26
26
  "dependencies": {
27
27
  "@slidev/types": "^0.43.14",
@@ -51,6 +51,10 @@ html {
51
51
  border-radius: .5rem;
52
52
  overflow: hidden;
53
53
 
54
+ html.dark & {
55
+ --un-shadow-color: #111;
56
+ }
57
+
54
58
  header {
55
59
  padding: 0.5rem;
56
60
  color: white;
@@ -60,5 +64,9 @@ html {
60
64
  main {
61
65
  padding: 0.5rem;
62
66
  background: #E9E9F3;
67
+
68
+ html.dark & {
69
+ background: #444;
70
+ }
63
71
  }
64
72
  }