nathanjohnson320 / elm-ui-components / ElmUIC.Theme

Basic theming functions for components


type Size
    = Small
    | Medium
    | Large

Used to standardize the size of your component


type ColorSetting
    = Primary
    | Secondary
    | Success
    | Warning
    | Danger

Basic color options for components


type alias Theme =
{ primary : Css.Color
, secondary : Css.Color
, success : Css.Color
, warning : Css.Color
, danger : Css.Color
, font : List String 
}

Colors used to map to each ColorSetting

defaultTheme : Theme

The default theme for elm-ui-components