11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
import { defineConfig } from "unocss";
|
|
|
|
export default defineConfig({
|
|
// ...UnoCSS options
|
|
theme: {
|
|
colors: {
|
|
primary: "#ec66ab",
|
|
},
|
|
},
|
|
});
|