mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-07-05 02:45:01 -05:00
feat: improved elm template
This commit is contained in:
parent
8545d7c1e8
commit
6b2a601776
22 changed files with 2139 additions and 0 deletions
24
templates/elm/frontend/src/Config/Style/Glow.elm
Executable file
24
templates/elm/frontend/src/Config/Style/Glow.elm
Executable file
|
@ -0,0 +1,24 @@
|
|||
module Config.Style.Glow exposing
|
||||
( glowDeepDarkGrey
|
||||
, glowDeepDarkGreyNavbar
|
||||
, glowDeepDarkOrange
|
||||
)
|
||||
|
||||
import Config.Style.Colour.Helpers exposing (ThemeColor(..), colourTheme, getThemeColor)
|
||||
import Element exposing (Attr)
|
||||
import Element.Border as D exposing (glow)
|
||||
|
||||
|
||||
glowDeepDarkGrey : Attr decorative msg
|
||||
glowDeepDarkGrey =
|
||||
D.glow (getThemeColor Shadow) 4
|
||||
|
||||
|
||||
glowDeepDarkOrange : Attr decorative msg
|
||||
glowDeepDarkOrange =
|
||||
D.glow (getThemeColor TextDeepDarkOrange) 4
|
||||
|
||||
|
||||
glowDeepDarkGreyNavbar : Attr decorative msg
|
||||
glowDeepDarkGreyNavbar =
|
||||
D.glow (getThemeColor Shadow) 10
|
Loading…
Add table
Add a link
Reference in a new issue