@gjfleo/theme 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 ADDED
@@ -0,0 +1,15 @@
1
+ # naive-ui-theme
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run:
10
+
11
+ ```bash
12
+ bun run index.ts
13
+ ```
14
+
15
+ This project was created using `bun init` in bun v1.1.37. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
@@ -0,0 +1,26 @@
1
+ // Generated by dts-bundle-generator v9.5.1
2
+
3
+ export declare const themeVariables: {
4
+ light: string;
5
+ dark: string;
6
+ primary: string;
7
+ primaryHover: string;
8
+ primaryPressed: string;
9
+ secondary: string;
10
+ secondaryHover: string;
11
+ secondaryPressed: string;
12
+ info: string;
13
+ infoHover: string;
14
+ infoPressed: string;
15
+ success: string;
16
+ successHover: string;
17
+ successPressed: string;
18
+ warning: string;
19
+ warningHover: string;
20
+ warningPressed: string;
21
+ danger: string;
22
+ dangerHover: string;
23
+ dangerPressed: string;
24
+ };
25
+
26
+ export {};