UnoCSS comes up with a Playground and an Interactive Documentation.
This tutorial will guide you how to set it up and take advantage of them.
There is a playground that has already been set up for you to play with.
You can access it here.
To set up the interactive documentation, follow these steps:
import { presetVinicunca } from '@vinicunca/unocss-preset';
import { defineConfig } from 'unocss';
export default defineConfig({
presets: [
presetVinicunca({
fillMode: 'both', // or whatever options you want
}),
],
});
OK