2024-11-11 21:57:27 -06:00
|
|
|
module Config.Colour exposing (..)
|
|
|
|
|
|
|
|
import Element exposing (..)
|
|
|
|
import Element.Background as B
|
|
|
|
import Element.Font as F
|
|
|
|
import Html.Attributes as H exposing (style)
|
|
|
|
|
|
|
|
|
|
|
|
type alias Theme =
|
2024-11-28 00:58:24 -06:00
|
|
|
{ textLightGrey : Color
|
|
|
|
, textDarkGrey : Color
|
|
|
|
, textLightOrange : Color
|
|
|
|
, textDarkOrange : Color
|
2024-12-08 02:18:36 -06:00
|
|
|
, textDeepDarkOrange : Color
|
2024-11-28 00:58:24 -06:00
|
|
|
, backgroundLightGrey : Color
|
|
|
|
, backgroundDarkGrey : Color
|
2024-12-09 03:06:20 -06:00
|
|
|
, backgroundDeepDarkGrey : Color
|
2024-11-25 18:50:12 -06:00
|
|
|
, barGreen : Color
|
|
|
|
, barRed : Color
|
2024-12-09 03:06:20 -06:00
|
|
|
, debugColour : Color
|
2024-11-26 04:32:11 -06:00
|
|
|
, transparent : Color
|
2024-11-11 21:57:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
colourTheme : Theme
|
|
|
|
colourTheme =
|
2024-11-28 00:58:24 -06:00
|
|
|
{ textLightGrey = rgb255 212 212 212
|
|
|
|
, textDarkGrey = rgb255 126 126 126
|
|
|
|
, textLightOrange = rgb255 204 102 0
|
|
|
|
, textDarkOrange = rgb255 120 60 0
|
2024-12-08 02:18:36 -06:00
|
|
|
, textDeepDarkOrange = rgb255 60 30 0
|
2024-11-28 00:58:24 -06:00
|
|
|
, backgroundLightGrey = rgb255 40 40 40
|
|
|
|
, backgroundDarkGrey = rgb255 30 30 30
|
2024-12-09 03:06:20 -06:00
|
|
|
, backgroundDeepDarkGrey = rgb255 20 20 20
|
2024-11-25 18:50:12 -06:00
|
|
|
, barGreen = rgb255 0 102 0
|
|
|
|
, barRed = rgb255 102 0 0
|
2024-12-09 03:06:20 -06:00
|
|
|
, debugColour = rgb255 227 28 121
|
2024-11-26 04:32:11 -06:00
|
|
|
, transparent = rgba 1 1 1 0
|
2024-11-11 21:57:27 -06:00
|
|
|
}
|