2022-11-13 05:34:43 +00:00
|
|
|
import {
|
|
|
|
defineConfig,
|
|
|
|
presetAttributify,
|
|
|
|
presetIcons,
|
|
|
|
presetTypography,
|
|
|
|
presetUno,
|
|
|
|
presetWebFonts,
|
|
|
|
transformerDirectives,
|
|
|
|
transformerVariantGroup,
|
|
|
|
} from 'unocss'
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
shortcuts: [
|
2022-11-23 02:16:31 +00:00
|
|
|
{
|
|
|
|
'border-base': 'border-$c-border',
|
2022-11-27 04:48:23 +00:00
|
|
|
'border-bg-base': 'border-$c-bg-base',
|
2022-11-24 08:04:53 +00:00
|
|
|
|
|
|
|
// background
|
2022-11-23 02:16:31 +00:00
|
|
|
'bg-base': 'bg-$c-bg-base',
|
2022-11-23 04:20:59 +00:00
|
|
|
'bg-active': 'bg-$c-bg-active',
|
2022-11-24 03:42:03 +00:00
|
|
|
'bg-code': 'bg-$c-bg-code',
|
2022-11-24 08:04:53 +00:00
|
|
|
|
2022-11-27 03:54:46 +00:00
|
|
|
// text colors
|
2022-11-23 02:16:31 +00:00
|
|
|
'text-base': 'text-$c-text-base',
|
2022-11-23 07:46:34 +00:00
|
|
|
'text-secondary': 'text-$c-text-secondary',
|
2022-11-26 20:41:18 +00:00
|
|
|
'text-secondary-light': 'text-$c-text-secondary-light',
|
2022-11-24 08:04:53 +00:00
|
|
|
|
|
|
|
// buttons
|
2022-11-27 12:37:06 +00:00
|
|
|
'btn-base': 'cursor-pointer disabled:pointer-events-none disabled:bg-$c-bg-btn-disabled disabled:text-$c-text-btn-disabled',
|
|
|
|
'btn-solid': 'btn-base px-4 py-2 rounded text-$c-text-btn bg-$c-primary hover:bg-$c-primary-active',
|
2022-11-24 07:53:27 +00:00
|
|
|
'btn-outline': 'btn-base px-4 py-2 rounded text-$c-primary border border-$c-primary hover:bg-$c-primary hover:text-white',
|
|
|
|
'btn-text': 'btn-base px-4 py-2 text-$c-primary hover:text-$c-primary-active',
|
|
|
|
'btn-action-icon': 'btn-base hover:bg-active rounded-full h9 w9 flex items-center justify-center',
|
2022-11-24 08:04:53 +00:00
|
|
|
|
2022-11-27 03:54:46 +00:00
|
|
|
// link
|
|
|
|
'text-link-rounded': 'focus:outline-none focus:ring-(2 primary inset) hover:bg-active rounded md:rounded-full px2 mx--2',
|
|
|
|
|
2022-11-24 08:04:53 +00:00
|
|
|
// utils
|
|
|
|
'flex-center': 'items-center justify-center',
|
|
|
|
'flex-v-center': 'items-center',
|
|
|
|
'flex-h-center': 'justify-center',
|
2022-11-23 02:16:31 +00:00
|
|
|
},
|
2022-11-13 05:34:43 +00:00
|
|
|
],
|
|
|
|
presets: [
|
2022-11-14 02:56:48 +00:00
|
|
|
presetUno({
|
|
|
|
attributifyPseudo: true,
|
|
|
|
}),
|
2022-11-13 05:34:43 +00:00
|
|
|
presetAttributify(),
|
|
|
|
presetIcons({
|
|
|
|
scale: 1.2,
|
|
|
|
}),
|
|
|
|
presetTypography(),
|
|
|
|
presetWebFonts({
|
|
|
|
fonts: {
|
|
|
|
sans: 'DM Sans',
|
|
|
|
serif: 'DM Serif Display',
|
|
|
|
mono: 'DM Mono',
|
2022-11-24 02:38:14 +00:00
|
|
|
script: 'Homemade Apple',
|
2022-11-13 05:34:43 +00:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
transformers: [
|
|
|
|
transformerDirectives(),
|
|
|
|
transformerVariantGroup(),
|
|
|
|
],
|
2022-11-13 16:05:32 +00:00
|
|
|
theme: {
|
|
|
|
colors: {
|
2022-11-23 14:21:18 +00:00
|
|
|
primary: {
|
|
|
|
DEFAULT: 'var(--c-primary)',
|
|
|
|
active: 'var(--c-primary-active)',
|
|
|
|
},
|
2022-11-13 16:05:32 +00:00
|
|
|
},
|
|
|
|
},
|
2022-11-13 05:34:43 +00:00
|
|
|
})
|