epicmaxco / vuestic-ui

Vuestic UI is an open-source Vue 3 component library designed for rapid development, easy maintenance, and high accessibility. Maintained by Epicmax (@epicmaxco).
https://vuestic.dev
MIT License
3.52k stars 340 forks source link

fix(VaCard): Ability to customize `outlined border` colour #4313

Closed Us3r-gitHub closed 5 months ago

Us3r-gitHub commented 5 months ago

closes https://github.com/epicmaxco/vuestic-ui/issues/4308

Description

  1. In Va Card Component CSS Variable used for Card Outlined Border has been updated from va-background-element to va-background-border
  2. Apply color schemes variable to define --va-block-color

Markup:

```TS // Sample Colors Configuration createVuesticEssential({ config: { colors: { presets: { dark: { backgroundBorder: "ffffff", }, }, }, }, }); ```

Types of changes