@planetaexo/design-system 0.4.2 → 0.4.3
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/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2935,13 +2935,22 @@ function wrapEmailHtml(content) {
|
|
|
2935
2935
|
<head>
|
|
2936
2936
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
2937
2937
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
2938
|
+
<meta name="color-scheme" content="light dark" />
|
|
2939
|
+
<meta name="supported-color-schemes" content="light dark" />
|
|
2938
2940
|
<!--[if !mso]><!-->
|
|
2939
2941
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
2940
2942
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
|
|
2941
2943
|
<link href="${DM_SANS_URL}" rel="stylesheet" type="text/css" />
|
|
2942
2944
|
<!--<![endif]-->
|
|
2943
2945
|
</head>
|
|
2944
|
-
<body style="margin:0;padding:
|
|
2946
|
+
<body style="margin:0;padding:16px;background-color:#ffffff;">
|
|
2947
|
+
<!--[if !mso]><!-->
|
|
2948
|
+
<style type="text/css">
|
|
2949
|
+
@media (prefers-color-scheme: dark) {
|
|
2950
|
+
body { background-color: #111827 !important; }
|
|
2951
|
+
}
|
|
2952
|
+
</style>
|
|
2953
|
+
<!--<![endif]-->
|
|
2945
2954
|
${content}
|
|
2946
2955
|
</body>
|
|
2947
2956
|
</html>`;
|