0.2.0 • Published 2 years ago
@cmi-dair/skeleton-themes v0.2.0
@cmi-dair/skeleton-themes
Child Mind Institute's Skeleton themes.
Getting Started
To install this theme, run the following command:
npm install @cmi-dair/skeleton-themesIn your tailwind.config.ts file, add the custom theme as follows:
import { cmiLight } from '@cmi-dair/skeleton-themes'
export default {
...,
plugins: [
skeleton({
themes: {
custom: [cmiLight]
}
})
]
} satisfies Config;Next, in your root +layout.svelte add the following:
<script>
import '@cmi-dair/skeleton-themes/cmi.postcss';
</script>