import { defineConfig, presetUno, presetAttributify } from 'unocss' export default defineConfig({ presets: [ presetUno(), presetAttributify(), ], theme: { colors: { coffee: { 50: '#fdf6ec', 100: '#f9e8cc', 200: '#f3cea0', 300: '#ecac6a', 400: '#e5843c', 500: '#df661f', 600: '#c85018', 700: '#a63d17', 800: '#87321a', 900: '#6f2b19', 950: '#3d130b', }, }, }, })