Skip to content

Commit 643fa5d

Browse files
committed
docs
1 parent e171a6e commit 643fa5d

File tree

5 files changed

+24
-1
lines changed

5 files changed

+24
-1
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "daisyui-monorepo",
33
"private": true,
4+
"packageManager": "[email protected]",
45
"workspaces": [
56
"packages/*"
67
],

packages/docs/src/components/Footer.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<div data-sveltekit-preload-data>
1010
<div class="bg-base-100 text-base-content">
11-
<footer class="footer md:footer-horizontal mx-auto max-w-6xl px-4 py-20">
11+
<footer class="footer md:footer-horizontal mx-auto max-w-7xl px-4 py-20 text-xs">
1212
<div>
1313
<div class="flex items-center gap-2">
1414
<svg width="32" height="32" viewBox="0 0 415 415" xmlns="http://www.w3.org/2000/svg">

packages/docs/src/routes/(routes)/docs/install/rails/+page.md

+6
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Run this code to download latest version of daisyUI as a single js file
7070

7171
```sh:Terminal
7272
curl -sLo app/assets/tailwind/daisyui.js https://github.com/saadeghi/daisyui/releases/latest/download/daisyui.js
73+
curl -sLo app/assets/tailwind/daisyui-theme.js https://github.com/saadeghi/daisyui/releases/latest/download/daisyui-theme.js
7374
```
7475

7576
Put Tailwind CSS and daisyUI in your CSS file (and remove old styles)
@@ -82,6 +83,11 @@ Put Tailwind CSS and daisyUI in your CSS file (and remove old styles)
8283
@source "../../../app/views/**/*";
8384

8485
@plugin "./daisyui.js";
86+
87+
/* Optional for custom themes – Docs: https://daisyui.com/docs/themes/#how-to-add-a-new-custom-theme */
88+
@plugin "./daisyui-theme.js"{
89+
/* custom theme here */
90+
}
8591
```
8692

8793
</div>

packages/docs/src/routes/(routes)/docs/install/standalone/+page.md

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Run this code to download latest version of daisyUI as a single js file and put
1717

1818
```sh:Terminal
1919
curl -sLO https://github.com/saadeghi/daisyui/releases/latest/download/daisyui.js
20+
curl -sLO https://github.com/saadeghi/daisyui/releases/latest/download/daisyui-theme.js
2021
```
2122

2223
### 3. Add Tailwind CSS and daisyUI
@@ -28,6 +29,11 @@ Address your HTML and other markup files in the `source` function.
2829
@import "tailwindcss" source(none);
2930
@source "./public/*.{html,php,erb}";
3031
@plugin "./daisyui.js";
32+
33+
/* Optional for custom themes – Docs: https://daisyui.com/docs/themes/#how-to-add-a-new-custom-theme */
34+
@plugin "./daisyui-theme.js"{
35+
/* custom theme here */
36+
}
3137
```
3238

3339
### 4. Build CSS

packages/docs/src/routes/(routes)/docs/themes/+page.md

+10
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,16 @@ To add a new theme, use `@plugin "daisyui/theme" {}` in your CSS file, with the
148148
}
149149
```
150150

151+
If you're using CDN and you want to use a custom theme, use it like this:
152+
153+
```css:app.css
154+
:root:has(input.theme-controller[value=mytheme]:checked),[data-theme="mytheme"] { /* mytheme is the name of the custom theme */
155+
color-scheme: light;
156+
--color-base-100: oklch(98% 0.02 240);
157+
/* ...rest of CSS variables like above example */
158+
}
159+
```
160+
151161
## <Translate text="How to customize an existing theme?" />
152162

153163
To customize a built-in theme, you can use the same structure as adding a new theme, but with the same name as the built-in theme. For example, to customize the `light` theme:

0 commit comments

Comments
 (0)