mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: refactored and added some stuff
This commit is contained in:
parent
7b8faede8d
commit
9f1a7fe872
17 changed files with 798 additions and 707 deletions
|
@ -20,6 +20,17 @@ type alias Theme =
|
|||
}
|
||||
|
||||
|
||||
type alias SyntaxColors =
|
||||
{ punctuation : Color
|
||||
, key : Color
|
||||
, string : Color
|
||||
, keyword : Color
|
||||
, operator : Color
|
||||
, background : Color
|
||||
, text : Color
|
||||
}
|
||||
|
||||
|
||||
colourTheme : Theme
|
||||
colourTheme =
|
||||
{ textLightGrey = rgb255 212 212 212
|
||||
|
@ -36,3 +47,15 @@ colourTheme =
|
|||
, debugColour = rgb255 227 28 121
|
||||
, transparent = rgba 1 1 1 0
|
||||
}
|
||||
|
||||
|
||||
syntaxTheme : SyntaxColors
|
||||
syntaxTheme =
|
||||
{ punctuation = rgb255 202 158 230
|
||||
, key = rgb255 138 173 244
|
||||
, string = rgb255 166 218 149
|
||||
, keyword = rgb255 245 169 127
|
||||
, operator = rgb255 178 185 194
|
||||
, background = rgb255 36 39 58
|
||||
, text = rgb255 202 211 245
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue