ToolipsDefaults is now a part of ToolipsServables in Toolips 0.3. Toolips ToolipsServables
- ( This project can still be used with 
Toolips0.2. ) 
ToolipsDefaults contains default styles, stylesheets, Components, functions, and tools which can be easily integrated with your toolips project. This can be a quick way to start and organize a project with some basics. This includes new input types, new prebuilt Components, and some other things...
- The 
ColorSchemestructure provides an easy format for changing colors of asheet - The 
sheetmethod can be provided aColorSchemeand creates - You may use 
style!(::Component{:sheet}, ::String, Pair{String, String} ...)to style children of the sheet more quickly. 
using Toolips
using ToolipsDefaults
home = route("/") do c::Connection
  cs = ColorScheme(foreground = "black", background = "orange")
  mysheet = ToolipsDefaults.sheet("My Styles")
  style!(mysheet, "div", "background-color" => "blue")
end- textdiv
 - tabbedview
 - cursor
 - textbox
 - numberinput
 - rangeslider
 - dropdown
 - audio
 - video
 - progress
 - colorinput
 
- Extra 
write!binding that allows for writing of most Julia types. - SwipeMap
 
swipe = route("/swipe") do c::Connection
    sm = ToolipsDefaults.SwipeMap()
    swipe_identifier = h("swipeid", 1, text = "none", align = "center")
    style!(swipe_identifier, "margin-top" => 40percent, "font-size" => 25pt)
    bod = body("mybody")
    bind!(c, sm, "right") do cm::ComponentModifier
        set_text!(cm, swipe_identifier, "right")
        style!(cm, bod, "background-color" => "black")
    end
    bind!(c, sm, "left") do cm::ComponentModifier
        set_text!(cm, swipe_identifier, "left")
        style!(cm, bod, "background-color" => "orange")
    end
    bind!(c, sm, "up") do cm::ComponentModifier
        set_text!(cm, swipe_identifier, "up")
        style!(cm, bod, "background-color" => "blue")
    end
    bind!(c, sm, "down") do cm::ComponentModifier
        set_text!(cm, swipe_identifier, "down")
        style!(cm, bod, "background-color" => "pink")
    end
    bind!(c, sm)
    push!(bod, swipe_identifier)
    style!(bod, "transition" => 5seconds)
    write!(c, bod)
end