Skip to content

Custom Theme

FormMaking V3 sets the theme color through CSS variables, inheriting the theme from Element Plus. You can directly change the Element Plus theme color to configure the theme.

css
:root {
  --el-color-primary: green;
}

You can also customize individual styles individually.

css
:root {
  --fm-color-primary: green;
  --fm-border-color: green;
}