diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-12-28 22:14:05 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-12-28 22:14:05 +0530 |
| commit | 1bd86a46dcf21a75656edd181f97035739fa238d (patch) | |
| tree | 3f6e1aafa95351cd3e5d8a3d77bf90630d57e852 /src/Chelleport/Config.hs | |
| parent | 9b5c8368daa97a5b58a378d9c4eab66ebb018cb0 (diff) | |
| download | chelleport-1bd86a46dcf21a75656edd181f97035739fa238d.tar.gz chelleport-1bd86a46dcf21a75656edd181f97035739fa238d.zip | |
Refactor text styles
Diffstat (limited to 'src/Chelleport/Config.hs')
| -rw-r--r-- | src/Chelleport/Config.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Chelleport/Config.hs b/src/Chelleport/Config.hs index b75abc0..398e3d6 100644 --- a/src/Chelleport/Config.hs +++ b/src/Chelleport/Config.hs @@ -4,6 +4,12 @@ import Chelleport.Types import Foreign.C (CFloat) import qualified SDL +searchingTextStyle :: TextStyle +searchingTextStyle = TextStyle {textColor = colorWhite, textSize = FontSM} + +hintLabelTextStyle :: TextStyle +hintLabelTextStyle = TextStyle {textColor = colorWhite, textSize = FontLG} + colorWhite :: Color colorWhite = SDL.V4 255 255 255 255 |
