We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f990a1 + 7f87ec6 commit 54cdf25Copy full SHA for 54cdf25
.changeset/forty-bulldogs-know.md
@@ -0,0 +1,5 @@
1
+---
2
+"@chakra-ui/vue-theme": minor
3
4
+
5
+add cssVarPrefix with charka as default to theme config
packages/theme/src/index.ts
@@ -7,6 +7,7 @@ export type ColorMode = "light" | "dark"
7
export interface ColorModeOptions {
8
initialColorMode?: ColorMode
9
useSystemColorMode?: boolean
10
+ cssVarPrefix?: string
11
}
12
13
/**
@@ -15,6 +16,7 @@ export interface ColorModeOptions {
15
16
const config: ColorModeOptions = {
17
useSystemColorMode: false,
18
initialColorMode: "light",
19
+ cssVarPrefix: "chakra",
20
21
22
export const theme = {
0 commit comments