@acmekit/docs-tailwind 2.13.41
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.d.mts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +839 -0
- package/dist/index.mjs +806 -0
- package/package.json +36 -0
- package/src/theme.css +39 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Config } from 'tailwindcss';
|
|
2
|
+
|
|
3
|
+
declare const docsPreset: Config;
|
|
4
|
+
|
|
5
|
+
declare const light: Record<string, string>;
|
|
6
|
+
declare const dark: Record<string, string>;
|
|
7
|
+
declare const themePresets: {
|
|
8
|
+
":root": Record<string, string>;
|
|
9
|
+
".dark": Record<string, string>;
|
|
10
|
+
'[data-theme="dark"]': Record<string, string>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { dark, docsPreset as default, docsPreset, light, themePresets };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Config } from 'tailwindcss';
|
|
2
|
+
|
|
3
|
+
declare const docsPreset: Config;
|
|
4
|
+
|
|
5
|
+
declare const light: Record<string, string>;
|
|
6
|
+
declare const dark: Record<string, string>;
|
|
7
|
+
declare const themePresets: {
|
|
8
|
+
":root": Record<string, string>;
|
|
9
|
+
".dark": Record<string, string>;
|
|
10
|
+
'[data-theme="dark"]': Record<string, string>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { dark, docsPreset as default, docsPreset, light, themePresets };
|