mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
32 lines
426 B
TypeScript
32 lines
426 B
TypeScript
import type { UnocssNuxtOptions } from '@unocss/nuxt'
|
|
|
|
export interface UiColorsOptions {
|
|
/**
|
|
* @default 'indigo'
|
|
*/
|
|
primary?: string
|
|
|
|
/**
|
|
* @default 'zinc'
|
|
*/
|
|
gray?: string
|
|
}
|
|
|
|
export interface UiOptions {
|
|
/**
|
|
* @default 'tailwindui'
|
|
*/
|
|
preset?: string | object
|
|
|
|
/**
|
|
* @default 'u'
|
|
*/
|
|
prefix?: string
|
|
|
|
colors?: UiColorsOptions
|
|
|
|
unocss?: UnocssNuxtOptions
|
|
}
|
|
|
|
export * from './toast'
|