Skip to content

Commit

Permalink
Switch Daisy UI themes back as the default (for now, until a more rob…
Browse files Browse the repository at this point in the history
…ust solution is available)
  • Loading branch information
techniq committed Jan 6, 2024
1 parent c7e87ec commit c4ccf42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions packages/svelte-ux/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
import { settings } from '$lib/components/settings';
import type { PageData } from './$types';
import { DateToken } from '$lib/utils/date';
// import { lightThemes, darkThemes } from '$lib/styles/daisy';
import { lightThemes, darkThemes } from '$lib/styles/skeleton';
import { lightThemes, darkThemes } from '$lib/styles/daisy';
// import { lightThemes, darkThemes } from '$lib/styles/skeleton';
export let data: PageData;
Expand Down
7 changes: 4 additions & 3 deletions packages/svelte-ux/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ const plugin = require('tailwindcss/plugin');
const colors = require('tailwindcss/colors');

const svelteUx = require('./src/lib/plugins/tailwind.cjs');

const { themes: daisyThemes } = require('./src/lib/styles/daisy.cjs');
const { themes: skeletonThemes } = require('./src/lib/styles/skeleton.cjs');
// const { themes: skeletonThemes } = require('./src/lib/styles/skeleton.cjs');

module.exports = {
content: ['./src/**/*.{html,svelte,md,ts,js}'],
ux: {
// themes: daisyThemes,
themes: skeletonThemes,
themes: daisyThemes,
// themes: skeletonThemes,
// themes: {
// light: {
// primary: colors['blue']['500'],
Expand Down

0 comments on commit c4ccf42

Please sign in to comment.