mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-07-05 02:45:01 -05:00
25 lines
598 B
Elm
25 lines
598 B
Elm
![]() |
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
|