import { defineConfig } from 'windicss/helpers' import colors from 'windicss/colors' import typography from 'windicss/plugin/typography' export default defineConfig({ darkMode: 'class', // https://windicss.org/posts/v30.html#attributify-mode attributify: true, plugins: [ typography(), ], theme: { extend: { typography: { DEFAULT: { css: { maxWidth: '65ch', color: 'inherit', a: { 'color': 'inherit', 'opacity': 0.75, 'fontWeight': '500', 'textDecoration': 'underline', '&:hover': { opacity: 1, color: colors.teal[600], }, }, b: { color: 'inherit' }, strong: { color: 'inherit' }, em: { color: 'inherit' }, h1: { color: 'inherit' }, h2: { color: 'inherit' }, h3: { color: 'inherit' }, h4: { color: 'inherit' }, code: { color: 'inherit' }, }, }, }, }, }, shortcuts: { 'cont-box': { 'border-color': 'rgb(128 128 128 / 41%)', 'border-radius': '5px', 'background-color': 'rgb(55 65 81 / 12%)', // 'background-color': 'rgb(8 8 8 / 25%)', '@apply': 'border border-opacity-10 p-2', }, 'dark cont-box': { 'background-color': 'rgb(55 65 81 / 38%)' }, 'box': { 'border-color': 'lightslategray', '@apply': 'py-5 px-5 max-w-sm mx-auto border border-opacity-10 ' + 'bg-white dark:bg-gray-800 dark:bg-opacity-90 ' + 'rounded-xl shadow-m space-y-2 ' + 'sm:py-6 sm:items-center sm:space-y-0 sm:space-x-6 ', }, 'btn': { '@apply': 'px-4 py-1 text-sm text-purple-600 font-semibold ' + 'rounded-full border border-purple-200 dark:border-purple-800 ' + 'hover:text-white hover:bg-purple-600 hover:border-transparent ' + 'focus:outline-none focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 ', }, 'cloud': { 'background-image': 'url("data:image/svg+xml;utf8, cloud_blue")', }, }, })