feat: lots of work

This commit is contained in:
Nick 2024-12-08 02:18:36 -06:00
parent 4a19d6eb06
commit 848038b62b
158 changed files with 1361 additions and 685 deletions

View file

@ -2,7 +2,7 @@ module Config.CardFormat exposing (..)
import Config.Colour exposing (..)
import Config.Format exposing (..)
import Cuckery.Types exposing (..)
import Debate.Cuckery.Types exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Element.Background as B exposing (..)

View file

@ -11,6 +11,7 @@ type alias Theme =
, textDarkGrey : Color
, textLightOrange : Color
, textDarkOrange : Color
, textDeepDarkOrange : Color
, backgroundLightGrey : Color
, debugColour : Color
, backgroundDarkGrey : Color
@ -26,6 +27,7 @@ colourTheme =
, textDarkGrey = rgb255 126 126 126
, textLightOrange = rgb255 204 102 0
, textDarkOrange = rgb255 120 60 0
, textDeepDarkOrange = rgb255 60 30 0
, backgroundLightGrey = rgb255 40 40 40
, debugColour = rgb255 227 28 121
, backgroundDarkGrey = rgb255 30 30 30

View file

@ -4,6 +4,7 @@ module Config.Identity exposing (..)
type alias PageInput =
{ pageHome : String
, pageContact : String
, pageArguments : String
, pageDebate : String
, pageCucks : String
, pageGibberish : String
@ -17,10 +18,11 @@ type alias PageInput =
pageNames : PageInput
pageNames =
{ pageHome = "Home"
{ pageHome = "home"
, pageServices = "services"
, pageCucks = "cuckList"
, pageDebate = "arguments"
, pageArguments = "arguments"
, pageDebate = "debate"
, pageGibberish = "gibberish"
, pageHyperBlog = "hyperBlog"
, pageNutriDex = "nutriDex"
@ -28,3 +30,7 @@ pageNames =
, pageContact = "contact"
, pageDonate = "donate"
}
url =
"http://localhost:1234/"

View file

@ -3,7 +3,7 @@ module Config.StrengthBar exposing (..)
import Config.Colour exposing (..)
import Config.Format exposing (..)
import Config.ToolTip exposing (..)
import Cuckery.Types exposing (..)
import Debate.Cuckery.Types exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Element.Background as B exposing (..)