Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial attempt to get styles going #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions elm-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"elm-lang/core": "5.1.1 <= v < 6.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0",
"elm-lang/http": "1.0.0 <= v < 2.0.0",
"rtfeldman/elm-css": "14.0.0 <= v < 15.0.0",
"tesk9/elm-html-a11y": "3.1.2 <= v < 4.0.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
Expand Down
10 changes: 10 additions & 0 deletions styles.elm
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module Styles exposing (..)

import Css exposing (..)


theme =
-- this is totally irrelevant code
{ primary = hex "55af6a"
, secondary = rgb 250 240 230
}