Text Palette Flavors

Text palettes are groups of atomic classes for <[any]> (any 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.

Text Palette: Default

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

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

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