@agenticmail/enterprise 0.5.262 → 0.5.263
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.
|
@@ -48,6 +48,13 @@
|
|
|
48
48
|
.back:hover { color: var(--text-primary); }
|
|
49
49
|
strong { color: var(--text-primary); }
|
|
50
50
|
</style>
|
|
51
|
+
<script>
|
|
52
|
+
// Sync theme with dashboard (reads from localStorage)
|
|
53
|
+
(function() {
|
|
54
|
+
var t = localStorage.getItem('em_theme') || 'dark';
|
|
55
|
+
document.documentElement.setAttribute('data-theme', t);
|
|
56
|
+
})();
|
|
57
|
+
</script>
|
|
51
58
|
<script>
|
|
52
59
|
// Sync theme with dashboard preference
|
|
53
60
|
(function() {
|
package/package.json
CHANGED
|
@@ -48,6 +48,13 @@
|
|
|
48
48
|
.back:hover { color: var(--text-primary); }
|
|
49
49
|
strong { color: var(--text-primary); }
|
|
50
50
|
</style>
|
|
51
|
+
<script>
|
|
52
|
+
// Sync theme with dashboard (reads from localStorage)
|
|
53
|
+
(function() {
|
|
54
|
+
var t = localStorage.getItem('em_theme') || 'dark';
|
|
55
|
+
document.documentElement.setAttribute('data-theme', t);
|
|
56
|
+
})();
|
|
57
|
+
</script>
|
|
51
58
|
<script>
|
|
52
59
|
// Sync theme with dashboard preference
|
|
53
60
|
(function() {
|