Skip to content

v0.4.13

Compare
Choose a tag to compare
@josefaidt josefaidt released this 03 Oct 22:40
· 91 commits to main since this release
  • improves CSS Variable creation and management
  • base variables get precedence over theme variables when initializing CSS Variables
     const base = {
       colors: {
         blue: 'blue'
       }
     }
    
     const themes = {
       dark: {
         colors: {
           red: 'red'
         }
       }
     }
    
     // creates
     // --theme-colors-blue: blue;
     // --theme-colors-red: initial;