@getdashfy/themes 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/CHANGELOG.md +9 -0
- package/LICENSE +661 -0
- package/README.md +45 -0
- package/dist/index.cjs +959 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +318 -0
- package/dist/index.d.ts +318 -0
- package/dist/index.js +941 -0
- package/dist/index.js.map +1 -0
- package/package.json +70 -0
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# `@getdashfy/themes`
|
|
2
|
+
|
|
3
|
+
> Customizable theme system with pre-built themes for Dashfy.
|
|
4
|
+
|
|
5
|
+
## Introduction
|
|
6
|
+
|
|
7
|
+
`@getdashfy/themes` provides the theming layer for Dashfy, with a set of pre-built themes and helpers for applying, switching, and creating custom themes.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
Install with your favorite package manager:
|
|
12
|
+
|
|
13
|
+
#### `npm`
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @getdashfy/themes
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
#### `pnpm`
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pnpm add @getdashfy/themes
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
#### `yarn`
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
yarn add @getdashfy/themes
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
#### `bun`
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
bun add @getdashfy/themes
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Community
|
|
38
|
+
|
|
39
|
+
Join the community on [Dashfy's Discord server](https://dashfy.dev/discord) to discuss the project, ask questions, or get help.
|
|
40
|
+
|
|
41
|
+
Join the conversation on X (Twitter) and follow [@dashfydev](https://x.com/dashfydev) for updates and announcements.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
This project is licensed under the AGPL-3.0 License - see the [LICENSE](./LICENSE) file for details.
|