WARNING: This will install an early preview build of Skeleton v3. Please be aware that some features may be missing, incomplete, or non-functional at this time. Please report all bugs and issues on GitHub.
1
Create a Project
Start by creating a new project using create-svelte
:
npm create svelte@latest my-skeleton-appcd my-skeleton-appnpm install
2
Install Skeleton
Install the Skeleton core and Skeleton Svelte packages.
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-svelte@next
3
Install Tailwind
Install Tailwind using Svelte-Add to automate the process.
npx @svelte-add/tailwindcss@latest --typography falsenpm install
4
Configure Tailwind
Open tailwind.config.js
, then implement the highlighted snippets below.
import { join } from 'path';import { skeleton } from '@skeletonlabs/skeleton';import * as themes from "@skeletonlabs/skeleton/themes";
/** @type {import('tailwindcss').Config} \*/export default { content: [ './src/**/*.{html,js,svelte,ts}', join(require.resolve('@skeletonlabs/skeleton-svelte'), '../**/*.{html,js,svelte,ts}') ], theme: { extend: {}, }, plugins: [ skeleton({ themes: [ themes.cerberus, themes.rose ] }) ]}
5
Set Active Theme
Open app.html
, then set the data-theme
attribute on the body to define the active theme.
<body data-theme="cerberus">...</body>
Ready
You’re now ready to begin using Skeleton.