List Palette Flavors

List palettes are groups of atomic classes for <ul> <ol> (ul and ol HTML tag) application elements. Palettes consist of property/value pairs where the property is something specific to your color, app, brand, or industry, while the value defines that property's characteristics with CSS classes.

List Palette: Default

Contributor:@oberocks
            
                // ./src/app.vv.ts

                import { VvConfig } from '@obewds/vueventus'
                import type { ConfigVv } from '@obewds/vueventus'

                let appVv: ConfigVv = VvConfig
            
        
                    
                        appVv.lists.palettes.default = {
                            default   : "",
                            error     : "marker:text-rose-500 dark:marker:text-rose-300",
                            primary   : "marker:text-blue-500 dark:marker:text-blue-300",
                            secondary : "marker:text-violet-500 dark:marker:text-violet-300",
                            success   : "marker:text-green-600 dark:marker:text-green-300",
                        }
                    
                
            
                export default appVv