remove Color from readme

This commit is contained in:
Matthew Griffith 2018-08-28 21:30:42 -04:00
parent 25850370dc
commit b52d0ca0d3

View File

@ -15,8 +15,7 @@ This means:
```elm
import Color exposing (blue, darkBlue)
import Element exposing (Element, el, text, row, alignRight)
import Element exposing (Element, el, text, row, alignRight, rgb)
import Element.Background as Background
import Element.Border as Border
@ -37,8 +36,8 @@ myRowOfStuff =
myElement : Element msg
myElement =
el
[ Background.color blue
, Border.color darkBlue
[ Background.color (rgb 0.2 0.3 0.3)
, Border.color (rgb 0.2 0.4 0.3)
]
(text "You've made a stylish element!")
```