module Css.Colors exposing (navy, blue, aqua, teal, olive, green, lime, yellow, orange, red, maroon, fuchsia, purple, black, gray, silver)
{-| A nicer default set of colors than the ones CSS ships with. Color codes taken from [clrs.cc](http://clrs.cc).
import Css.Colors exposing (..)
stylesheet
[ button
[ backgroundColor blue ]
]
...compiles to:
button {
backgroundColor: #0074D9;
}
# Colors
@docs navy, blue, aqua, teal, olive, green, lime, yellow, orange, red, maroon, fuchsia, purple, black, gray, silver
-}
import Css exposing (Color, hex)
{-|
-}
navy : Color
navy =
hex "001F3F"
{-|
-}
blue : Color
blue =
hex "0074D9"
{-|
-}
aqua : Color
aqua =
hex "7FDBFF"
{-|
-}
teal : Color
teal =
hex "39CCCC"
{-|
-}
olive : Color
olive =
hex "3D9970"
{-|
-}
green : Color
green =
hex "2ECC40"
{-|
-}
lime : Color
lime =
hex "01FF70"
{-|
-}
yellow : Color
yellow =
hex "FFDC00"
{-|
-}
orange : Color
orange =
hex "FF851B"
{-|
-}
red : Color
red =
hex "FF4136"
{-|
-}
maroon : Color
maroon =
hex "85144b"
{-|
-}
fuchsia : Color
fuchsia =
hex "F012BE"
{-|
-}
purple : Color
purple =
hex "B10DC9"
{-|
-}
black : Color
black =
hex "111111"
{-|
-}
gray : Color
gray =
hex "AAAAAA"
{-|
-}
silver : Color
silver =
hex "dddddd"