import { defineConfig, presetUno, presetAttributify, presetIcons } from 'unocss'; export default defineConfig({ presets: [ presetUno(), presetAttributify(), presetIcons({ extraProperties: { display: 'inline-block', 'vertical-align': 'middle', }, }), ], rules: [['text-flow', { 'text-overflow': 'ellipsis', 'white-space': 'nowrap', overflow: 'hidden' }]], shortcuts: { 'switch-animation': 'transition duration-300', 'bg-base': 'bg-[#fff] dark:bg-[#20202a] switch-animation', 'card-base': 'bg-[#ffffff] dark:bg-[#10101a] switch-animation', 'text-base': 'text-[rgba(0,0,0,0.95)] dark:text-[#f0f0f0] switch-animation', 'switch-label-base': 'bg-gray-200 dark:bg-gray-800 switch-animation', 'switch-span-base': 'bg-white dark:bg-gray-300 switch-animation', 'text-brand': 'text-[#C43737]', 'text-overflow': 'overflow-hidden whitespace-nowrap truncate', 'border-brand': 'border-[#C43737]', 'bg-brand': 'bg-[#C43737]', }, });