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