12345678910111213141516171819202122232425262728293031323334353637 |
- /* just override what you need */
- @forward 'element-plus/theme-chalk/src/common/var.scss' with (
- $colors: (
- 'primary': (
- 'base': #7a6dff,
- ),
- 'success': (
- 'base': #0bbd87,
- )
- ),
- $button:(
- 'font-weight':500
- ),
- $button-font-size:(
- 'default':13px
- ),
- $button-border-radius:(
- 'default':8px
- ),
- $menu:(
- 'base-level-padding':5px,
- 'bg-color':transparent,
- 'item-height': 40px,
- 'hover-bg-color': var(--el-color-primary-light-8),
- ),
- $text-color:(
- 'primary': #354052,
- 'regular': #3c485d,
- 'secondary': #676f83,
- 'placeholder': #a8abb2,
- 'disabled': #c0c4cc,
- )
- );
- // If you just import on demand, you can ignore the following content.
- // 如果你想导入所有样式:
- @use "element-plus/theme-chalk/src/index.scss" as *;
|